Skip to main content

getRecentPrioritizationFees

Returns a list of prioritization fees from recent blocks.

Parameters

  • address: (array) [optional] - Array of account addresses (up to a maximum of 128 addresses), as base58 encoded strings.

Returns

result - An array of objects with the following fields:

  • prioritizationFee - The prioritization fee value.
  • slot - The slot number associated with the prioritization fee.

Request

curl https://solana-mainnet.infura.io/v3/<YOUR-API-KEY> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0", "id":1, "method":"getRecentPrioritizationFees", "params": [["CxELquR1gPP8wHe33gZ4QxqGB3sZ9RSwsJ2KshVewkFY"]]}'

Response

{
"jsonrpc": "2.0",
"result": [
{
"prioritizationFee": 0,
"slot": 372976610
},
...
{
"prioritizationFee": 0,
"slot": 372976759
}
],
"id": 1
}