web3_clientVersion

Returns the current client version.

Parameters

None

Returns

A string representing the current client version.

Example

Request

curl https://rpc.testnet.tryradi.us/<YOUR-RPC-ENDPOINT> \
  -X POST \
  -H "Content-Type: application/json" \
  -d '
{
  "jsonrpc": "2.0",
  "method": "web3_clientVersion",
  "params": [],
  "id": 1
}
'

Response

{
  "jsonrpc":"2.0",
  "result":"0.1.0",
  "id":1
}

Last updated

Was this helpful?