This API is available on all Shared RPC plans and can also be enabled on Dedicated Nodes! View Packages
Understanding Priority Fees on Solana
Priority fees are optional fees that you can add to your Solana transactions to incentivize block producers (leaders) to include your transaction in the next block. While including a priority fee is recommended, determining the optimal amount can be challenging. Let's explore how to effectively use priority fees with Solana Tracker's Priority Fee API.
What Are Priority Fees?
Priority fees are priced in micro-lamports per compute unit. They serve as an additional incentive for block producers to prioritize your transaction. Think of it as a "tip" to get your transaction processed faster.
The Priority Fee API
Solana Tracker's getPriorityFeeEstimate
RPC method provides fee recommendations based on historical data, considering both global and local fee markets. This helps you make informed decisions about priority fees for your transactions.
Using the API
You can use the API in two ways:
- With a Serialized Transaction
- With Account Keys
Here's how to implement it in JavaScript:
Advanced Features
Empty Slot Evaluation
The evaluateEmptySlotAsZero
flag helps optimize fee calculations for accounts with sparse transaction history:
Priority Levels
The API supports different priority levels to match your transaction urgency:
- Min (0th percentile)
- Low (25th percentile)
- Medium (50th percentile)
- High (75th percentile)
- VeryHigh (95th percentile)
- UnsafeMax (100th percentile)
Here's an example request for all priority levels:
Complete Transaction Example
Here's a full example of sending a transaction with priority fees:
Understanding the Fee Calculation
The Priority Fee API calculates fees based on both global and local market conditions:
This calculation considers:
- Global fee market: Percentile of fees paid across all transactions
- Local fee market: Percentile of fees paid for transactions involving specific accounts
- Lookback period: Last 150 slots by default
By using Solana Tracker's Priority Fee API, you can optimize your transaction fees and improve the likelihood of quick transaction processing on the Solana network.
We have to thank Helius for coding the Priority Fee API and providing the code for free on Github, this API is hosted on our network of RPC's.