This API is used to receive bundles, with the method name eth_sendBundle.
The block construction algorithm of MEV Zone favors bundles that transfer more native tokens (AVAX) to MEV Zone contract.
Request Example
{
"jsonrpc": "2.0",
"id": "1",
"method": "eth_sendBundle",
"params": [
{
"txs":["0x…2b", "0x…1c"], // List of signed raw transactions
"maxBlockNumber":123456789, // The maximum block number for the bundle to be valid, with the default set to the current block number + 100
"minTimestamp":123456789, // Expected minimum Unix timestamp (in seconds) for the bundle to be valid
"maxTimestamp":1234567898, // Expected maximum Unix timestamp (in seconds) for the bundle to be valid
"revertingTxHashes":[
"0x1234",
"0x1234"
] // List of transaction hashes allowed for revert
}
]
}