timeboost_sendBundle
{
"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,
// (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,
}
]
}
CURL Example
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "timeboost_sendBundle",
"params": [
{
"txs": [
"0x123456",
"0x123456",
"0x123456"
]
}
],
"id": 1
}' \
https://rpc.kairos-timeboost.xyz
Response Example
{"jsonrpc":"2.0","id":1,"result":"f278b3a2-004e-48dd-859a-2021e46776ee"}
Last updated