@iotexproject/kit 0.1.66 → 0.1.67
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 +34 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8283,6 +8283,15 @@ declare class LiquidityMining {
|
|
|
8283
8283
|
price0: number;
|
|
8284
8284
|
price1: number;
|
|
8285
8285
|
})[];
|
|
8286
|
+
totalReward: {
|
|
8287
|
+
totalRewardUSD: string;
|
|
8288
|
+
totalReward: {
|
|
8289
|
+
value: string;
|
|
8290
|
+
format: string;
|
|
8291
|
+
originFormat: string;
|
|
8292
|
+
decimals: string;
|
|
8293
|
+
};
|
|
8294
|
+
} | undefined;
|
|
8286
8295
|
myStakedTokenBalance: {
|
|
8287
8296
|
token0Address: any;
|
|
8288
8297
|
token1Address: any;
|
|
@@ -8466,6 +8475,15 @@ declare class LiquidityMiningV3 {
|
|
|
8466
8475
|
price0: number;
|
|
8467
8476
|
price1: number;
|
|
8468
8477
|
})[];
|
|
8478
|
+
totalReward: {
|
|
8479
|
+
totalRewardUSD: string;
|
|
8480
|
+
totalReward: {
|
|
8481
|
+
value: string;
|
|
8482
|
+
format: string;
|
|
8483
|
+
originFormat: string;
|
|
8484
|
+
decimals: string;
|
|
8485
|
+
};
|
|
8486
|
+
} | undefined;
|
|
8469
8487
|
myStakedTokenBalance: {
|
|
8470
8488
|
token0Address: any;
|
|
8471
8489
|
token1Address: any;
|
|
@@ -9013,7 +9031,22 @@ declare class Galxe extends BaseDBModule {
|
|
|
9013
9031
|
}>;
|
|
9014
9032
|
}
|
|
9015
9033
|
declare class DepinScan extends BaseDBModule {
|
|
9016
|
-
|
|
9034
|
+
explorer_v1({ is_latest }: {
|
|
9035
|
+
is_latest: boolean;
|
|
9036
|
+
}): Promise<import("postgres").RowList<import("postgres").Row[]> | {
|
|
9037
|
+
date: string;
|
|
9038
|
+
total_projects: any;
|
|
9039
|
+
market_cap: any;
|
|
9040
|
+
total_device: any;
|
|
9041
|
+
}[]>;
|
|
9042
|
+
explorer({ is_latest }: {
|
|
9043
|
+
is_latest: boolean;
|
|
9044
|
+
}): Promise<import("postgres").RowList<import("postgres").Row[]> | {
|
|
9045
|
+
date: string;
|
|
9046
|
+
total_projects: any;
|
|
9047
|
+
market_cap: any;
|
|
9048
|
+
total_device: any;
|
|
9049
|
+
}[]>;
|
|
9017
9050
|
}
|
|
9018
9051
|
declare class MicroService extends BaseDBModule {
|
|
9019
9052
|
checkAuth(key: string): Promise<{
|