@iotexproject/kit 0.1.69 → 0.1.70
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 +4 -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:
|
|
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:
|
|
8435
|
+
fee: any;
|
|
8436
8436
|
myPendingReward: {
|
|
8437
8437
|
pendingReward: {
|
|
8438
8438
|
value: string;
|
|
@@ -8859,9 +8859,11 @@ declare class AnalysisV2 extends BaseDBModule {
|
|
|
8859
8859
|
error: string;
|
|
8860
8860
|
ok?: undefined;
|
|
8861
8861
|
totalPoints?: undefined;
|
|
8862
|
+
point?: undefined;
|
|
8862
8863
|
} | {
|
|
8863
8864
|
ok: boolean;
|
|
8864
8865
|
totalPoints: any;
|
|
8866
|
+
point: any;
|
|
8865
8867
|
status?: undefined;
|
|
8866
8868
|
error?: undefined;
|
|
8867
8869
|
}>;
|