@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.
- package/dist/index.d.ts +19 -0
- 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;
|