eth_gasPrice

Returns the current price per gas in weibars.

Reference: Here

Parameters:

None

Returned Value:

String - hex string value representing an integer of the current price per gas in weibars.

{
    "jsonrpc":"2.0",
    "id":73,
    "result":"0x1484a8c9400"//1,410,000,000,000 weibars
} 
curl https://mainnet.hedera.validationcloud.io/v1/<YOUR_API_KEY_HERE> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":0}'

Last updated