← Avalanche C-Chain overview
Avalanche C-Chain · eth
eth_gasPrice
Returns the current price per gas in wei.
Result
Gas price
Schema
{
"type": "string",
"title": "Gas price",
"pattern": "^0x(0|[1-9a-f][0-9a-f]*)$"
}Example request
Endpoint: https://your-avax-node.azxa.io
JSON-RPC
{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_gasPrice",
"params": []
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x3e8"
}cURL
curl -X POST https://your-avax-node.azxa.io \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"eth_gasPrice","params":[]}'