eth_syncing

Returns an object with the sync status of the node if the node is out-of-sync and is syncing. Returns false when the node is already in sync.

📘

Supported on Fantom (mainnet) only.

Parameters

  • none

Returns

  • result- The result is false if JSON Object is not syncing otherwise it's true:
    • startingblock- The block at which the import started encoded as hexadecimal
    • currentblock- The current block, same as eth_blockNumber encoded as hexadecimal
    • highestblock- The estimated highest block encoded as hexadecimal

API Endpoint

The format of a Fantom API endpoint is
https://open-platform.nodereal.io/{{apiKey}}/fantom/

Here is an example:
https://open-platform.nodereal.io/4c0a1c23661a4e26bcbcwed461e34ea9/fantom/

Example

Request

curl https://open-platform.nodereal.io/{{apiKey}}/fantom/ \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":67}'

Result