getRecentPrioritizationFees

Returns a list of prioritization fees from recent blocks. Currently, a node's prioritization-fee cache stores data from up to 150 blocks.

POST Category: transaction

Example Request

curl "https://eu.fluxrpc.com?key=<your-API-key>" -s -X POST -H "Content-Type: application/json" -d '
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getRecentPrioritizationFees",
  "params": [["CxELquR1gPP8wHe33gZ4QxqGB3sZ9RSwsJ2KshVewkFY"]]
}'

Example Response

{
  "jsonrpc": "2.0",
  "result": [
    { "slot": 348125, "prioritizationFee": 0 },
    { "slot": 348126, "prioritizationFee": 1000 }
  ],
  "id": 1
}

← Back to all methods