false.
Parameters
NoneResponse
object|boolean— an object with sync status data orfalsewhen not syncing
false.
object|boolean — an object with sync status data or false when not syncingeth_syncing code examplesconst { JsonRpcProvider } = require("ethers");
const provider = new JsonRpcProvider("CHAINSTACK_NODE_URL");
async function call() {
const result = await provider.send("eth_syncing", []);
console.log(result);
}
call();
Was this page helpful?