Skip to main content

eth_maxPriorityFeePerGas

Returns the current recommended priority fee per gas on Immutable for EIP-1559 transactions.

Use Cases#

  • EIP-1559 transactions - Set appropriate priority fees
  • Transaction acceleration - Calculate tips for faster inclusion
  • Gas optimization - Balance speed vs cost for Web3 gaming (Gods Unchained, RavenQuest), gaming NFTs with enforced royalties, and cross-chain game assets

Parameters#

This method accepts no parameters.

Request#

{
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": [],
"id": 1
}

Code Examples#

curl -X POST https://api-immutable-zkevm-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": [],
"id": 1
}'