POST
/
3997273fc956a67dc6982384500e669e
curl --request POST \
  --url https://ronin-mainnet.core.chainstack.com/3997273fc956a67dc6982384500e669e \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_syncing",
  "params": []
}'
{
  "jsonrpc": "<string>",
  "id": 123,
  "result": {
    "startingBlock": "<string>",
    "currentBlock": "<string>",
    "highestBlock": "<string>"
  }
}

The eth_syncing method provides information about the node’s current syncing status with the Ethereum network. If the node is not syncing, the method returns false. If the node is syncing, it returns an object containing syncing details.

Get you own node endpoint today

Start for free and get your app to production levels immediately. No credit card required.

You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • None

Response

  • If syncing:
    • startingBlock: The block number where syncing started.
    • currentBlock: The current block number where the node is synced to.
    • highestBlock: The estimated highest block number to sync to.
  • If not syncing, returns false.

Use case

This method is useful for monitoring the progress of a node’s synchronization with the network, especially after the node has been offline or is catching up with the blockchain. It helps in determining whether the node is fully synced and ready to interact with the network without any data inconsistencies.

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:eth_syncing
params
any[]

Response

200 - application/json
Syncing status of the node
jsonrpc
string
id
integer
result