@scallop-io/sui-scallop-sdk 1.3.4 → 1.3.41
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/package.json
CHANGED
|
@@ -4,7 +4,7 @@ export const POOL_ADDRESSES: Record<
|
|
|
4
4
|
SupportPoolCoins,
|
|
5
5
|
{
|
|
6
6
|
lendingPoolAddress: string;
|
|
7
|
-
collateralPoolAddress?: string;
|
|
7
|
+
collateralPoolAddress?: string; // not all pool has collateral
|
|
8
8
|
}
|
|
9
9
|
> = {
|
|
10
10
|
usdc: {
|
|
@@ -92,9 +92,11 @@ export const POOL_ADDRESSES: Record<
|
|
|
92
92
|
'0xff677a5d9e9dc8f08f0a8681ebfc7481d1c7d57bc441f2881974adcdd7b13c31',
|
|
93
93
|
},
|
|
94
94
|
fud: {
|
|
95
|
-
lendingPoolAddress:
|
|
95
|
+
lendingPoolAddress:
|
|
96
|
+
'0x14367ddca30e2860cb89ed4eaca20c7ece260c5d59dd9990d2c85a8321326acb',
|
|
96
97
|
},
|
|
97
98
|
deep: {
|
|
98
|
-
lendingPoolAddress:
|
|
99
|
+
lendingPoolAddress:
|
|
100
|
+
'0xf4a67ffb43da1e1c61c049f188f19463ea8dbbf2d5ef4722d6df854ff1b1cc03',
|
|
99
101
|
},
|
|
100
102
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const DEFAULT_TOKENS_PER_INTERVAL =
|
|
1
|
+
export const DEFAULT_TOKENS_PER_INTERVAL = 50;
|
|
2
2
|
export const DEFAULT_INTERVAL_IN_MS = 300;
|