Prysma Launchpad Documentation
Permissionless memecoin launches on Uniswap v4: creators open an invite-gated Continuous Clearing Auction (CCA); on graduation, liquidity migrates into a locked v4 pool with hook fees split among creator, referrers, and the platform.
How it fits together
- Launch —
CcaLaunchFactorymints a fixed-supplyLaunchToken, seeds invites, and opens a CCA via LiquidityLauncher → LBPStrategy. - Bid — Participants submit CCA bids with invite
hookData, validated byInviteValidationHook/InviteRegistry. - Migrate — After the auction ends and graduates, permissionless LBP migrate seeds a v4 ETH/token pool with
LaunchFeeHook. - Trade & claim — Swaps accrue hook fees;
harvestpushes balances toFeeDistributorfor creator / referrer / platform claims.
Default economics: 50% auction / 50% LP · pool LP fee 0.1% · hook fee 0.4% (split 20% / 75% / 5%).
Contracts
| Contract | Role | Docs |
|---|---|---|
CcaLaunchFactory | Create token + CCA/LBP launch | NatSpec |
LaunchToken | Fixed-supply ERC-20 + metadata | NatSpec |
InviteRegistry | Invite codes + referral weights | NatSpec |
InviteValidationHook | CCA bid gate (hookData) | NatSpec |
LaunchFeeHook | Post-migrate swap hook fee | NatSpec |
FeeDistributor | Claimable 20/75/5 fee split | NatSpec |
IReferralSource | Referral weight interface | NatSpec |
Upstream Uniswap pieces used at runtime (not in this repo’s src/): LiquidityLauncher, LBPStrategy, Continuous Clearing Auction, CompoundingClaimRecipient.