eth_sendEndOfBlockBundle

This API is only accessible on request. Please contact us if you would like to use this API.

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_sendEndOfBlockBundle",
  "params": [
    {
      txs,               // Array[String], A list of signed transactions to execute in an atomic bundle.
      blockNumber,       // (Optional) String|Number, A (hex-encoded) block number for which this bundle is valid.
      revertingTxHashes, // (Optional) Array[String], A list of tx hashes that are allowed to revert.
      targetPools        // Array[String], A list of pool addresses that this bundle is targeting.
    }
  ]
}

The bundle will only be simulated when at least one of the target pools has been modified.

Last updated