@iotexproject/kit 0.1.11 → 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8622,7 +8622,7 @@ declare class Ioid {
|
|
|
8622
8622
|
}>;
|
|
8623
8623
|
did_hex(args: {
|
|
8624
8624
|
did: `0x${string}`;
|
|
8625
|
-
|
|
8625
|
+
projectName: string;
|
|
8626
8626
|
}, ctx?: ConfigContext): Promise<{
|
|
8627
8627
|
hex: string;
|
|
8628
8628
|
error?: undefined;
|
|
@@ -8630,6 +8630,15 @@ declare class Ioid {
|
|
|
8630
8630
|
error: unknown;
|
|
8631
8631
|
hex?: undefined;
|
|
8632
8632
|
}>;
|
|
8633
|
+
devices_registered(args: {
|
|
8634
|
+
dids: string;
|
|
8635
|
+
}, ctx?: ConfigContext): Promise<{
|
|
8636
|
+
devices: any[];
|
|
8637
|
+
error?: undefined;
|
|
8638
|
+
} | {
|
|
8639
|
+
error: unknown;
|
|
8640
|
+
devices?: undefined;
|
|
8641
|
+
}>;
|
|
8633
8642
|
}
|
|
8634
8643
|
declare const modules$3: {
|
|
8635
8644
|
ioid: Ioid;
|