@scallop-io/sui-scallop-sdk 2.0.9-emerging-asset-alpha.1 → 2.0.9
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/models/scallopClient.ts +4 -4
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
|
*
|
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
|
*
|