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 todayStart 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.