eth_maxPriorityFeePerGas - Base

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

none


Returns

QUANTITY - The estimated priority fee per gas.


Example

Request

curl --request POST \
     --url https://base-testnet.unifra.io/v1/health \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "jsonrpc": "2.0",
  "method": "eth_maxPriorityFeePerGas",
  "id": 1
}
'

Result

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x59682f00"
}
Language
Click Try It! to start a request and see the response here!