eth_cancelBundle

The eth_cancelBundle method is used to cancel a submitted bundle. Request should adhere the following payload format:

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_cancelBundle",
  "params": [
    {
      replacementUuid    // UUIDv4 to uniquely identify submission
    }
  ]
}

Example response:

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

Please be aware that we make our best effort to cancel bundles, but we cannot guarantee the exclusion of the original bundle.

Last updated