eth_protocolVersion

Returns the current ethereum protocol version.

Parameters

None

Result

PROTOCOL VERSION - hexadecimal indicating the current Ethereum protocol version.

Example

Request

curl <your-endpoint> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_protocolVersion","params": [],"id":1}'

Return

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "4.0.0"
}
Language
Click Try It! to start a request and see the response here!