Skip to main content

eth_maxPriorityFeePerGas

Overview

The 'eth_maxPriorityFeePerGas' method returns an estimate of how much priority fee, in wei, you need to be included in a block.

Request

curl --request POST \
--url https://ethereum-mainnet-geth-archive.node.coinapi.io \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'X-CoinAPI-Key: 73034021-THIS-IS-SAMPLE-KEY' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"method": "eth_maxPriorityFeePerGas"
}'

Request Parameters

  • None.

Response

{
"jsonrpc": "2.0",
"id": 1,
"result": "0x2b4ae54"
}
  • result: A hexadecimal value of the priority fee, in wei, needed to be included in a block.