Glossary

Concentrated Liquidity

Concentrated liquidity lets DEX liquidity providers allocate capital within a specific price range, improving capital efficiency over full-range positions.

Key Takeaways

  • Concentrated liquidity allows liquidity providers to deposit capital within a custom price range instead of across all prices from zero to infinity. This can deliver up to 4,000x greater capital efficiency compared to full-range AMM positions.
  • The tradeoff is amplified impermanent loss: if the market price moves outside the chosen range, the position earns zero fees and holds 100% of the less valuable token. Active management or automated vault protocols are often required.
  • Pioneered by Uniswap V3 in May 2021, concentrated liquidity is now the dominant DEX design pattern, adopted by PancakeSwap V3, SushiSwap V3, and extended with hooks in Uniswap V4.

What Is Concentrated Liquidity?

Concentrated liquidity is a mechanism for concentrated liquidity market makers that lets liquidity providers (LPs) allocate their capital within a specific price range rather than distributing it uniformly across the entire price curve. Instead of providing liquidity from price zero to infinity, an LP chooses a lower bound and an upper bound. Their capital only participates in trades that occur within that range.

The concept was introduced by Uniswap V3, which launched on May 5, 2021. Earlier AMM designs like Uniswap V2 used a constant product formula (x × y = k) that spread liquidity uniformly. This was simple but extremely wasteful: in the Uniswap V2 DAI/USDC pool, roughly 0.50% of the total capital was actually utilized for trades between $0.99 and $1.01, the range where virtually all volume occurred. The remaining 99.5% of deposited capital sat idle.

Concentrated liquidity solves this by letting LPs focus their capital where it matters. A position concentrated into a narrow range provides far greater depth at those prices, translating to higher fee revenue per dollar deposited.

How It Works

Concentrated liquidity discretizes the continuous price space into units called ticks. Each tick index i maps to a specific price:

// Tick-to-price formula
price(i) = 1.0001 ^ i

// Each tick represents a 0.01% (1 basis point) price increment
// Full tick range: -887,272 to +887,272

// Internally, prices are stored as sqrt(price) in Q64.96 fixed-point
sqrtPriceX96 = sqrt(price) * 2^96

When an LP creates a position, they select a lower tick and an upper tick defining their price range. Their capital is deployed only within those bounds:

  1. The LP chooses a price range (e.g., $1,800 to $2,200 for an ETH/USDC pair) and deposits tokens
  2. While the current market price is within the range, the position is active and earns a proportional share of trading fees
  3. If the price moves above the upper bound, the position converts entirely to the lower-value token and earns no fees
  4. If the price moves below the lower bound, the position converts entirely to the higher-value token and earns no fees
  5. The LP can withdraw, adjust, or create new positions at any time

Tick Spacing and Fee Tiers

Not every tick can serve as a position boundary. Tick spacing determines which ticks are initializable: only ticks whose index is divisible by the spacing value can be used. Tick spacing is tied directly to the pool's fee tier, balancing granularity against gas costs. Each time a swap crosses a tick boundary, the protocol must update active liquidity, which consumes gas. Wider spacing means fewer tick crossings per swap.

Fee TierTick SpacingPrice StepIntended Pairs
0.01%1~0.01%Very stable pairs
0.05%10~0.10%Stablecoin pairs (USDC/DAI)
0.30%60~0.60%Standard pairs (ETH/USDC)
1.00%200~2.02%Exotic or volatile pairs

The 0.01% fee tier was not part of the original V3 launch. It was added through Uniswap governance in November 2021 to support highly correlated pairs that need finer granularity.

Capital Efficiency Math

The capital efficiency ratio of a concentrated position versus a full-range V2 position is determined by the width of the chosen range:

// Capital efficiency formula
efficiency = 2 / (1 - sqrt(price_lower / price_upper))

// Example: 0.10% range (tightest at launch)
// price_lower = 1.0000, price_upper = 1.0010
// sqrt(1.0000 / 1.0010) ≈ 0.99950
// efficiency = 2 / (1 - 0.99950) = 2 / 0.0005 = 4,000x

This 4,000x figure represents the maximum capital efficiency at V3's launch for the tightest possible range (0.10% with the 0.05% fee tier). It does not mean LPs earn 4,000x more fees. It means the same capital provides 4,000x the liquidity depth at a specific price point. Equivalently, an LP needs only 1/4,000th the capital to achieve the same depth as a full-range V2 position.

In practical terms: if $25 million in the V2 DAI/USDC pool were concentrated between $0.99 and $1.01 in V3, it would provide the same trading depth as $5 billion in V2. Concentrated further into $0.999 to $1.001, it would match $50 billion.

Use Cases

Stablecoin Pairs

Stablecoin-to-stablecoin pools (USDC/DAI, USDC/USDT) are the clearest use case. These pairs trade in an extremely narrow range, typically between $0.999 and $1.001. Full-range liquidity wastes over 99% of capital. Concentrated positions in a tight band capture nearly all trading fees with a fraction of the capital, making LP positions on liquidity pools significantly more productive.

Correlated Asset Pairs

Pairs like stETH/ETH or WBTC/BTC exhibit high price correlation. LPs can set narrow ranges around the expected peg and earn high fee yields. Because these assets rarely deviate far from their peg, impermanent loss risk is relatively low.

Active Trading Strategies

Sophisticated LPs use concentrated liquidity as a form of range-bound market making. By setting ranges around anticipated price levels, LPs effectively place limit-order-like positions. When the price crosses through their range, their position converts from one token to the other, mimicking a limit order while earning fees along the way.

Protocol-Owned Liquidity

DeFi protocols use concentrated liquidity to manage treasury-owned liquidity more efficiently. By concentrating protocol-owned LP positions around current prices, protocols achieve deeper markets for their tokens with less capital locked in TVL.

Active Management and Automated Vaults

Unlike full-range V2 positions (set and forget), concentrated liquidity positions require active monitoring. If the price drifts outside the LP's range, they stop earning fees and accumulate impermanent loss. This creates demand for automated vault protocols that rebalance positions on behalf of depositors:

  • Arrakis Finance (formerly G-UNI by Gelato Network) provides automated liquidity management infrastructure. Its PALM product lets protocols manage treasury liquidity with automated rebalancing strategies. Arrakis Pro now supports Uniswap V4 hooks for dynamic fees and MEV protection.
  • Gamma Strategies offers deposit-and-forget vaults for retail LPs, automating rebalancing across multiple DEXs and chains.
  • Bunni V2 introduced Liquidity Density Functions (LDFs) on Uniswap V4, enabling positions that dynamically reshape their liquidity distribution across ticks.
  • Maverick Protocol uses a Dynamic Distribution AMM that automatically shifts concentrated liquidity as the price moves, processing over $32 billion in cumulative volume by mid-2025.

These vaults abstract away the complexity of range selection and rebalancing, though they introduce their own risks: smart contract vulnerabilities, strategy underperformance, and management fees.

Uniswap V4 and Hooks

Uniswap V4 launched on January 31, 2025, extending concentrated liquidity with a hooks architecture. Hooks are modular on-chain plugins that attach to pools and modify AMM behavior at specific lifecycle points (before/after swaps, before/after adding liquidity).

Key V4 changes that affect concentrated liquidity:

  • Singleton architecture: all pools run inside a single PoolManager contract instead of one contract per pool, reducing gas costs for pool creation and multi-hop swaps
  • Flash accounting: optimizes gas by netting token transfers across operations within a single transaction
  • Custom hooks: developers can build pools with dynamic fee logic, MEV protection, time-weighted average pricing, or entirely different pricing curves without forking the protocol

By mid-2026, V4 has been deployed on over 15 networks and has overtaken V3 as the default deployment target. The hooks ecosystem has produced over 2,500 hook-enabled pools with applications ranging from MEV protection to interest rate AMMs.

Risks and Considerations

Amplified Impermanent Loss

Concentrated positions experience impermanent loss at a faster rate than full-range positions. A 2021 study by Bancor and IntoTheBlock analyzed 17 Uniswap V3 pools (representing 47% of platform TVL) from May through September 2021. The findings were stark: LPs collectively suffered $260.1 million in impermanent losses against $199.3 million in fee revenue, resulting in a net loss. Across all wallets studied, 51.75% were unprofitable.

The narrower the range, the higher the potential fee yield but the faster the position converts entirely to one token when price moves. This creates a leveraged exposure to directional price movement that LPs must actively manage.

Out-of-Range Risk

When price exits a position's range, the LP holds 100% of one token and earns zero fees. The position is effectively a completed swap into the less valuable asset. To resume earning, the LP must either wait for the price to return or withdraw and reposition, incurring gas costs and potentially locking in losses.

Complexity and Gas Costs

Managing concentrated liquidity is significantly more complex than V2-style LPing. Repositioning requires withdrawing the current position, paying gas, and creating a new position at updated price bounds. On Ethereum mainnet, these transactions can cost $10 to $50+ per rebalance, eating into fee revenue for smaller positions. Layer 2 networks like Arbitrum and Base reduce this friction substantially.

Smart Contract Risk

Automated vault protocols that manage concentrated liquidity positions introduce additional smart contract risk. Bugs in rebalancing logic, oracle dependencies, or access controls can lead to loss of LP funds. Uniswap V4 underwent 9 independent audits and offered a $15.5 million bug bounty, but hooks built on top of V4 carry their own risk profiles.

Slippage and Just-in-Time Liquidity

Concentrated liquidity enables just-in-time (JIT) liquidity attacks, where sophisticated actors add and remove liquidity within the same block to capture fees from large swaps. This dilutes fee earnings for passive LPs. JIT liquidity is a form of MEV extraction specific to concentrated liquidity AMMs.

Concentrated Liquidity vs. Full-Range AMMs

FeatureFull-Range (V2-style)Concentrated (V3/V4)
Capital efficiencyLow: liquidity spread 0 to infinityUp to 4,000x higher for tight ranges
Management requiredPassive: set and forgetActive: monitor and rebalance
Impermanent lossGradual across all pricesAmplified within the chosen range
Fee earningsProportional to share of total poolProportional to share of in-range liquidity
Position fungibilityFungible ERC-20 LP tokensNon-fungible: each position is unique (NFT)
Best forLong-tail, volatile, low-maintenance pairsHigh-volume pairs with predictable ranges

Why It Matters

Concentrated liquidity fundamentally changed how decentralized exchanges operate. By making LP capital work harder within targeted price ranges, it enabled DEXs to compete with centralized exchange order books on depth and slippage for the first time. The mechanism also influenced how stablecoin peg mechanisms are maintained on-chain: deep concentrated liquidity around the $1.00 peg ensures that stablecoins resist minor depeg events through efficient arbitrage. For projects building on Bitcoin Layer 2s like Spark, understanding concentrated liquidity is essential context for how tokens are traded and priced across DeFi ecosystems.

This glossary entry is for informational purposes only and does not constitute financial or investment advice. Always do your own research before using any protocol or technology.