eth
eth_syncing
POST
/
id
jsonrpc
method
params
curl --request POST \
--url https://rpc1.taurus.axiomesh.io/
Returns an object with data about the sync status or false
Body
id
number
Serves as a unique identifier for the request
jsonrpc
string
Indicates the version of JSON-RPC being used
method
string
Represents the name of the remote procedure or method to be called
params
array
Contains the list of parameters passed to the remote method
Response
id
number
Returns unique identifier for the request
jsonrpc
string
Returns the version of JSON-RPC being used
result
object
curl 'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"currentBlock": "3",
"highestBlock": "3",
"startingBlock": "1"
}
}
curl 'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"currentBlock": "3",
"highestBlock": "3",
"startingBlock": "1"
}
}