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
  • CURL Example
  • ‍Response Example
  1. Submission API

timeboost_sendTransaction

{
  "jsonrpc": "2.0",
  "id": "1",
  "method": "timeboost_sendTransaction",
  "params": [
    {
      // String
      // Signed EIP-2718 rlp encoded tx hex.
      tx,
    }
  ]‍

CURL Example

curl -s \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{
    "jsonrpc": "2.0",
    "id": "1",
    "method": "timeboost_sendTransaction",
    "params": [
      {
        "tx": "0x12…ab"
      }
    ]
  }' \
  https://rpc.kairos-timeboost.xyz

‍Response Example

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "id": "f278b3a2-004e-48dd-859a-2021e46776ee",
    "express_lane_controller": true
  }
}

express_lane_controller is true if Kairos currently controls the express lane.

PreviousSubmission APINexttimeboost_sendBundle

Last updated 18 days ago