false
if the node is fully synced. This method can track the progress of a node’s synchronization with the Fantom blockchain. The returned object contains data such as the starting block, current block, and highest block of the node, allowing developers to monitor and estimate the time remaining for the node to sync fully.
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
result
— the boolean valuefalse
when not syncing or a JSON object when syncing:startingBlock
— the block number where the synchronization process started, encoded as hexadecimal.currentBlock
— the block number that the node has currently processed, same aseth_blockNumber
, encoded as hexadecimal.highestBlock
— the block number of the latest block in the blockchain known to the node.
eth_syncing
code examples
Use case
Theeth_syncing
method can be useful for developers building applications that interact with the Fantom blockchain. For example, you may want to provide feedback to your application’s user about the status of the node the application is connecting to.Body
application/json