All articles
MEV·January 9, 2026·6 min read

Jito Bundle Tips: What You Actually Pay for MEV Priority

A detailed cost breakdown of Jito tip markets in 2025 — how tip auctions work, median vs 99th-percentile tip sizes across block types, and how to model your all-in cost per bundle before deploying a searcher strategy on Solana.

Jito bundle tips are one of those costs that look negligible on a spreadsheet and then quietly eat your edge in production. Understanding what you actually pay for MEV priority on Solana means separating the tip from the priority fee, knowing how the tip auction clears, and modeling both components against your expected gross profit — before you submit a single bundle.

How the Jito Tip Auction Works

Jito's block engine runs a first-price sealed-bid auction for bundle inclusion. You submit a bundle to a block engine endpoint (or directly to a validator running the Jito-Solana client) along with a tip transfer — SOL sent to one of the nine Jito tip accounts. The block engine orders bundles by tip size and packs the highest-paying ones into the block first. There is no refund if you overbid; the full tip transfers unconditionally once the bundle lands.

The tip is separate from the transaction priority fee (computeUnitPrice × compute units consumed). Both are paid on inclusion. The priority fee goes to the validator as part of normal fee mechanics. The tip goes to the Jito MEV distribution contract, which routes 95% back to stakers and 5% to the Jito DAO. From your cost model's perspective it does not matter where the tip lands — you are paying both.

Tip Size Distributions in Practice (2025)

Tip requirements are volatile and block-type-dependent. Based on on-chain data from tip-account transfers through Q1–Q2 2025, the rough distribution looks like this:

  • Median tip (quiet blocks): 0.0001–0.0003 SOL (~$0.015–$0.045 at $150/SOL)
  • 75th percentile: 0.001–0.003 SOL
  • 95th percentile: 0.005–0.015 SOL
  • 99th percentile (high-contention events): 0.05–0.25 SOL or higher

The spread between median and 99th percentile is two orders of magnitude. Token launches, large liquidation cascades, and NFT mint events collapse the distribution toward the top — during a contested Pump.fun launch, landing in block 1 can require a tip north of 0.1 SOL just to beat competing bundles. If your gross profit on a snipe is 0.05 SOL, that is a negative expected value trade at 99th-percentile tip levels.

The practical implication: tip size should be a dynamic input, not a static config value. A useful heuristic is to read recent tip-account activity on-chain and calibrate your bid to the current block environment rather than hardcoding a number from a week-old backtest.

Modeling All-In Cost Per Bundle

For any bundle strategy, the correct cost model is:

all_in_cost = tip + (compute_units × computeUnitPrice) + base_fees

Where base_fees is 5,000 lamports per signature per transaction in the bundle. A three-transaction bundle with two signers each has six signatures, so 30,000 lamports in base fees — negligible but worth tracking when you are running volume.

For a Solana MEV and arbitrage bot, the priority fee component tends to dominate on high-CU paths (complex routing, multiple DEX hops), while the tip dominates on low-CU but high-contention paths (simple swaps fighting many other bundles). Calibrating computeUnitPrice separately from the tip matters: setting an extremely high compute price burns SOL on the fee side without improving your position in the Jito tip queue.

A useful sanity check before deploying any strategy: at what gross profit per opportunity does the strategy break even at 75th-percentile tip costs? At 95th-percentile? If the strategy is only profitable below the 75th percentile, you have a thin edge that will get ground down during any period of elevated on-chain activity.

Bundle Failure Modes and Their Cost Implications

Bundles can fail in ways that are not always obvious from the logs:

Simulation failure before submission — Jito's block engine simulates bundles before forwarding them. If a transaction in your bundle reverts in simulation, the bundle is dropped with no tip charged. This is the correct failure mode and costs you only RPC simulation time.

Stale state on inclusion — Your bundle passes simulation at submission time, but by the time the block engine slots it, the on-chain state has changed (someone else's transaction modified the same accounts). The bundle reverts on-chain. In this case the tip transfer transaction itself still executes — you pay the tip even on revert. This is the costly failure mode. Strategies that rely on very specific pre-states (exact token reserve levels, exact slot conditions) have higher revert rates and therefore higher effective tip costs per successful execution.

Expiry — Bundles have a slot expiry window. If your bundle is not included within the expiry, it is dropped at no cost. This is not a cost problem but a latency problem; managing re-submission logic so you are not missing windows matters for capture rate.

Tip Strategy Across Different Strategy Types

Not all MEV strategies have the same tip sensitivity:

Atomic cross-DEX arbitrage — Profit is deterministic given pool states. You can compute exact gross profit before submission and set tip as a percentage of expected profit (commonly 50–80% of gross is paid as tip in competitive arb). The residual margin after tip is thin; latency to submission is the main differentiator.

Backrunning large swaps — The target transaction is known (you are reacting to a detected pending trade). Tip competition here is high because other searchers see the same target. Expect to pay toward the 90th–95th percentile of current tip levels to reliably land the backrun.

Sniper strategies — Tip competition is event-driven and spiky. During a quiet window, median tips suffice. During a contested launch, tips spike sharply. A Solana sniper bot needs dynamic tip logic that can ramp up during detected launch events and pull back between them, or the average tip cost across all attempts will significantly exceed the median.

Multi-wallet coordinated bundles — Larger bundles (more transactions) are more expensive in base fees and compute, but the tip is a single bundle-level cost. For volume coordination strategies this actually improves tip efficiency per action compared to submitting many individual bundles.

What This Means Before You Deploy

Run the numbers at multiple tip percentiles, not just median. If your strategy is only profitable under the assumption that you always pay median tips, it is not a deployable strategy — it is an optimistic backtest. The periods when tip costs spike are often the same periods when on-chain activity is elevated and your gross profit opportunities are real; those are the moments your cost model needs to hold up.

Track your actual tip-to-gross-profit ratio on a rolling basis in production. If it creeps above 70% consistently, either the strategy edge is compressing (more competition) or your tip calibration is too aggressive. Both are signals worth acting on quickly.


If you are building or refining a searcher strategy on Solana and want the infrastructure and tip-calibration logic done right from the start, get in touch — we scope and ship these end to end.

Need a bot like this built?

We design, build and run trading bots on Solana, Hyperliquid and Polymarket.

Start a project
#MEV#Solana#Jito#searcher#arbitrage#priority fees#trading bots