@scallop-io/sui-scallop-sdk 2.0.9-emerging-asset-alpha.1 → 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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +6 -6
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
- package/src/models/scallopClient.ts +4 -4
- 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
|
@@ -1657,7 +1657,7 @@ declare class ScallopClient {
|
|
|
1657
1657
|
* Claim unlocked SCA from all veSCA accounts.
|
|
1658
1658
|
*/
|
|
1659
1659
|
claimAllUnlockedSca(): Promise<SuiTransactionBlockResponse>;
|
|
1660
|
-
claimAllUnlockedSca<S extends boolean>(
|
|
1660
|
+
claimAllUnlockedSca<S extends boolean>(sign?: S, walletAddress?: string): Promise<ScallopClientVeScaReturnType<S>>;
|
|
1661
1661
|
/**
|
|
1662
1662
|
* Mint and get test coin.
|
|
1663
1663
|
*
|
|
@@ -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
|
@@ -1657,7 +1657,7 @@ declare class ScallopClient {
|
|
|
1657
1657
|
* Claim unlocked SCA from all veSCA accounts.
|
|
1658
1658
|
*/
|
|
1659
1659
|
claimAllUnlockedSca(): Promise<SuiTransactionBlockResponse>;
|
|
1660
|
-
claimAllUnlockedSca<S extends boolean>(
|
|
1660
|
+
claimAllUnlockedSca<S extends boolean>(sign?: S, walletAddress?: string): Promise<ScallopClientVeScaReturnType<S>>;
|
|
1661
1661
|
/**
|
|
1662
1662
|
* Mint and get test coin.
|
|
1663
1663
|
*
|
|
@@ -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;
|