Skip to content

Commit

Permalink
Change wallet adapter send transaction response (#124)
Browse files Browse the repository at this point in the history
* Change wallet adapter send transaction response

* bump package version
  • Loading branch information
rodrigoncalves authored Dec 20, 2023
1 parent 8119aea commit 9b3f09f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/walletAdapters/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/walletAdapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rsksmart/rif-wallet-adapters",
"version": "1.0.2",
"version": "1.0.3",
"description": "Wallet Adapters for everyday use",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export class SendTransactionResolver implements IResolver {

return this.signer
.sendTransaction(formattedPayload)
.then((tx: TransactionResponse) => tx.hash)
.then((tx: TransactionResponse) => tx)
}
}

0 comments on commit 9b3f09f

Please sign in to comment.