web3
web3_clientVersion
Returns the current client version string, identifying the software and platform running the node.
Returns the current client version string, identifying the software and platform running the node.
Parameters
| # | Type | Description |
|---|---|---|
| — | — | No parameters required. |
Returns
| Type | Description |
|---|---|
string | The client version identifier including software name, version, and platform. |
Example
curl -s -X POST https://rpc.pulsechain.box \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "web3_clientVersion",
"params": [],
"id": 1
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": "reth/vX.Y.Z-commit/x86_64-unknown-linux-gnu"
}
TRY IT
Notes
- The version string format is
client/version-commit/platform. - This endpoint is useful for verifying which execution client software and version is serving requests.
- The version string changes with node upgrades. Use the Try It button to see the current live version.
