web3_clientVersion RPC Method

Retrieves the version string of the connected Monad client.

Parameters#

None

Result#

string - Version identifier of the running Monad client.

Code sample#

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

Response#

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "monad/v0.1.0"
}
Try It