eth_maxPriorityFeePerGas - Ethereum
The eth_maxPriorityFeePerGas method returns the hex value of the priority fee needed for a transaction to be included in a block. It helps estimate transaction costs in Ethereum-based applications
Supported Networks
Parameters
Request
https://go.getblock.io/<ACCESS-TOKEN>/curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/'
--header 'Content-Type: application/json'
--data-raw {
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": [],
"id": "getblock.io"
}
wscat -c wss://go.getblock.io/<ACCESS-TOKEN>/
# wait for connection and send the request body
{"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas",
"params": [],
"id": "getblock.io"}Response
Response Description
Use Case
Code Example
Last updated
Was this helpful?