Skip to main content

eth_gasPrice

Returns the current price per gas in wei.

Params

(0)

Result

(Gas price)
string
Match pattern:
^0x(0|[1-9a-f][0-9a-f]*)$

Example

Request

await window.ethereum.request({
"method": "eth_gasPrice",
"params": []
});

Result

"0x3e8"

Request

await window.ethereum.request({
"method": "eth_gasPrice",
"params": []
});