@iotexproject/kit 0.1.47 → 0.1.49
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 +16 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7987,7 +7987,20 @@ declare class SmartChefEntity {
|
|
|
7987
7987
|
} | undefined;
|
|
7988
7988
|
totalStakedBalanceUSD: string;
|
|
7989
7989
|
} | undefined>;
|
|
7990
|
-
|
|
7990
|
+
myStakedTokenBalance(account: `0x${string}`): Promise<{
|
|
7991
|
+
value: string;
|
|
7992
|
+
format: string;
|
|
7993
|
+
originFormat: string;
|
|
7994
|
+
decimals: string;
|
|
7995
|
+
} | undefined>;
|
|
7996
|
+
RewardToken(): Promise<import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
|
|
7997
|
+
address: true;
|
|
7998
|
+
symbol: true;
|
|
7999
|
+
priceUSD: true;
|
|
8000
|
+
decimals: true;
|
|
8001
|
+
tokenUrl: true;
|
|
8002
|
+
}>>;
|
|
8003
|
+
StakedToken(): Promise<import("@dappworks/kit/aiem").QueryReturnType<LPTokenEntity, {
|
|
7991
8004
|
address: true;
|
|
7992
8005
|
decimals: true;
|
|
7993
8006
|
symbol: true;
|
|
@@ -8010,19 +8023,6 @@ declare class SmartChefEntity {
|
|
|
8010
8023
|
tokenUrl: true;
|
|
8011
8024
|
type: true;
|
|
8012
8025
|
}> | undefined>;
|
|
8013
|
-
myStakedTokenBalance(account: `0x${string}`): Promise<{
|
|
8014
|
-
value: string;
|
|
8015
|
-
format: string;
|
|
8016
|
-
originFormat: string;
|
|
8017
|
-
decimals: string;
|
|
8018
|
-
} | undefined>;
|
|
8019
|
-
RewardToken(): Promise<import("@dappworks/kit/aiem").QueryReturnType<ERC20Entity, {
|
|
8020
|
-
address: true;
|
|
8021
|
-
symbol: true;
|
|
8022
|
-
priceUSD: true;
|
|
8023
|
-
decimals: true;
|
|
8024
|
-
tokenUrl: true;
|
|
8025
|
-
}>>;
|
|
8026
8026
|
deposit: (_amount: string) => Promise<any>;
|
|
8027
8027
|
withdraw: (_amount: string) => Promise<any>;
|
|
8028
8028
|
}
|
|
@@ -8030,8 +8030,8 @@ declare class LiquidityMining {
|
|
|
8030
8030
|
poolsList(args: {
|
|
8031
8031
|
account?: `0x${string}`;
|
|
8032
8032
|
}, ctx?: ConfigContext): Promise<import("@dappworks/kit/aiem").QueryReturnType<SmartChefEntity, {
|
|
8033
|
-
|
|
8034
|
-
|
|
8033
|
+
RewardToken: true;
|
|
8034
|
+
StakedToken: true;
|
|
8035
8035
|
endTime: true;
|
|
8036
8036
|
startTime: true;
|
|
8037
8037
|
isNew: true;
|