@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/package.json
CHANGED
|
@@ -1092,12 +1092,12 @@ export class ScallopClient {
|
|
|
1092
1092
|
*/
|
|
1093
1093
|
public async claimAllUnlockedSca(): Promise<SuiTransactionBlockResponse>;
|
|
1094
1094
|
public async claimAllUnlockedSca<S extends boolean>(
|
|
1095
|
-
|
|
1096
|
-
|
|
1095
|
+
sign?: S,
|
|
1096
|
+
walletAddress?: string
|
|
1097
1097
|
): Promise<ScallopClientVeScaReturnType<S>>;
|
|
1098
1098
|
public async claimAllUnlockedSca<S extends boolean>(
|
|
1099
|
-
|
|
1100
|
-
|
|
1099
|
+
sign: S = true as S,
|
|
1100
|
+
walletAddress?: string
|
|
1101
1101
|
): Promise<ScallopClientVeScaReturnType<S>> {
|
|
1102
1102
|
const sender = walletAddress ?? this.walletAddress;
|
|
1103
1103
|
// get all veSca keys
|