zkLink Nova chain RPC Methods & API Documentation
eth_maxPriorityFeePerGas RPC method
eth_maxPriorityFeePerGas
represents the maximum amount a user is willing to pay per gas to incentivize miners to include their transaction. This fee is paid to miners and is also known as the "tip". It's measured in wei per gas.
The value of maxPriorityFeePerGas
is set by the user and can be adjusted to influence how quickly a transaction is mined. A higher maxPriorityFeePerGas
will make a transaction more attractive to miners, increasing the likelihood it will be included in the next block.
maxPriorityFeePerGas
is part of the total fee a user specifies for a transaction. The other part is baseFeePerGas
, which is burned and not given to miners.
Returns
Estimated priority fee per gas
- Hex string - The value of the priority fee needed to be included in a block.
🔌 To use eth_maxPriorityFeePerGas
you must be connected to a blockchain node.
Parameters
None
Request
POST https://<network>.chainnodes.org/YOUR-API-KEY
Example
- HTTPS POST Request with a JSON RPC call in the body
- Replace YOUR-API-KEY with the API key from your CHAINNODES.ORG Dashboard
- You can use a different supported network by replacing
zklink-nova-mainnet
curl https://zklink-nova-mainnet.chainnodes.org/YOUR-API-KEY \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_maxPriorityFeePerGas","params":[],"id":1}'
💡 Confusing?
Ask our experienced blockchain developers in Telegram
Body
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x59a5380"
}