Introduction & Overview
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
- Gas Efficient - Optimized implementations using Permit2, multicall, and efficient data structures
Core 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 LBP Strategy Basic contracts interface and work with the Continuous Clearing Auction.
The following actions must be performed atomically within one transaction.
-
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 distribute it. -
Deploy Strategies
Call
LiquidityLauncher.distributeToken()to deploy a new LBPStrategy instance via factory. The strategy will validate that the auction parameters and eventual pool configuraiton are valid, and if so, it will deploy a CCA auction with the desired amount of tokens to sell. TheLiquidityLaunchercontract 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 LBPStrategy will also read the following data from the
IAuctioninterface:interface IContinuousClearingAuction {
function currencyRaised() external view returns (uint256);
function clearingPrice() external view returns (uint256);
} -
Seeding Liquidity
Anyone can call the
migrate()function on theLBPStrategyafter the configuredmigrationBlock. 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 + reserve tokens
- (Optionally) deploy a one-sided position with remaining tokens
- Mint the LP NFT 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
Smart Contracts
| Contract | Description | Source | Mainnet Address | Unichain |
|---|---|---|---|---|
| LiquidityLauncher | Central orchestration contract | liquidity-launcher | 0x00000008412db3394C91A5CbD01635c6d140637C | Coming soon |
| UERC20Factory | Standard ERC-20 token factory | uerc20-factory | 0x0cde87c11b959e5eb0924c1abf5250ee3f9bd1b5 | Coming soon |
| LBPStrategyBasicFactory | LBP strategy factory | liquidity-launcher | 0x00000010F37b6524617b17e66796058412bbC487 | Coming soon |
| ContinuousClearingAuction | Continuous clearing auction factory | continuous-clearing-auction | 0x0000ccaDF55C911a2FbC0BB9d2942Aa77c6FAa1D | Coming soon |
| Permit2 | Token approval manager | Uniswap | 0x000000000022D473030F116dDEE9F6B43aC78BA3 | 0x000000000022D473030F116dDEE9F6B43aC78BA3 |