Skip to content

Commit

Permalink
Fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Dec 4, 2024
1 parent 5808436 commit d0624e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/lib/wallet/wallet.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ interface BaseWalletBehaviour {
*/
signAndSendTransactionAsync?(
params: SignAndSendTransactionParams
): Promise<Uint8Array>;
): Promise<string>;
/**
* Signs one or more transactions before sending to the network.
* The user must be signed in to call this method as there's at least charges for gas spent.
Expand Down Expand Up @@ -334,7 +334,7 @@ export type BrowserWalletBehaviour = Modify<
): Promise<FinalExecutionOutcome | void>;
signAndSendTransactionAsync?(
params: BrowserWalletSignAndSendTransactionParams
): Promise<Uint8Array | void>;
): Promise<string | void>;
signAndSendTransactions(
params: BrowserWalletSignAndSendTransactionsParams
): Promise<void>;
Expand Down

0 comments on commit d0624e0

Please sign in to comment.