@iotexproject/kit 0.1.27 → 0.1.28

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 +9 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -6734,6 +6734,15 @@ declare class Mimo {
6734
6734
  chainId: string;
6735
6735
  contractAddress: `0x${string}`;
6736
6736
  }): Promise<unknown>;
6737
+ depositWETH({ chainId, contractAddress }: {
6738
+ chainId: string;
6739
+ contractAddress: `0x${string}`;
6740
+ }): Promise<unknown>;
6741
+ withdrawWETH({ amount, chainId, contractAddress }: {
6742
+ amount: string;
6743
+ chainId: string;
6744
+ contractAddress: `0x${string}`;
6745
+ }): Promise<unknown>;
6737
6746
  }
6738
6747
  declare class MockBucketEntity {
6739
6748
  address: `0x${string}`;
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.1.27",
5
+ "version": "v0.1.28",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {