Skip to main content
Standard Ethereum JSON-RPC API

eth_gasPrice

Returns the current gas price in wei.

Parameters

None.

Returns

Hexadecimal value of the current gas price in wei.

Example

Request
curl https://rpc.linea.build \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_gasPrice",
"params": [],
"id": 1
}'
Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x27f6780"
}

Was this page helpful?