web3_clientVersion
Returns the version string of the node client software.
Parameters
Section titled “Parameters”None.
Returns
Section titled “Returns”| Field | Type | Description |
|---|---|---|
result | string | The client version string, formatted as <client>/<version>-<commit>/<platform>/base/<base-version>. Treat it as opaque — the format shifts with node software updates, so avoid parsing it. |
Example
Section titled “Example”Request
Section titled “Request”{ "jsonrpc": "2.0", "method": "web3_clientVersion", "params": [], "id": 1}Response
Section titled “Response”{ "jsonrpc": "2.0", "id": 1, "result": "reth/v1.11.3-2ac58a2/x86_64-unknown-linux-gnu/base/v0.9.0"}