Round Sequence

This endpoint returns the hashes of all transactions that were submitted to the express lane for a specific round, along with their sequence numbers.

Sample Request

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "timeboost_getRoundSequence",
  "params": [
      // Integer
      // UUID that was returned to you when you send the submission.
      1212,           
  ]
}

CURL Example

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "timeboost_getRoundSequence",
    "params": [1212],
    "id": 1
  }' \
  https://rpc.kairos-timeboost.xyz/stats

Sample Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": [
    "0x..1",
    "0x..2",
    "0x..3",
    "0x..4",
    "0x..5",
    "0x..6"
  ]
}

Last updated