Kairos Timeboost
  • Introduction
  • A Quick Overview of Timeboost
  • Our Express Lane Sub-Auction
  • Submission API
    • timeboost_sendTransaction
    • timeboost_sendBundle
  • Stats APIs
    • Express Lane Status Endpoint
    • Get Order Info
    • Round Sequence
    • Auction stream
  • Resources & Endpoints
Powered by GitBook
On this page
  • Sample Request
  • CURL Example
  • Sample Response
  1. Stats APIs

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"
  ]
}
PreviousGet Order InfoNextAuction stream

Last updated 2 months ago