curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "web3_clientVersion",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": "HyperEVM/v1.0.0"
}
Returns the current client version. This method provides information about the Ethereum client implementation and version running on the Hyperliquid EVM.
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"method": "web3_clientVersion",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": "HyperEVM/v1.0.0"
}
curl -X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}' \
https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm
{"jsonrpc":"2.0","id":1,"result":"hyperliquid evm Mainnet"}
Successful response with client version information
The response is of type object
.
Was this page helpful?