Skip to content

eth_syncing

Returns the sync status of the node. Returns false when the node is fully synced.

None.

result is false if the node is fully synced. Otherwise it is a sync status object with the following fields:

FieldTypeDescription
startingBlockstringBlock at which the sync started (hex).
currentBlockstringCurrent block being processed (hex).
highestBlockstringEstimated highest block (hex).
{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": 1
}
{
"jsonrpc": "2.0",
"id": 1,
"result": false
}