← Robinhood Chain overview

Robinhood Chain · web3

web3_clientVersion

Returns the client software version string.

Standard web3 namespace method. On Robinhood Chain the underlying stack is Arbitrum Nitro (Reth execution + Nitro sequencer).

cURL

Endpoint: https://rh-mainnet.eu1.azxa.io/<api-key> — replace <api-key> with your API key from the Azxa app .

Terminal
curl -X POST https://rh-mainnet.eu1.azxa.io/<api-key> \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"web3_clientVersion","params":[]}'

Example request

JSON-RPC
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "web3_clientVersion",
  "params": []
}

Result

Client identifier, e.g. nitro version string.

Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "nitro/v3.x.x"
}
Schema
{
  "type": "string"
}