curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/jsonrpc \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_protocolVersion",
"params": [],
"id": 64
}
'{
"jsonrpc": "2.0",
"id": 64,
"result": "0x41"
}curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/jsonrpc \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_protocolVersion",
"params": [],
"id": 64
}
'{
"jsonrpc": "2.0",
"id": 64,
"result": "0x41"
}TRON API method that returns the current Ethereum protocol version using Ethereum-compatible JSON-RPC format. This method provides Ethereum tooling compatibility for protocol version identification on TRON.Documentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
jsonrpc — the JSON-RPC protocol version (always “2.0”)method — the method name (always “eth_protocolVersion”)params — parameters array (empty for this method)id — request identifier (number or string)jsonrpc — the JSON-RPC protocol version (“2.0”)id — the request identifier that matches the requestresult — the current Ethereum protocol version as a hexadecimal stringjsonrpc eth_protocolVersion method is used for:
Was this page helpful?