@scallop-io/sui-scallop-sdk 2.0.7 → 2.0.8

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 CHANGED
@@ -1652,12 +1652,12 @@ declare class ScallopClient {
1652
1652
  * Function to migrate all market coin in user wallet into sCoin
1653
1653
  * @returns Transaction response
1654
1654
  */
1655
- migrateAllMarketCoin<S extends boolean>(includeStakePool?: boolean, sign?: S): Promise<ScallopClientFnReturnType<S>>;
1655
+ migrateAllMarketCoin<S extends boolean>(includeStakePool?: boolean, sign?: S, walletAddress?: string): Promise<ScallopClientFnReturnType<S>>;
1656
1656
  /**
1657
1657
  * Claim unlocked SCA from all veSCA accounts.
1658
1658
  */
1659
1659
  claimAllUnlockedSca(): Promise<SuiTransactionBlockResponse>;
1660
- claimAllUnlockedSca<S extends boolean>(sign?: S): Promise<ScallopClientVeScaReturnType<S>>;
1660
+ claimAllUnlockedSca<S extends boolean>(walletAddress?: string, sign?: S): Promise<ScallopClientVeScaReturnType<S>>;
1661
1661
  /**
1662
1662
  * Mint and get test coin.
1663
1663
  *
package/dist/index.d.ts CHANGED
@@ -1652,12 +1652,12 @@ declare class ScallopClient {
1652
1652
  * Function to migrate all market coin in user wallet into sCoin
1653
1653
  * @returns Transaction response
1654
1654
  */
1655
- migrateAllMarketCoin<S extends boolean>(includeStakePool?: boolean, sign?: S): Promise<ScallopClientFnReturnType<S>>;
1655
+ migrateAllMarketCoin<S extends boolean>(includeStakePool?: boolean, sign?: S, walletAddress?: string): Promise<ScallopClientFnReturnType<S>>;
1656
1656
  /**
1657
1657
  * Claim unlocked SCA from all veSCA accounts.
1658
1658
  */
1659
1659
  claimAllUnlockedSca(): Promise<SuiTransactionBlockResponse>;
1660
- claimAllUnlockedSca<S extends boolean>(sign?: S): Promise<ScallopClientVeScaReturnType<S>>;
1660
+ claimAllUnlockedSca<S extends boolean>(walletAddress?: string, sign?: S): Promise<ScallopClientVeScaReturnType<S>>;
1661
1661
  /**
1662
1662
  * Mint and get test coin.
1663
1663
  *