curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": false
}
Returns the synchronization status of the node.
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "eth_syncing",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": false
}
false
as nodes are always considered synchronized.
false
, indicating the node is fully synchronized.
false
. The network architecture ensures nodes are always synchronized, so there’s no syncing state.curl -X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm
{"jsonrpc":"2.0","id":1,"result":false}
Successful response with synchronization status
The response is of type object
.