@iotexproject/kit 0.0.49 → 0.0.50

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +7 -4
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -6755,12 +6755,9 @@ declare class LSTStrategyEntity {
6755
6755
  transferOwnership: (newOwner: `0x${string}`) => Promise<any>;
6756
6756
  }
6757
6757
  declare class MSP {
6758
- mockBucket(args: {
6759
- amount: string;
6760
- }): Promise<{
6758
+ mockBucket(): Promise<{
6761
6759
  data: any;
6762
6760
  address: string;
6763
- value: string;
6764
6761
  }>;
6765
6762
  mockLST(args: {
6766
6763
  lstTokenAddress: string;
@@ -7023,6 +7020,12 @@ declare class Staking {
7023
7020
  getNFTV2BucketByIndex(args: {
7024
7021
  token_id: string;
7025
7022
  }): Promise<any>;
7023
+ createNativeBucket(args: {
7024
+ candName: string;
7025
+ amount: string;
7026
+ duration: string;
7027
+ autoStake: boolean;
7028
+ }): Promise<any>;
7026
7029
  }
7027
7030
  declare class utils {
7028
7031
  erc20(args: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.0.49",
5
+ "version": "v0.0.50",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {