Can anyone share the current eth.syncing status of a sync-ed EVM node?

3k Views Asked by At

For those who have a sync-ed EVM node, can help share the current eth.syncing status?

I'm still syncing my node. Below is my status.

> eth.syncing
{
  currentBlock: 11365522,
  highestBlock: 11365595,
  knownStates: 526253551,
  pulledStates: 526197388,
  startingBlock: 11274865
}

I need to know how far is my node from fully sync-ed. Thanks.

1

There are 1 best solutions below

0
On

When you are synced, eth.syncing returns false. You will import up to the highestBlock and knownStates. Block importing will stop ~64 blocks behind head and finish importing states. Once all states are downloaded, geth will switch into a full node and sync the remaining ~64 blocks fully, as well as new ones.