This API is used to receive requests for simulating bundles. The method name is eth_callBundle.
Request Parameters
Parameters
Mandatory
Format
Example
Description
txs
Mandatory
array[hex]
["0x…4b", "0x…5c"]
List of signed raw transactions
blockNumber
Mandatory
number
39177941
Current block number + 1
Request Example
{
"jsonrpc": "2.0",
"id": "1",
"method": "eth_callBundle",
"params": [
{
"txs":["0x…4b"], // List of signed raw transactions
"blockNumber":39177941, // Current block number + 1
}
]
}