eth_syncing
Returns information about the sync status of the node
Parameters:
Returns:
Example:
// Request
curl https://flow-evm.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}'
// Result
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"startingBlock": "0x230aa00",
"currentBlock": "0x230e1b9",
"highestBlock": "0x230e1bc"
}
}Last updated
Was this helpful?