@scallop-io/sui-scallop-sdk 2.3.13 → 2.3.14-rc.1
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.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/models/scallopUtils.ts +9 -0
- package/src/types/constant/common.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1244,6 +1244,7 @@ declare class ScallopUtils implements ScallopUtilsInterface {
|
|
|
1244
1244
|
get address(): ScallopConstants;
|
|
1245
1245
|
isSuiBridgeAsset(coinName: any): boolean;
|
|
1246
1246
|
isWormholeAsset(coinName: any): boolean;
|
|
1247
|
+
isLayerZeroAsset(coinName: any): boolean;
|
|
1247
1248
|
isMarketCoin(coinName: string): boolean;
|
|
1248
1249
|
init({ force }?: {
|
|
1249
1250
|
force?: boolean;
|
|
@@ -2150,6 +2151,7 @@ type Whitelist = {
|
|
|
2150
2151
|
scoin: Set<string>;
|
|
2151
2152
|
suiBridge: Set<string>;
|
|
2152
2153
|
wormhole: Set<string>;
|
|
2154
|
+
layerZero: Set<string>;
|
|
2153
2155
|
oracles: Set<string>;
|
|
2154
2156
|
borrowIncentiveRewards: Set<string>;
|
|
2155
2157
|
rewardsAsPoint: Set<string>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1244,6 +1244,7 @@ declare class ScallopUtils implements ScallopUtilsInterface {
|
|
|
1244
1244
|
get address(): ScallopConstants;
|
|
1245
1245
|
isSuiBridgeAsset(coinName: any): boolean;
|
|
1246
1246
|
isWormholeAsset(coinName: any): boolean;
|
|
1247
|
+
isLayerZeroAsset(coinName: any): boolean;
|
|
1247
1248
|
isMarketCoin(coinName: string): boolean;
|
|
1248
1249
|
init({ force }?: {
|
|
1249
1250
|
force?: boolean;
|
|
@@ -2150,6 +2151,7 @@ type Whitelist = {
|
|
|
2150
2151
|
scoin: Set<string>;
|
|
2151
2152
|
suiBridge: Set<string>;
|
|
2152
2153
|
wormhole: Set<string>;
|
|
2154
|
+
layerZero: Set<string>;
|
|
2153
2155
|
oracles: Set<string>;
|
|
2154
2156
|
borrowIncentiveRewards: Set<string>;
|
|
2155
2157
|
rewardsAsPoint: Set<string>;
|