@iotexproject/kit 0.1.70 → 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 +19 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -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;
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.70",
5
+ "version": "v0.1.71",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {