EVM
eth_syncing
Summary: Get sync status
This request returns an object with data about the sync status or
false
, indicating that that the node is fully synchronized.
Parameters
This method doesn't accept any parameters.
Returns
Synchronization status data object, or
false
if not synchronizing.
syncingStatus oneOf
Syncing status.
Customize request
Parameter
Value
Request
CURL
curl https://linea-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": 1
}'
Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": {
"startingBlock": "0x8A9D0",
"currentBlock": "0x8FA20",
"highestBlock": "0x90B70"
}
}