eth_syncing
Chain info | Monad
eth_syncing | Monad
Monad API method that returns an object with data about the sync status or false if the node is fully synced. Monad via Chainstack.
POST
eth_syncing
Monad API method that returns an object with data about the sync status or
false if the node is fully synced. This method is useful for monitoring the synchronization progress of your node.
Get your 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
result— returnsfalseif the node is not syncing, or an object with sync status data:startingBlock— the block at which the import startedcurrentBlock— the current block being processedhighestBlock— the estimated highest block
eth_syncing code examples
Use case
A practical use case foreth_syncing is implementing health checks in your application to ensure the node is fully synced before processing transactions or queries that require the latest chain state.Last modified on May 18, 2026