All articles
MEV·February 24, 2026·7 min read

Private Orderflow on Hyperliquid: How Vaults Win the Queue

Hyperliquid's L1 has no public mempool, but queue position and vault timing still create exploitable edges. We explain how private orderflow agreements and vault-level timing give certain market makers first-mover fills on large liquidation cascades.

Private orderflow on Hyperliquid is not a rumour — it is an engineering reality that flows directly from how the chain processes orders and how vaults are architected to interact with the matching engine. There is no public mempool to front-run, but that does not mean the queue is flat. It means the edge has moved one layer deeper, into connection latency, vault deposit mechanics, and the timing contracts that sophisticated participants negotiate outside the protocol.

What "Queue Position" Actually Means on Hyperliquid's L1

Hyperliquid runs a custom HyperBFT consensus with a single global order book maintained by validator nodes. Orders arrive at the sequencer, get assigned a slot in the consensus round, and are matched in the order they land. There is no auction, no priority gas, and no mempool anyone can read. The implication is that queue position is determined almost entirely by time of arrival at the sequencer — measured in milliseconds, sometimes microseconds.

In practice this means:

  • A co-located or well-peered API endpoint will consistently land 5–30 ms ahead of a retail connection routed through a consumer cloud region.
  • During a high-volatility event — think a liquidation cascade starting at 03:00 UTC — that latency gap translates directly into fill priority on the opposing side of forced selling.
  • The validator set is small and known. Participants who have established direct peering or who run infrastructure in the same PoP as the validators do not need to "front-run" in any traditional sense; they simply arrive first.

This is not illegal, it is not even novel — it is the same co-location arbitrage that has existed on CME since 2007. The difference is that on Hyperliquid, the barrier to entry is lower and the documentation is thinner.

How Private Orderflow Agreements Work in Practice

The term "private orderflow" on Hyperliquid typically refers to one of two structures. The first is a bilateral arrangement between a vault operator and a large block trader: the block trader routes their order through the vault's quoting engine rather than posting directly to the CLOB, in exchange for a rebate or preferential spread. The vault sees the order size before it hits the book, quotes around it, and captures the spread while routing the rest.

The second structure is more common and involves HLP (Hyperliquid's native vault) and maker-rebate relationships. Designated market makers who maintain minimum uptime and spread requirements receive rebates. More importantly, their quoting engines are built to be active at the top of the book immediately before large liquidation events — not because they know the liquidation is coming, but because their risk models are calibrated to hold exposure through the volatility where others pull quotes.

The result looks indistinguishable from private orderflow even when no explicit agreement exists. The vault that is reliably present at the exact moment of a liquidation spike is the one earning the fill.

Vault Timing and Liquidation Cascades

Hyperliquid's liquidation engine is deterministic and inspectable: when a position's margin ratio breaches the maintenance threshold, the engine closes it at the mark price, filling against the best available liquidity. If there is insufficient liquidity in the book, the HLP vault absorbs the residual.

This creates a predictable event sequence:

  1. A large position approaches the liquidation threshold as price moves.
  2. Smaller, tighter-risk positions in the same direction are liquidated first, each one nudging price further.
  3. The cascade accelerates as stops and liquidations reinforce each other.
  4. The dominant liquidity provider at that price level captures fills across the entire cascade at mark prices that are frequently several basis points dislocated from true fair value.

A vault structured to pre-position passive limit orders in the liquidation zone — rather than reactively chasing — will fill on the cascade without any special access. The engineering work is in the risk model that decides how much inventory to carry into a zone where liquidations are likely, and in the quote refresh logic that keeps orders alive through the volatility without getting adversely selected on the way in.

The numbers matter here. On a 10x leveraged ETH position of $500k notional, a 2 bp mark-price dislocation at fill is $1,000 in captured edge per event. Cascades involving $5–50M in forced liquidations are not rare on Hyperliquid during high-vol sessions.

The Role of Vault Deposits and Capital Efficiency

Hyperliquid vaults accept external deposits, which means the timing of capital inflow itself becomes a variable. A vault operator who knows a large external deposit is incoming — because they run the front-end or because the depositor has disclosed timing — can adjust their book size and quote aggressiveness accordingly before the capital settles.

More directly relevant: vault shares are priced off the vault's NAV at the time of deposit. A vault that is flat (or slightly short) heading into a liquidation cascade and then picks up fills on the long side will show a sharp NAV increase. Depositors who timed the entry before the event have instant paper gain. This is not front-running the vault; it is front-running the market event with the vault as vehicle. The line is thin and depends almost entirely on what the depositor knew and when.

From a technical standpoint, the vault's capital buffer also determines how aggressively it can bid into a cascade. Undercapitalized vaults pull quotes when margin gets tight; well-capitalized vaults widen their spreads slightly and stay in the book. The fill rate on forced liquidations correlates almost linearly with vault equity above a threshold, because that equity is what allows the quoting engine to hold inventory risk through the move.

Engineering the Edge: What a Production Vault Actually Looks Like

Building this in production, rather than describing it in theory, means solving several concrete problems simultaneously.

Latency stack: WebSocket subscription to the order book feed, an in-process risk model running on each tick, and outbound order submission — all on a box with sub-5 ms round-trip to Hyperliquid's API endpoint. TypeScript is workable; Rust shaves another 1–3 ms off the critical path in hot loops.

Liquidation zone modeling: You need a live view of open interest by price level, cross-referenced against the mark price distance to each cluster's liquidation threshold. This is derivable from public API data — Hyperliquid exposes user position snapshots — but the aggregation latency means your model is always slightly stale. The practical answer is to maintain a local in-memory position map and update it incrementally from the trade feed.

Inventory limits: The vault must not become a one-sided liquidation absorber at scale. Hard per-market exposure caps — enforced in the quoting engine, not just in a dashboard — prevent a cascade from turning your market-making book into a directional punt that runs away. A kill-switch that flattens inventory above a threshold is not optional; it is the difference between a strategy and a liability.

Spread calibration: At the moment of a cascade, raw bid-ask spread widens across the book. A vault that quotes too tight gets adversely selected; one that quotes too wide misses fills to a competitor. The right spread is a function of realized volatility over the last N seconds, the estimated size of the liquidation queue, and your current net inventory. These three numbers, combined in a simple linear model, produce a quote that is competitive without being reckless.

We build and operate this class of infrastructure across Hyperliquid, Solana, and Polymarket — the Hyperliquid services cover the full stack from quoting engines to vault monitoring dashboards. If you have examined the mechanics and want a production build rather than a prototype, the details are worth a proper conversation.


If you are ready to move from theory to a deployed vault strategy or liquidation-aware market-making engine, reach out directly — we scope and price these builds quickly.

Need a bot like this built?

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

Start a project
#MEV#Hyperliquid#Vaults#Market Making#Liquidations#Orderflow