Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 519 Bytes

File metadata and controls

29 lines (21 loc) · 519 Bytes
description Returns the current client version.

web3_clientVersion

Parameters:

None

Returns:

String - The current client version

Example:

{% code overflow="wrap" %}

// Request
curl https://hyperliquid.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"web3_clientVersion","params":[],"id":1}'

// Result
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": "hyperliquid evm Mainnet"
}

{% endcode %}