Skip to content

timeboost_sendBundle

The eth_sendBundle RPC has the following payload format:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "timeboost_sendBundle",
  "params": [
    {
      txs,               // Array[String], A list of signed transactions to execute in an atomic bundle
      revertingTxHashes, // (Optional) Array[String], A list of tx hashes that are allowed to revert
    }
  ]
}

Params Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "timeboost_sendBundle",
  "params": [
    {
      "txs": ["0x123abc...", "0x456def..."],
    }
  ]
}

Response Example:

{
  "jsonrpc": "2.0",
  "id": "1",
  "result": "uuid"
}