Searcher

A searcher is a technically sophisticated participant in the MEV (Maximal Extractable Value) supply chain who runs automated algorithms to continuously scan pending blockchain transactions for profitable transaction ordering opportunities — including arbitrage across DEXs, sandwich attacks on large swaps, liquidation of undercollateralized DeFi positions, and backrunning large trades — packages the profitable sequence into a “bundle” (a group of transactions that must execute atomically in a specific order), and submits that bundle via a private relay (most commonly Flashbots) directly to block builders, bypassing the public mempool to avoid being front-run by competing searchers. Searchers are the intelligence layer of the MEV supply chain: they find the value, block builders sequence and include it, and validators propose the block — with MEV fees flowing up from searcher to builder to validator, minus the Flashbots relay cut.


The MEV Supply Chain

“`

Public Mempool / DEX Trades

Searcher

(finds profitable opportunity, constructs bundle)

Private Relay (Flashbots)

(bundles submitted; no frontrunning possible)

Block Builder

(selects highest-value combination of bundles + txs)

Validator / Block Proposer

(includes block via MEV-Boost; receives bid from builder)

Finalized Block

“`


What Searchers Look For

1. DEX Arbitrage

“`

Token A: $1.00 on Uniswap, $1.002 on SushiSwap

Searcher: Buy A on Uniswap, sell A on SushiSwap

Profit: ~$0.002 per A (minus gas + relay fee)

Effect: Prices converge → AMMs stay in sync

“`

Pure arbitrage is generally considered beneficial — it improves price efficiency across DeFi.

2. Liquidations

“`

Undercollateralized position detected →

Searcher submits liquidation transaction →

Wins bonus (e.g., 8% of $100K = $8K)

“`

Liquidation MEV is beneficial to the protocol (keeps bad debt minimal) but costly for the liquidated user (liquidation penalty).

3. Sandwich Attacks

“`

  1. Searcher frontrun tx: buy token before victim’s large buy → price rises
  2. Victim’s swap executes at worse price (higher slippage)
  3. Searcher backrun tx: sell at now-higher price → profit from spread

“`

Sandwich attacks extract value from regular users without providing any economic benefit. They are widely considered predatory and are the primary motivation for private mempools and slippage protection tools.

4. Backrunning

“`

Large DEX swap causes price to move →

Searcher immediately arbitrages the resulting imbalance in the next tx →

DEX price restored to equilibrium

“`

Backrunning is effectively arbitrage triggered by a specific event.

5. JIT Liquidity


Flashbots and Private Submission

Before Flashbots, MEV competition happened via priority gas auctions (PGA) in the public mempool — searchers would repeatedly increase gas to front-run each other, wasting ETH on failed transactions and clogging the network.

Flashbots introduced:

  • Private mempool: Bundles submitted directly to miners/builders, not broadcast publicly
  • No failed transactions: If a bundle can’t execute profitably, it simply isn’t included — no gas wasted
  • Atomic bundles: All transactions in a bundle must execute in order or the entire bundle reverts
  • Sealed-bid competition: Searchers submit their best price to builders; no gas auction arms race

Post-Merge, Flashbots operates as:

  • mev-share: Protocol for searchers to receive hints about pending transactions and bid for inclusion rights
  • MEV-Boost: Middleware allowing validators to accept blocks from competitive builder market

Economics

Searcher economics are highly competitive:

  • Competition: Hundreds of searchers monitor the same mempool; most MEV opportunities are captured within 1–2 blocks
  • Latency: Milliseconds of latency advantage matter; professional searchers co-locate servers near builders
  • Capital requirements: Some strategies require large capital (arbitrage needs inventory; sandwich requires float)
  • Gas optimization: Searchers obsessively optimize smart contract bytecode to minimize gas, as gas savings directly become profit

Typical MEV distribution (Ethereum, 2023–2024):

  • Arbitrage MEV: ~60–70% of total
  • Liquidation MEV: ~15–20%
  • Sandwich/other: ~15–20%

Total MEV extracted on Ethereum: estimated $1–5B+ cumulatively since The Merge.


Searcher → Builder → Validator Value Flow

“`

Searcher finds $10,000 arbitrage opportunity

└── Gas cost: ~$500

└── Relay fee: ~$200

└── Bid to builder: e.g., $8,000 (to outcompete other bundles)

└── Searcher profit: ~$1,300

Builder receives $8,000 bid + other bundles

└── Packages optimal block

└── Bids $7,500 to validator (keeping ~$500)

Validator (via MEV-Boost) receives $7,500 additional ETH

└── Earns on top of base block reward (~0.1–2 ETH extra per block)

“`

The validator captures most of the MEV value in equilibrium (competitive builder market).


History

  • 2020: “MEV” term popularized by Flashbots in the paper “Flash Boys 2.0” (originally Phil Daian et al.)
  • January 2021: Flashbots Alpha launches; private bundle submission begins
  • 2021: Priority gas auctions decline dramatically as Flashbots adoption grows
  • September 2022: The Merge; MEV-Boost launches; validators begin outsourcing block production to builders
  • 2022–2023: MEV supply chain matures; professional searcher firms (identified via on-chain analysis) extract majority of value
  • 2023–2024: Searcher competition intensifies for L2s (Arbitrum, Base); cross-domain MEV becomes new frontier
  • 2025: Intent-based architectures (CoW Protocol, UniswapX) aim to reduce sandwich MEV by batching user orders

See Also