timeboost_getRoundSequence
This endpoint returns the hashes of all transactions that were submitted to the express lane for a specific round, along with their sequence numbers.
Request Body
{
"jsonrpc": "2.0",
"id": 1,
"method": "timeboost_getRoundSequence",
"params": [
// [Integer] The starting round number (must be a Kairos-controlled round).
1234,
]
}CURL Example
curl -X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "timeboost_getRoundSequence",
"params": [1234],
"id": 1
}' \
https://rpc.kairos-timeboost.xyzResponse Example
{
"jsonrpc": "2.0",
"id": 1,
"result": [
"0x..1",
"0x..2",
"0x..3",
"0x..4",
"0x..5",
"0x..6"
]
}Last updated