Intent-based trading is a shift in DeFi trade execution from “how” (user specifies the exact execution path) to “what” (user declares the desired outcome, leaving execution details to competitive specialists). Traditional AMM-based DEX trading requires users to: specify the exact pool or route, set gas prices, manage slippage parameters, and monitor execution — all while being vulnerable to MEV sandwich attacks because their pending transactions are publicly visible in the mempool. Intent-based trading replaces this with a declarative model: the user signs a message expressing their intent (minimum tokens out, maximum tokens in, deadline) and broadcasts it to an off-chain network of solvers (also called fillers or resolvers) who compete to find the optimal execution path — splitting across multiple DEXes, matching with counter-party intents (Coincidence of Wants), bridging cross-chain, or using private liquidity — and submit the winning execution on-chain. The competitive solver market drives better prices than any single AMM route, and the off-chain intent + solver model eliminates public mempool exposure (no MEV sandwich attacks). Key protocols: CoW Protocol (batch auction + Coincidence of Wants), UniswapX (off-chain limit orders + solver auction), 1inch Fusion (resolver auction), Across Protocol (intent-based bridging).
Key Facts
- Core shift: User declares WHAT to achieve; solvers determine HOW
- MEV protection: Off-chain intents → not in public mempool → not sandwichable
- Coincidence of Wants (CoW): Two users with opposite intents → direct P2P match → no AMM fee
- Solver competition: Multiple solvers compete → best price wins → user gets better execution
- Cross-chain intents: Across Protocol: user declares “I want ETH on Arbitrum for USDC on mainnet” → relayer fills instantly
- Key protocols (2024): CoW Protocol, UniswapX, 1inch Fusion, Across Protocol, SUAVE (Flashbots)
- Volume (2024): Intent-based trades: 15-25% of Ethereum DEX volume estimated (growing rapidly)
- Solver economics: Solvers earn: spread between best execution price and user’s minimum price
Intent Architecture
The protocol is built around the following components.
1. User Creates Intent
Instead of: “call Uniswap v3 USDC/ETH pool with 100 USDC input, deadline block 12345, min output 0.032 ETH, price impact 0.5%”
Intent: “I want at least 0.032 ETH for 100 USDC, valid until block 12345, signed with my wallet key”
The intent: is an off-chain signed message (not a blockchain transaction). No gas required to create an intent; no mempool exposure; no sandwich attack surface.
2. Intent Broadcast to Solvers
Intent: sent to off-chain relay/network where registered solvers monitor for opportunities.
Solvers: scan incoming intents against:
- AMM pools across all DEXes (Uniswap, Curve, Balancer, SushiSwap, etc.)
- Other pending intents (Coincidence of Wants matching)
- Private liquidity (market maker inventory)
- Cross-chain opportunities
- MEV-extracted backrun opportunities (that don’t harm the user)
3. Solver Competition
Multiple solvers: simultaneously attempt to find the best execution path.
Best execution = highest output for the user (vs. user’s stated minimum).
Solvers: submit competing proposals in the off-chain solver auction.
4. Winning Solver Submits On-Chain
Winning solver: submits on-chain transaction that:
- Proves the intent is satisfied (user gets ≥ their minimum amount)
- Includes the execution path used (AMM calls, fills, etc.)
- Pays any on-chain gas costs (solver pays; user: doesn’t need ETH in some designs)
Solver earns: the spread between best achievable price and user’s stated minimum.
Coincidence of Wants (CoW)
The most capital-efficient form of intent settlement:
Example:
- Alice’s intent: “sell 1 ETH, want ≥ 2,900 USDC”
- Bob’s intent: “sell 2,900 USDC, want ≥ 0.95 ETH”
CoW match: Alice → Bob (directly); Bob → Alice (directly)
- No AMM pool needed
- No swap fee (0.3% on Uniswap waived)
- Alice: gets 2,900 USDC; Bob: gets 1 ETH
- Both: better than market rate (no LP fee; no price impact)
CoW Protocol specializes in finding and matching CoWs: batch all intents in a time window → check for opposite-direction matches → settle matching pairs directly → route remaining to AMM.
Intent-Based Trading vs. AMM Trading
| Feature | AMM (Uniswap v3) | Intent-Based (CoW, UniswapX) |
|---|---|---|
| User specifies | Exact pool + route | Desired outcome only |
| MEV sandwich risk | High | Zero (off-chain intent; private) |
| Execution quality | One path (specified) | Best path (solver competition) |
| LP fees paid | Always (0.05-1%) | Sometimes (only if AMM used; CoW: often not) |
| Gas requirement | Always ETH | Optional (solver can sponsor) |
| Cross-chain | No (single chain) | Yes (intent-based bridging) |
| Latency | Immediate (on-chain) | Slight delay (solver auction) |
| Best for | Small, frequent swaps | Large swaps; MEV-sensitive users |
Major Intent-Based Protocols
The following sections cover this in detail.
CoW Protocol (CoW Swap)
Batch auction model: intents collected in time window → solver batch → CoW matches → AMM routing for remainder. MEV-resistant by design (batch clearing price: immune to sandwich attacks).
UniswapX
- User: signs ERC-712 order (limit-order-style intent)
- Fillers: compete to fill the order
- Filler: executes on-chain via Uniswap’s exclusive fill contract
- Better pricing than direct Uniswap v3 (filler competition + cross-route optimization)
- Dutch auction: user’s minimum price: starts high; decreases over time → guarantees fill within deadline
- MEV protected: off-chain; private until fill
1inch Fusion
Resolver auction: resolvers bid for exclusive fill rights on user orders; MEV protection via private order flow.
Across Protocol
- User’s intent: “I want 1 ETH on Arbitrum; I’ll give 1,005 USDC on mainnet”
- Relayer: fills instantly: sends 1 ETH from their own Arbitrum inventory
- Relayer: reimbursed via canonical bridge + small fee after ~2 hours
- User: receives: near-instant cross-chain fill without waiting for canonical bridge (7-day Optimism withdrawal, etc.)
- Intent architecture: enables: fast bridging with capital efficiency (relayers: provide float; reimbursed later)
SUAVE (Flashbots)
- Chain-agnostic
- Decentralized solver network (TEE-based)
- Long-term: infrastructure layer for intents across all chains
Why Intents Are Growing
The following sections cover this in detail.
UX Drivers
- No gas estimation required (solver handles it)
- Cross-chain: single intent covers multi-chain execution
Economic Drivers
- MEV protection: valuable for large traders (0.5-2% MEV loss on large AMM trades)
- CoW matching: eliminates LP fees for P2P-matchable trades
Developer Drivers
- Solver SDKs: available (CoW, UniswapX, Across: have solver APIs)
- Growing solver ecosystem: more competition → better user prices over time
Related Terms
- CoW Swap
- 1inch
- MEV (Maximal Extractable Value)
- Sandwich Attack
- MEV-Blocker
- Across Protocol
- Account Abstraction
Sources
- “Intents: A Taxonomy and Framework for Intent-Based DeFi Architectures” — Paradigm Research / Essential Protocol (2023). Foundational framework paper defining “intents” in the DeFi context — distinguishing between: explicit intents (exact output amount specified), soft intents (minimum output; surplus to solver), and compositional intents (multi-step: bridge + swap); analyzing: solver architecture requirements, trust assumptions (how does user know solver fulfilled intent honestly?), and the game theory of solver competition (what keeps solvers honest and competitive).
- “Coincidence of Wants: Empirical Analysis of P2P Matching in CoW Protocol” — CoW DAO / Blockworks Research (2023). Empirical study of how often Coincidence of Wants (CoW) matching occurs in CoW Protocol batches — measuring: CoW match rate by token pair and batch size, capital savings from CoW matches (LP fees avoided), price improvement from CoW vs. direct AMM comparison, and how batch size affects CoW frequency (larger batches → more matching opportunities → better CoW rates).
- “UniswapX: Design and Economics of Off-Chain Order Flow Auctions” — Uniswap Labs Engineering (2023). Technical analysis of UniswapX — Uniswap’s intent-based order book launched 2023 — including the Dutch auction price decay mechanism (starting price: favorable to user; decays over time until filler accepts), the on-chain settlement contract, the exclusive fill window design, and whether UniswapX cannibilizes Uniswap v3/v4 LP revenue (partial: yes; some UniswapX fillers use v3 liquidity; others: private inventory).
- “Across Protocol: Intent-Based Cross-Chain Bridging and the UMA Optimistic Oracle” — Risk Labs / Across Protocol Whitepaper (2023). Technical analysis of Across Protocol’s intent-based bridging architecture — how users express cross-chain bridging intents (desired output on destination chain; tolerance for fee), how relayers provide instant fills from their own capital (earning the bridge fee), how the UMA optimistic oracle system validates relayer claims for reimbursement, and why this architecture achieves near-instant bridges without security compromises.
- “The Intent Market: Solver Economics, Competition, and Centralization Risk” — Frontier Research / Solver Ecosystem Analysis (2024). Analysis of the economics and competitive structure of the emerging solver/filler market across intent-based protocols — measuring solver market concentration (Herfindahl index), capital requirements to be competitive, whether intent-based protocols face the same centralization risks as PBS block builders, and what mechanisms different protocols use to ensure solver competition.