@iotexproject/kit 0.0.58 → 0.0.60
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 +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7060,6 +7060,17 @@ declare class Staking {
|
|
|
7060
7060
|
duration: string;
|
|
7061
7061
|
delegate: `0x${string}`;
|
|
7062
7062
|
}): Promise<any>;
|
|
7063
|
+
NFTBucketChangeDelegate(args: {
|
|
7064
|
+
bucketIndex: string;
|
|
7065
|
+
delegate: `0x${string}`;
|
|
7066
|
+
version: "v1" | "v2";
|
|
7067
|
+
}): Promise<any>;
|
|
7068
|
+
NFTBucketRestake(args: {
|
|
7069
|
+
bucketIndex: string;
|
|
7070
|
+
duration: string;
|
|
7071
|
+
version: "v1" | "v2";
|
|
7072
|
+
newAmount?: string;
|
|
7073
|
+
}): Promise<any>;
|
|
7063
7074
|
}
|
|
7064
7075
|
declare class utils {
|
|
7065
7076
|
erc20(args: {
|