We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9071ef commit 8e21739Copy full SHA for 8e21739
libs/wallet/src/api/hooks/useSendBatchTransactions.ts
@@ -23,7 +23,7 @@ export function useSendBatchTransactions(): SendBatchTxCallback {
23
const chainIdHex = '0x' + (+chainId).toString(16)
24
const calls = txs.map((tx) => ({ ...tx, chainId: chainIdHex }))
25
26
- return provider.send('wallet_sendCalls', [{ version: '1.0', from: account, calls }])
+ return provider.send('wallet_sendCalls', [{ version: '1.0', from: account, calls, chainId: chainIdHex }])
27
}
28
29
if (safeAppsSdk) {
0 commit comments