eth_syncing RPC Method

Reports whether the node is currently syncing, returning status details or false when fully synced.

Parameters#

None

Result#

boolean | object - Returns false when the node is fully synced, or an object containing synchronization progress details.

Code sample#

{
  "jsonrpc": "2.0",
  "method": "eth_syncing",
  "params": [],
  "id": 1
}

Response#

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": false
}
Try It