TriportRPC

eth_syncing

Return node sync progress or false.

Robinhood Chain mainnet (chain ID 4663)robinhood:rpcrobinhood_read_rpc - 15 / 20 / 100 / 250 RPS (free / basic / pro / business) (default, unmeasured); enterprise unlimited

eth_syncing return node sync progress or false. The published signature and response shape come from the measured Robinhood OpenRPC contract.

Parameters

JSON-RPC params is a positional array.

optional
Send an empty positional array.

Response

Representative envelope with the top-level shape of the accepted fixture:

Errors

See Robinhood errors. Invalid parameters return a JSON-RPC parameter error; authentication and quota failures use the shared client error contract. Unknown failures are returned without an implicit retry.

Examples

const response = await fetch("https://triport.io/rpc/robinhood", {
  method: "POST",
  headers: { "x-token": process.env.TRIPORT_API_KEY, "Content-Type": "application/json" },
  body: JSON.stringify({"jsonrpc":"2.0","id":1,"method":"eth_syncing","params":[]}),
});
const payload = await response.json();

Notes

  • Some channels disable this method and a false result reflects only the selected node. Do not use it as a trustworthy pool-health signal; compare the current head instead.