eth_maxPriorityFeePerGas RPC Method

Retrieves the node's suggested priority fee (tip) per unit of gas in wei.

Parameters#

None

Result#

string - The suggested priority fee (tip) per unit of gas in wei, hex-encoded.

Code sample#

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

Response#

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x77359400"
}
Try It