Send bundles to BuildAI
Bundle Relay URLs
Network
URL
eth_sendBundle
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_sendBundle",
"params": [
{
txs, // Array[String], A list of signed transactions to execute in an atomic bundle
blockNumber, // String, a hex encoded block number for which this bundle is valid on
minTimestamp, // (Optional) Number, the minimum timestamp for which this bundle is valid, in seconds since the unix epoch
maxTimestamp, // (Optional) Number, the maximum timestamp for which this bundle is valid, in seconds since the unix epoch
revertingTxHashes, // (Optional) Array[String], A list of tx hashes that are allowed to revert
refundPercent, // (Optional) Number, the percentage (from 0 to 99) of bundle tip that should be passed back to the refundRecipient
refundRecipient, // (Optional) Address, account that will receive the refund from this bundle, defaults to the sender of the first transaction
}
]
}Last updated