@scallop-io/sui-scallop-sdk 0.44.24 → 0.44.25
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/constants/common.d.ts +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/dist/models/scallopQuery.d.ts +8 -0
- package/dist/queries/borrowIncentiveQuery.d.ts +8 -0
- package/package.json +1 -1
- package/src/constants/common.ts +4 -0
- package/src/constants/enum.ts +4 -0
|
@@ -10,7 +10,7 @@ export declare const SUPPORT_POOLS: readonly ["eth", "btc", "usdc", "usdt", "sui
|
|
|
10
10
|
export declare const SUPPORT_COLLATERALS: readonly ["eth", "btc", "usdc", "usdt", "sui", "apt", "sol", "cetus", "afsui", "hasui", "vsui", "sca"];
|
|
11
11
|
export declare const SUPPORT_SPOOLS: readonly ["seth", "ssui", "susdc", "susdt", "scetus", "safsui", "shasui", "svsui"];
|
|
12
12
|
export declare const SUPPORT_SPOOLS_REWARDS: readonly ["sui"];
|
|
13
|
-
export declare const SUPPORT_BORROW_INCENTIVE_POOLS: readonly ["sui", "usdc", "usdt", "sca"];
|
|
13
|
+
export declare const SUPPORT_BORROW_INCENTIVE_POOLS: readonly ["sui", "usdc", "usdt", "afsui", "hasui", "vsui", "eth", "sca"];
|
|
14
14
|
export declare const SUPPORT_BORROW_INCENTIVE_REWARDS: readonly ["sui", "sca"];
|
|
15
15
|
export declare const SUPPORT_ORACLES: readonly ["supra", "switchboard", "pyth"];
|
|
16
16
|
export declare const SUPPORT_PACKAGES: readonly ["coinDecimalsRegistry", "math", "whitelist", "x", "protocol", "protocolWhitelist", "query", "supra", "pyth", "switchboard", "xOracle", "testCoin"];
|
package/dist/index.js
CHANGED
|
@@ -122,6 +122,10 @@ var SUPPORT_BORROW_INCENTIVE_POOLS = [
|
|
|
122
122
|
"sui",
|
|
123
123
|
"usdc",
|
|
124
124
|
"usdt",
|
|
125
|
+
"afsui",
|
|
126
|
+
"hasui",
|
|
127
|
+
"vsui",
|
|
128
|
+
"eth",
|
|
125
129
|
"sca"
|
|
126
130
|
];
|
|
127
131
|
var SUPPORT_BORROW_INCENTIVE_REWARDS = ["sui", "sca"];
|
|
@@ -220,7 +224,11 @@ var borrowIncentiveRewardCoins = {
|
|
|
220
224
|
sui: ["sui", "sca"],
|
|
221
225
|
usdc: ["sui", "sca"],
|
|
222
226
|
usdt: ["sui", "sca"],
|
|
223
|
-
sca: ["sui", "sca"]
|
|
227
|
+
sca: ["sui", "sca"],
|
|
228
|
+
afsui: ["sui"],
|
|
229
|
+
hasui: ["sui"],
|
|
230
|
+
vsui: ["sui"],
|
|
231
|
+
eth: ["sui"]
|
|
224
232
|
};
|
|
225
233
|
var coinIds = {
|
|
226
234
|
sui: "0x0000000000000000000000000000000000000000000000000000000000000002",
|