{
"jsonrpc": "2.0",
"id": 1,
"method": "timeboost_sendBundle",
"params": [
{
// Array[String]
// A list of signed transactions to execute in an atomic bundle,
// list can be empty for bundle cancellations.
txs,
// Array[String]
// A list of sequencer transactions (rlp encoded bytes) for Kairos to simulate ahead of your bundle.
pendingTxs,
// (Optional) Array[String]
// A list of tx hashes that are allowed to revert or be discarded.
revertingTxHashes,
// (Optional) String
// Any arbitrary string that can be used to replace or cancel this bundle.
replacementUuid,
}
]
}
Pending Transactions
Searchers may send bundles that depend on changes in the sequencer feed state that Kairos has not fully processed, causing bundles to revert during simulation. To avoid this, transactions can be added to the pendingTxs field and will be applied on top of local state before bundle simulation. If Kairos has already processed these transactions, they are simply ignored and the bundle is simulated as normal.