eth_maxPriorityFeePerGas - Ethereum Mainnet


Summary

Returns a fee per gas that is an estimate of how much you can pay as a priority fee, or 'tip', to get a transaction included in the current block.

Parameters

This method does not accept any parameters.

Code Examples

eth_maxPriorityFeePerGas request
curl https://mainnet.gateway.tenderly.co/$TENDERLY_NODE_ACCESS_KEY \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{
        "jsonrpc": "2.0",
        "id": 0,
        "method": "eth_maxPriorityFeePerGas"
    }'
eth_maxPriorityFeePerGas response
{
  "id": 0,
  "jsonrpc": "2.0",
  "result": "0x3b9aca00"
}