Solana
Simulated route
$124.50 model
Example
Ethereum
Private bundle
$840.12 model
Example
BNB
Liquidation test
$45.20 model
Example
Base
Arbitrage test
$12.05 model
Example
Solana
Jito bundle
$310.00 model
Example
Polygon
Route check
$8.45 model
Example
Solana
Simulated route
$124.50 model
Example
Ethereum
Private bundle
$840.12 model
Example
BNB
Liquidation test
$45.20 model
Example
Base
Arbitrage test
$12.05 model
Example
Solana
Jito bundle
$310.00 model
Example
Polygon
Route check
$8.45 model
Example
TraderEvaluation 阶段⏱ 7 分钟阅读

Institutional MEV: Advanced Backrunning Playbook

**Answer first** — Backrunning is the dominant sustainable MEV strategy in 2026. It involves submitting a bundle immediately after a price-moving transaction, capturing the price d

Institutional MEV: Advanced Backrunning Playbook
FR
FRB 团队MEV 专家
最近更新
#Institutional#MEV#Backrunning#Strategy#Liquidity

Answer first — Backrunning is the dominant sustainable MEV strategy in 2026. It involves submitting a bundle immediately after a price-moving transaction, capturing the price discrepancy the large trade created without attacking the original trader. Executed correctly via private bundles, backrunning is profitable, replicable, and operationally defensible. This playbook covers the mechanics, tip sizing, bundle construction, and risk controls for systematic backrunning on Ethereum and Solana.

Mastery Path: Solana Mastery

Why Backrunning Has Replaced Sandwiching

In 2021–2023, sandwiching (frontrun + backrun bracketing a victim transaction) was the dominant public mempool strategy. In 2026, it has declined for structural reasons:

Block builder filtering — Flashbots and most major builders now filter explicit sandwich bundles targeting retail transactions. Submitting a sandwich bundle to a filtered relay results in rejection; submitting to unfiltered relays has lower inclusion probability because builders prefer to maintain relationships with the relay ecosystem.

Reduced public mempool targets — Approximately 85% of profitable Ethereum opportunities now route through private channels. The remaining 15% in the public mempool is largely composed of honeypots designed to drain naive sandwich bots.

Regulatory attention — several jurisdictions have begun scrutinizing front-running as a market manipulation issue. Backrunning, which improves price efficiency rather than harming specific users, is categorically different in both technical and regulatory terms.

Backrunning operates in the opposite direction: you wait for a large trade to move the market, then submit your corrective trade as the next transaction in the same block. You capture the price discrepancy the whale created — without touching the whale's transaction at all.

How Backrunning Works Mechanically

The trigger condition: A large swap on Uniswap V3 moves the ETH/USDC price by 0.3%. The price is now 0.3% higher than on Curve and 0.18% higher than on Balancer.

Your backrun bundle:

  1. Transaction A: Buy ETH on Curve at the old price
  2. Transaction B: Sell ETH on Uniswap at the new (higher) price

Both transactions execute atomically in the same block, immediately after the whale's transaction. You capture the spread. The whale is unharmed — you didn't touch their transaction at all.

Why atomicity is essential: If transaction A executes but the price on Uniswap moves before transaction B executes, you lose money. Private bundles guarantee both transactions land in the same block at the specified sequence. If either fails, neither executes and you pay nothing.

Bundle Construction for Backrunning

A well-constructed backrun bundle contains:

Position 0 (Anchor): The trigger transaction hash — included to ensure your bundle lands in the same block as the target, after the target. This is the "tail" position request.

Position 1: Your arbitrage leg buying the undervalued asset.

Position 2: Your arbitrage leg selling the overvalued asset.

Position 3 (Optional): A rebalancing transaction if your inventory requires it after the arb.

On Ethereum via Flashbots, bundles specify a target block and can optionally reference the hash of a transaction they must follow. This is the mechanism that guarantees your bundle is backrunning rather than frontrunning.

json
{
  "txs": ["<trigger_tx_hash_reference>", "<buy_tx_signed>", "<sell_tx_signed>"],
  "blockNumber": "0x...",
  "minTimestamp": 0,
  "maxTimestamp": 0,
  "revertingTxHashes": []
}

FRB Agent constructs this bundle format automatically when you configure a backrun strategy. You specify the trigger conditions (minimum swap size, token pairs, minimum spread), and FRB handles bundle construction and relay submission.

MEV Strategy Comparison (2026)

Strategy Mechanism Sustainability Success rate Network impact
Backrunning Follow whale, capture rebalance High High (private bundles) Beneficial — improves price efficiency
Sandwiching Bracket victim tx Low Declining (builder filters) Harmful — user pays slippage premium
Frontrunning PGA racing Very low Rare (92% opps private) Harmful — congestion, gas wars
Recursive arbitrage Multi-hop cross-venue High Medium-High Neutral — efficiency

Tip Sizing for Backrunning

Tip sizing is the most consequential tactical decision in backrunning. Too low and your bundle doesn't land. Too high and your margin disappears.

Baseline formula:

MaxTip = ExpectedProfit × 0.85

Pay at most 85% of your expected profit as a tip. The remaining 15% covers gas and provides your net margin. This leaves enough incentive for the builder while ensuring you're not paying to break even.

Dynamic tip adjustment: FRB's tip engine samples the last 20 winning bundle tips for your target block range and sets your tip at the 80th percentile. This means:

  • During quiet periods: tip is low, you win easily
  • During competitive periods: tip rises automatically to remain competitive
  • During congestion events: tip caps at your configured MaxTipETH to prevent runaway costs

Multi-relay tip strategy: When submitting to multiple relays, use the same tip on all of them. Different tips per relay creates inconsistency in which relay the builder prefers and can reduce effective inclusion probability.

Jito Backrunning on Solana

Solana backrunning via Jito follows the same logic but with different timing constraints. At 400ms block time, you have roughly 50ms to detect a trigger transaction, construct a bundle, and submit it — compared to several seconds on Ethereum.

Jito bundle tip mechanics: Tips go directly to the validator running Jito-modified software. The tip market is separate from the priority fee market. Effective tip sizing requires monitoring recent Jito block inclusions:

  • Quiet periods: 0.001–0.003 SOL tip is competitive
  • Active periods: 0.005–0.015 SOL typical
  • High-contention events (token launches): 0.02–0.05 SOL required for top-of-block inclusion

FRB's Solana tip engine adjusts based on recent inclusion data with a 30-second lookback window.

Identifying Backrun Opportunities

Profitable backrun targets share common characteristics:

Minimum swap size — Small swaps produce price impact too small to cover tip and gas costs. On Ethereum, most profitable backrun targets involve swaps of $50,000+ on low-liquidity pairs, or $200,000+ on high-liquidity pairs like ETH/USDC.

Venue asymmetry — The opportunity exists because the trigger trade moves the price on one venue but not others. The larger the spread across venues post-trade, the larger your potential profit.

Liquidation events — When a lending protocol liquidates a position, it executes a forced swap at potentially unfavorable prices. The resulting price discrepancy across DEXes is a reliable backrun target. See the liquidation monitoring patterns in Risk Management for MEV Bots.

Bridge completions — Cross-chain bridge finalizations create predictable price movements on the destination chain. If you can detect the bridge completion early (via event monitoring), the resulting price correction is a clean backrun.

Risk Controls Specific to Backrunning

Maximum staleness threshold — if the trigger transaction is more than 2 blocks old when you detect it, the price correction has likely already been captured by faster searchers. Set a staleness cutoff in FRB to avoid submitting bundles for stale opportunities.

Spread minimum — configure a minimum required spread (e.g., 0.15% after gas and tip) below which FRB won't submit. This prevents marginal submissions that could be profitable in theory but lose money once all costs are counted.

Inventory limits — backrunning requires holding inventory in the assets you arbitrage. Cap your per-pair inventory exposure and use the session budget controls to prevent any single opportunity from overcommitting capital. See Gas & Budget Caps Guide.

State conflict handling — if another backrunner captures the same opportunity before your bundle lands, your bundle should revert cleanly. Configure RevertOnStateMismatch: true in FRB to ensure failed backruns don't execute partial legs.

FAQ

Is MEV backrunning legal? Backrunning is legal in all major jurisdictions as of 2026. It improves market efficiency by correcting price discrepancies without harming the original trader. It's categorically different from frontrunning or sandwiching, which directly extract value from specific users. Consult your local legal framework for your specific situation, but the mainstream academic and regulatory view treats backrunning as a legitimate market-making activity.

Do I need a specialized wallet? No. FRB works with standard EVM wallets (MetaMask, Rabby, Ledger) and Solana wallets (Phantom, Solflare). The wallet signs bundle transactions locally — FRB handles the relay submission without exposing keys.

How much capital do I need to start backrunning? On Ethereum, most profitable backrun opportunities require $10,000–$50,000 in inventory to capture meaningful spreads on moderate-liquidity pairs. On Solana, the capital requirement is lower ($1,000–$10,000) but the competition is higher. Start with canary sizing (10% of intended allocation) and scale after documenting consistent results.

Can I run backrunning alongside sniping strategies? Yes. FRB supports multiple simultaneous strategy profiles — a backrunning profile on Ethereum EVM can run alongside a filtered sniping profile on Solana Pump.fun from the same dashboard. Configure separate per-strategy budget caps to prevent one strategy from consuming the other's gas allocation.

Submit backrun bundles via Jito and Flashbots with FRB Agent — atomic execution without the public-mempool tax.

阅读后的下一步

启动 FRB 控制台

连接您的钱包,通过 6 位 PIN 码配对节点客户端,然后分配上述合约。

需要安装程序?

下载并验证 FRB

获取最新安装程序,将 SHA‑256 与 Releases 对比,然后按照安全启动清单操作。

查看 Releases 和 SHA‑256
分享𝕏 推特in LinkedInf Facebook

相关文章

延伸阅读与工具

讨论

暂无笔记。添加第一条观察,或在以下平台与团队分享链接 X (@MCFRB).

留下笔记
笔记仅存储在您的本地浏览器中。

掌控脉动

扩展您的执行能力

通过探索完整的 FRB 工具包来最大化您的优势。从机构级遥测到随时可导出的策略脚本。

CTA

安装 FRB 代理

下载经过验证的 Windows 版本并检查 SHA-256。

CTA

阅读快速入门文档

与运营和合规团队分享 15 分钟的设置流程。

CTA

启动控制面板

配对节点客户端并实时监控 Ops Pulse。

准备进化了吗?

迈出下一步

无论您是在验证终端安全,还是在启动您的第一个交易包,FRB 之旅都从这里开始。

推荐

安装 FRB 代理

安全的 Windows 版本,通过 SHA-256 验证以确保最高完整性。

推荐

阅读快速入门文档

15 分钟掌握设置流程:从钱包配对到第一个交易包。

推荐

启动控制面板

实时监控您的 Ops Pulse 并管理交易路由。