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>"
}
}
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>"
}
}
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.
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.false
.Syncing status of the node
The response is of type object
.
Was this page helpful?