@iotexproject/kit 0.1.23 → 0.1.24
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 +7 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8517,7 +8517,13 @@ declare class Staking {
|
|
|
8517
8517
|
}>;
|
|
8518
8518
|
delegate_detail(args: {
|
|
8519
8519
|
onChainName: string;
|
|
8520
|
-
}): Promise<
|
|
8520
|
+
}): Promise<{
|
|
8521
|
+
data: any;
|
|
8522
|
+
error?: undefined;
|
|
8523
|
+
} | {
|
|
8524
|
+
error: unknown;
|
|
8525
|
+
data?: undefined;
|
|
8526
|
+
}>;
|
|
8521
8527
|
}
|
|
8522
8528
|
declare class utils {
|
|
8523
8529
|
erc20(args: {
|