Introduction & Overview
Looking to participate in active auctions? Check them out on theĀ Uniswap Frontend
What is the Uniswap Liquidity Launchpad?
The Uniswap Liquidity Launchpad is a comprehensive framework for bootstrapping initial liquidity for Uniswap V4 pools through fair, transparent price discovery (seeĀ whitepaper). It combines three critical functions into a single, composable system:
- Price DiscoveryĀ - Run fair auctions using a novel Continuous Clearing Auction (CCA) mechanism to establish market price
- Liquidity BootstrappingĀ - Automatically seed Uniswap V4 pools with auction proceeds at the discovered price
- Token CreationĀ (Optional) - Deploy new ERC-20 tokens with rich metadata and optional cross-chain capabilities
Unlike traditional approaches that rely on centralized market makers or expose participants to timing games and manipulation, the Uniswap Liquidity Launchpad provides an open mechanism for boostrapping deep liquidity on decentralized exchanges.
The system is composable - it is not limited to the intial set of implementation contracts. Other auction and LBPStrategy implementations are welcome!
Key Benefits
- Fair Price DiscoveryĀ - Continuous clearing auctions eliminate timing games and establish credible market prices
- Immediate Deep LiquidityĀ - Seamless transition from price discovery to active Uniswap V4 trading with substantial initial depth
- PermissionlessĀ - Anyone can bootstrap liquidity or participate in price discovery without gatekeepers
- TransparentĀ - All parameters are immutable after they are set
- ComposableĀ - Modular architecture supports multiple auction formats and distribution strategies
- DistributionĀ - Users can participate in auctions via interfaces acros the ecosystem including theĀ Uniswap FrontendĀ and custom interfaces
Components
The Uniswap Liquidity Launchpad framework is built on three coordinated components that work together to bootstrap liquidity:
- Liquidity Launcher āĀ Central orchestration contract that coordinates distribution and liquidity deployment
- Token Factory āĀ (Optional) Creates new ERC-20 tokens with metadata, or integrates existing tokens
- Liquidity StrategiesĀ - Modular contracts for different price discovery and liquidity mechanisms (prebuiltĀ LBP StrategyĀ orĀ custom strategies)
Each component is designed to be composable and extensible, allowing you to customize your liquidity bootstrapping while maintaining security and fairness guarantees.
High-Level Architecture

Example Flow
The following is a high level overview of how the providedĀ LBP StrategyĀ contracts interface and work with theĀ Continuous Clearing Auction.
The following actions must be performed atomically in one transaction.Ā LiquidityLauncherĀ supports native multicall which is highly recommended.
-
Prepare TokenĀ (Optional)
Launch a new token usingĀ
LiquidityLauncher.createToken()Ā via theĀ UERC20Factory, which deploys a UERC20 or UERC20Superchain token and mints the initial supply to the launcher. Alternatively, use an existing token and approve the launcher to transfer it via Permit2. -
Deploy Strategies
CallĀ
LiquidityLauncher.distributeToken()Ā to deploy a new LBPStrategy instance via factory. The strategy will validate that the auction parameters and eventual pool configuration are valid, and if so, it will deploy a CCA auction with the desired amount of tokens to sell. TheĀLiquidityLauncherĀ contract will transfer tokens to the LBPStrategy and then they will be transferred into the auction.We use an optimistic transfer then call pattern throughout the contracts to trigger an action after performing an ERC20 transfer.
-
Auction Completion
When the auction ends, all of the raised funds will be swept to a specifiedĀ
fundsRecipient. The LBPStrategy will ensure that it is the recipient of both the raised funds and any leftover unsold tokens. The configuredĀinitializerĀ on the LBPStrategy must implement theĀ ILBPInitializerĀ interface to return the necessary data for the pool migration and liquidity creation.TheĀ
initializerĀ returns parameters like the initial price, tokens sold, and currency raised which are used to initialize the pool. -
Migrating Liquidity
Anyone can call theĀ
migrate()Ā function on theĀLBPStrategyĀ after the configuredĀmigrationBlock. This does the following:- Initialize a new Uniswap V4 pool at the price from the auction
- Deploy a full-range LP position using the auction proceeds + reserved tokens
- (Optionally) deploy a one-sided position with remaining tokens
- Mint the NFT for the LP position to the a specifiedĀ
positionRecipient - Sweep any leftover tokens or raised funds to a configuredĀ
operator
-
After Migration
The pool will be live on Uniswap V4 with deep liquidity around the discovered price. Participants in the auction can claim their purchased tokens on the auction afterĀ
claimBlock, and these instances of the LBPStrategy + Auction contracts should hold no funds after all bids are withdrawn and all actions performed.
Next Steps
- Learn about theĀ Continous Clearing AuctionĀ mechanism
- Read theĀ whitepaperĀ to learn more about the mechanism
- Review the Continuous Clearing AuctionĀ Technical Reference