Solana Tracker
Solana RPC/Methods

getRecentPrioritizationFees RPC Method

Description

Returns a list of prioritization fees from recent blocks

Parameters

  1. address (array, optional) - A collection of up to 128 Account addresses represented as base-58 encoded strings in an array

Returns

Returns an array of objects with the following fields:

  • prioritizationFee (integer) - The prioritization fee value
  • slot (integer) - The slot number associated with the prioritization fee

Code Examples

curl "https://rpc-mainnet.solanatracker.io/?api_key=YOUR_API_KEY_HERE" \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"jsonrpc": "2.0","id":1,"method":"getRecentPrioritizationFees","params":[]}'

On this page