For the complete documentation index, see llms.txt. This page is also available as Markdown.

eth_sendBundle

A canonical UUID string (replacementUuid) is forwarded to builders so the bundle can be cancelled.

Example request

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_sendBundle",
  "params": [
    {
      "txs": [ 
        "txHash", // originator transaction hash — or the last tx hash of an originator bundle (see Access to Originator Bundles)
        "rawTxHex" // searcher transaction
      ],             
      "blockNumber": "0x102286B",       // (Optional) String, a hex-encoded block number for which this bundle is valid. Default, current block number
      "replacementUuid": "d9be8dba-6954-47bf-8ee2-dab3feeb11ee",   // (Optional) Canonical UUID string (RFC 4122); used to replace or cancel this bundle
    }
  ]
}

Example response

Last updated