Skip to content

Commit 21415fe

Browse files
feat: react-wallet-v2: hash and operationHash in tezos_send response
1 parent 18dc528 commit 21415fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

advanced/wallets/react-wallet-v2/src/utils/TezosRequestHandlerUtil.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export async function approveTezosRequest(
3333
case TEZOS_SIGNING_METHODS.TEZOS_SEND:
3434
try {
3535
const sendResponse = await wallet.signTransaction(request.params.operations, chainId)
36-
return formatJsonRpcResult(id, { hash: sendResponse })
36+
return formatJsonRpcResult(id, { hash: sendResponse, operationHash: sendResponse })
3737
} catch (error) {
3838
if (error instanceof Error) {
3939
console.error('Tezos_send operation failed with error: ', error.message)

0 commit comments

Comments
 (0)