@scallop-io/sui-scallop-sdk 2.0.9 → 2.0.10
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 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
- package/src/queries/coreQuery.ts +7 -8
- package/src/queries/isolatedAssetQuery.ts +1 -1
- package/src/queries/poolAddressesQuery.ts +2 -1
- package/src/types/constant/common.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -1986,6 +1986,7 @@ type PoolAddress = {
|
|
|
1986
1986
|
coinType: string;
|
|
1987
1987
|
coinMetadataId: string;
|
|
1988
1988
|
decimals: number;
|
|
1989
|
+
isIsolated: boolean;
|
|
1989
1990
|
pythFeed?: string;
|
|
1990
1991
|
pythFeedObjectId?: string;
|
|
1991
1992
|
lendingPoolAddress?: string;
|
|
@@ -2003,7 +2004,7 @@ type PoolAddress = {
|
|
|
2003
2004
|
sCoinSymbol?: string;
|
|
2004
2005
|
sCoinMetadataId?: string;
|
|
2005
2006
|
sCoinTreasury?: string;
|
|
2006
|
-
isolatedAssetKey:
|
|
2007
|
+
isolatedAssetKey: string;
|
|
2007
2008
|
spool?: string;
|
|
2008
2009
|
spoolReward?: string;
|
|
2009
2010
|
spoolName?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1986,6 +1986,7 @@ type PoolAddress = {
|
|
|
1986
1986
|
coinType: string;
|
|
1987
1987
|
coinMetadataId: string;
|
|
1988
1988
|
decimals: number;
|
|
1989
|
+
isIsolated: boolean;
|
|
1989
1990
|
pythFeed?: string;
|
|
1990
1991
|
pythFeedObjectId?: string;
|
|
1991
1992
|
lendingPoolAddress?: string;
|
|
@@ -2003,7 +2004,7 @@ type PoolAddress = {
|
|
|
2003
2004
|
sCoinSymbol?: string;
|
|
2004
2005
|
sCoinMetadataId?: string;
|
|
2005
2006
|
sCoinTreasury?: string;
|
|
2006
|
-
isolatedAssetKey:
|
|
2007
|
+
isolatedAssetKey: string;
|
|
2007
2008
|
spool?: string;
|
|
2008
2009
|
spoolReward?: string;
|
|
2009
2010
|
spoolName?: string;
|