eth_sendBundle
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_sendBundle",
"params": [
{
txs, // Array[String], A list of signed transactions to execute in an atomic bundle
blockNumber, // (Optional) String, a hex-encoded block number for which this bundle is valid. Default, current block number
}
]
}Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x164d7d41f24b7f333af3b4a70b690cf93f636227165ea2b699fbb7eed09c46c7"
}Last updated