The shift from transaction-based to intent-based DeFi is the most significant architectural change since automated market makers replaced order books. If you are building in DeFi and not thinking about intents, you are building for the past.
What Changed
Traditional DeFi transaction:
- User connects wallet
- User approves token spending
- User selects DEX, route, slippage tolerance
- User submits transaction and pays gas
- User hopes they do not get sandwiched by MEV bots
- Transaction executes (or fails, and user loses gas)
Intent-based DeFi:
- User signs an off-chain message: “I want to swap 1000 USDC for ETH”
- Solver network receives the intent
- Solvers compete in an auction to provide the best execution
- Winning solver executes the trade, pays gas, handles routing
- User receives ETH at the best available price with MEV protection
The user experience improvement is dramatic. No gas management, no route selection, no MEV exposure, no failed transactions. The complexity is abstracted to professional solvers who compete to deliver the best outcome.
The Major Implementations
UniswapX: Uniswap’s intent layer where fillers (solvers) compete via Dutch auctions to fill user orders. Integrates with Uniswap’s existing liquidity while also accessing off-chain and cross-chain sources. Now powers cross-chain swaps through the Across Protocol integration.
CoW Protocol: Pioneer of batch auctions for intent settlement. Multiple orders are batched together and settled at uniform clearing prices, enabling Coincidence of Wants (CoW) matching where two users wanting opposite trades can be matched directly without hitting an AMM. Hit $10B+ monthly volumes in 2025.
1inch Fusion / Fusion+: Extends 1inch’s aggregator model to intent-based execution. Resolvers (1inch’s term for solvers) compete to fill orders. Fusion+ adds cross-chain support across 13+ networks with true bridgeless swaps - the resolver handles the cross-chain complexity entirely.
Across Protocol: Intent-based cross-chain bridge where solvers front capital to complete transfers in seconds. Co-developed ERC-7683 with Uniswap to standardize cross-chain intents.
The Architecture Stack
User Layer: Sign intent (what you want)
|
Mempool Layer: Intent broadcast to solver network
|
Solver Layer: Competitive auction for best execution
|
Settlement: On-chain execution and verification
Each layer can be independently innovated. The mempool layer could be centralized (CoW’s batch auction), decentralized (Anoma’s gossip network), or hybrid (UniswapX’s exclusive filler period followed by open auction).
Why This Matters for Builders
If you are building a DEX, aggregator, or any DeFi frontend, intents change your architecture fundamentally:
- You become an order-flow source, not an execution engine. Your value is in capturing user intent, not routing trades.
- Solver integration replaces DEX aggregation. Instead of routing across AMMs yourself, you pass intents to solver networks.
- Cross-chain becomes native. ERC-7683 means your single-chain app can serve cross-chain users without building bridge integrations.
- Gas abstraction is free. Solvers pay gas, so your users never need native tokens for fees.
The question is no longer whether intents win - it is how fast the transition happens and who captures value in the new architecture.