@iotexproject/kit 0.0.64 → 0.0.66
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 +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7000,6 +7000,7 @@ export interface Bucket {
|
|
|
7000
7000
|
createBlockHeight: bigint;
|
|
7001
7001
|
stakeStartBlockHeight: bigint;
|
|
7002
7002
|
unstakeStartBlockHeight: bigint;
|
|
7003
|
+
isSelfStakingBucket: boolean;
|
|
7003
7004
|
}
|
|
7004
7005
|
declare class Staking {
|
|
7005
7006
|
compositeBucketsByVoter(args: {
|
|
@@ -7083,6 +7084,11 @@ declare class Staking {
|
|
|
7083
7084
|
bucketIndex: string;
|
|
7084
7085
|
version: "v1" | "v2";
|
|
7085
7086
|
}): Promise<any>;
|
|
7087
|
+
NFTBucketWithdrawStake(args: {
|
|
7088
|
+
bucketIndex: string;
|
|
7089
|
+
receiverAddress: `0x${string}`;
|
|
7090
|
+
version: "v1" | "v2";
|
|
7091
|
+
}): Promise<any>;
|
|
7086
7092
|
}
|
|
7087
7093
|
declare class utils {
|
|
7088
7094
|
erc20(args: {
|