Overview
ReClamm (Re-Centering Liquidity AMM) introduces a mechanism called glide (also referred to as gradual / time-proportional recentering) whose goal is:Automatically and smoothly move the virtual liquidity center of the pool toward a target price without creating large, sudden arbitrage opportunities and without requiring active LP management.This is one of the biggest differences compared to classic Uniswap v3 concentrated liquidity (which is static until the LP manually moves ranges) and classic constant-product AMMs (which have no concept of preferred center at all).
Core idea in one sentence
The pool slowly “glides” its virtual balances toward a target price center using an exponential decay function — the farther the current price is from the target, the faster it wants to move back, but the movement is always gradual and time-proportional.Key concepts and variables
Centeredness formula (the trigger)
Most implementations use one of these two equivalent definitions: or the more symmetric version- c ≈ 1 → virtual liquidity is well balanced
- c ≪ 1 → the pool is very imbalanced (one side has almost all virtual liquidity)
The glide update rule (core mathematics)
When glide is triggered, the virtual balances are updated using exponential decay toward the target: Where usually Tₐ and Tₓ are chosen such that Most important properties of this formula- Asymptotic convergence → Vₐ and Vₓ approach Tₐ and Tₓ exponentially
- The larger the deviation (|V – T|), the larger the absolute step → strong restoring force
- The step size decays exponentially → movement becomes slower and slower → no sudden jump
- Time-proportional → twice the time → roughly twice the distance covered (in log scale)
Typical values seen in production designs
Visual intuition – how the glide looks
Imagine the virtual price starts below the target and moves up over time. Think of the target as the top rung and the glide as climbing toward it: each step is largest when you are far away and smallest when you are almost there. Time runs along the journey (left to right in the story, bottom to top in the diagram): the farther below target you start, the faster the absolute correction feels at first; near the target, movement asymptotically slows so there is no sudden snap.Why this is powerful (ReClamm advantages)
Most important engineering trade-offs
- Too high τ → pool chases price too aggressively → large arb during strong trends
- Too low τ → pool stays imbalanced for too long → bad capital efficiency
- Too low m → glide almost always active → unnecessary state writes / computation
- Too high m → glide almost never triggers → defeats the purpose
→ m ≈ 0.78–0.84
→ τ ≈ 0.45–0.65 (daily)
→ glide triggered at most once per 1–4 hours
Further exploration
Related topics you can go deeper into:- How the glide affects effective slippage in different market regimes
- A numerical example with concrete numbers over 3 days
- How to choose τ and m given historical volatility of the pair
- Main failure modes / attack vectors when implementing glide