@iotexproject/kit 0.1.58 → 0.1.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -9
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8821,6 +8821,7 @@ declare class MimoV3MiningManager {
8821
8821
  tickLower: number;
8822
8822
  tickUpper: number;
8823
8823
  tokenId: bigint;
8824
+ tokenURI: any;
8824
8825
  }[] | undefined>;
8825
8826
  }
8826
8827
  declare class LiquidityMiningV3 {
@@ -8866,6 +8867,7 @@ declare class LiquidityMiningV3 {
8866
8867
  tickLower: number;
8867
8868
  tickUpper: number;
8868
8869
  tokenId: bigint;
8870
+ tokenURI: any;
8869
8871
  }[] | undefined;
8870
8872
  RewardToken: import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
8871
8873
  symbol: true;
@@ -8885,16 +8887,15 @@ declare class LiquidityMiningV3 {
8885
8887
  type: string;
8886
8888
  }[]>;
8887
8889
  harvest(args: {
8888
- rewardToken: `0x${string}`;
8890
+ key: MimoV3MiningPoolKey;
8891
+ v3PositionId: number;
8889
8892
  account: `0x${string}`;
8890
- amount: string;
8891
- }, ctx?: ConfigContext): Promise<import("@dappworks/kit/aiem").QueryReturnType<MimoV3MiningManager, {
8892
- claimReward: [
8893
- `0x${string}`,
8894
- `0x${string}`,
8895
- bigint
8896
- ];
8897
- }>>;
8893
+ }, ctx?: ConfigContext): Promise<{
8894
+ data: any;
8895
+ address: string;
8896
+ chainId: string;
8897
+ type: string;
8898
+ }>;
8898
8899
  withdraw(args: {
8899
8900
  key: MimoV3MiningPoolKey;
8900
8901
  v3PositionId: number;
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.58",
5
+ "version": "v0.1.60",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {