execute
Executes call(s) using the execute
function on an ERC-7821-compatible contract.
Usage
import { parseEther } from 'viem'
import { account, client } from './config'
const hash = await client.execute({
account,
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
Account Hoisting
If you do not wish to pass an account
to every sendCalls
, you can also hoist the Account on the Wallet Client (see config.ts
).
import { parseEther } from 'viem'
import { account, client } from './config'
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
Contract Calls
The calls
property also accepts Contract Calls, and can be used via the abi
, functionName
, and args
properties.
import { parseEther } from 'viem'
import { account, client } from './config'
const abi = parseAbi([
'function approve(address, uint256) returns (bool)',
'function transferFrom(address, address, uint256) returns (bool)',
])
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
to: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
abi,
functionName: 'approve',
args: [
'0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
100n
],
},
{
to: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
abi,
functionName: 'transferFrom',
args: [
'0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
'0x0000000000000000000000000000000000000000',
100n
],
},
],
})
Return Value
Parameters
account
- Type:
Account | Address | null
Account to invoke the execution of the calls.
Accepts a JSON-RPC Account or Local Account (Private Key, etc). If set to null
, it is assumed that the transport will handle filling the sender of the transaction.
const hash = await client.execute({
account: '0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266',
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
address
- Type:
0x${string}
Address of the contract to execute the calls on.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
calls
- Type:
Call[]
Set of calls to execute.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
calls.data
- Type:
Hex
Calldata to broadcast (typically a contract function selector with encoded arguments, or contract deployment bytecode).
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
calls.to
- Type:
Address
Recipient address of the call.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
calls.value
- Type:
Address
Value to send with the call.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
authorizationList (optional)
- Type:
AuthorizationList
Signed EIP-7702 Authorization list.
const authorization = await client.signAuthorization({
contractAddress: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
})
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
authorizationList: [authorization],
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
})
chain (optional)
- Type:
Chain
- Default:
client.chain
Chain to execute the calls on.
import { optimism } from 'viem/chains'
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
chain: optimism,
})
gasPrice (optional)
- Type:
bigint
The price (in wei) to pay per gas.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
gasPrice: parseGwei('20'),
})
maxFeePerGas (optional)
- Type:
bigint
Total fee per gas (in wei), inclusive of maxPriorityFeePerGas
.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
maxFeePerGas: parseGwei('20'),
})
maxPriorityFeePerGas (optional)
- Type:
bigint
Max priority fee per gas (in wei).
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
maxFeePerGas: parseGwei('20'),
maxPriorityFeePerGas: parseGwei('2'),
})
opData (optional)
- Type:
Hex
Additional data to pass to execution.
const hash = await client.execute({
address: '0xcb98643b8786950F0461f3B0edf99D88F274574D',
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
opData: '0xdeadbeef',
})