Skip to main content
EVM

eth_maxPriorityFeePerGas

Summary: Get current max priority fee per gas

This request returns an estimate of how much priority fee, in wei, you should pay to get a transaction included in a block.

Parameters

This method doesn't accept any parameters.

Returns

eth_maxPriorityFeePerGasResponse string

Hex-encoded unsigned integer.

Pattern: ^0x([1-9a-f]+[0-9a-f]*|0)$

Customize request
Parameter
Value
Request
curl https://linea-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": [],
"id": 1
}'
Example response
{
"id": 1,
"jsonrpc": "2.0",
"result": "0x3b9aca00"
}