Ethereum API
Multichain API
eth_syncing
Summary: Returns an object with data about the sync status or false.
Parameters
This method doesn't accept any parameters.
Returns
Syncing status oneOf
Syncing status
Customize request
Parameter
Value
Connect your MetaMask wallet to run requests successfully.
Request
await window.ethereum.request({
"method": "eth_syncing",
"params": [],
});
Example response
{
"startingBlock": "0x0",
"currentBlock": "0x1518",
"highestBlock": "0x9567a3"
}