@iotexproject/kit 0.1.69 → 0.1.71

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 +23 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -8230,7 +8230,7 @@ declare class LiquidityMining {
8230
8230
  }>>;
8231
8231
  token0: () => Promise<any>;
8232
8232
  token1: () => Promise<any>;
8233
- fee: () => Promise<any>;
8233
+ fee: any;
8234
8234
  myPendingReward: {
8235
8235
  pendingReward: {
8236
8236
  value: string;
@@ -8432,7 +8432,7 @@ declare class LiquidityMiningV3 {
8432
8432
  }>>;
8433
8433
  token0: () => Promise<any>;
8434
8434
  token1: () => Promise<any>;
8435
- fee: () => Promise<any>;
8435
+ fee: any;
8436
8436
  myPendingReward: {
8437
8437
  pendingReward: {
8438
8438
  value: string;
@@ -8556,6 +8556,25 @@ declare class LiquidityMiningV3 {
8556
8556
  chainId: string;
8557
8557
  type: string;
8558
8558
  }>;
8559
+ batchHarvest(args: {
8560
+ key: MimoV3MiningPoolKey;
8561
+ v3PositionIds: number[];
8562
+ account: `0x${string}`;
8563
+ }, ctx?: ConfigContext): Promise<{
8564
+ data: any;
8565
+ address: string;
8566
+ chainId: string;
8567
+ type: string;
8568
+ }>;
8569
+ batchWithdraw(args: {
8570
+ v3PositionIds: number[];
8571
+ account: `0x${string}`;
8572
+ }, ctx?: ConfigContext): Promise<{
8573
+ data: any;
8574
+ address: string;
8575
+ chainId: string;
8576
+ type: string;
8577
+ }>;
8559
8578
  unstakeAndWithdraw(args: {
8560
8579
  key: MimoV3MiningPoolKey;
8561
8580
  v3PositionId: number;
@@ -8859,9 +8878,11 @@ declare class AnalysisV2 extends BaseDBModule {
8859
8878
  error: string;
8860
8879
  ok?: undefined;
8861
8880
  totalPoints?: undefined;
8881
+ point?: undefined;
8862
8882
  } | {
8863
8883
  ok: boolean;
8864
8884
  totalPoints: any;
8885
+ point: any;
8865
8886
  status?: undefined;
8866
8887
  error?: undefined;
8867
8888
  }>;
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.69",
5
+ "version": "v0.1.71",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {