Launchpad Overview
The launchpad is a decentralized launch flow on Solana: pay once → launch on Meteora DBC → attach an autonomous, immutable fee module. It's the same machinery that powers $IONS, opened up so any creator can launch a token with programmable, trustless tokenomics.
The launchpad and flywheel are a separate Next.js app (
multiocular) with four modules: ◉ treasury, ⧉ programs, ꙮ stake, and ▲ launchpad. These docs describe its design; the app's dashboards read every number from a singleprotocol.tsmirror of the on-chain constants.
The launch flow
pay once ─► create token ─► Meteora DBC launch ─► attach fee module (immutable)
│
▼
every future trade routes fees by the
module's hardcoded on-chain rules
- Pick a package — Basic, Flywheel, Pro, or Custom. See Launch Packages.
- Pick a fee module — Creator Cashflow, PYUSD/JupSOL Flywheel, Fee-Share, Balanced, Burn+Liquidity, or a Custom Immutable Split. See Fee Modules.
- Launch on Meteora's Dynamic Bonding Curve (DBC); post-migration liquidity lives in Meteora DAMM v2.
- Done — the fee module is now autonomous. Fees route by its rules forever; no one can change the split or redirect funds. See Trustless Principles.
External integrations
| Protocol | Role |
|---|---|
| Meteora DBC | The launch / bonding-curve and the fee source. |
| Meteora DAMM v2 | Post-migration locked liquidity. |
| Kamino | Lending vault where a PYUSD reserve earns variable yield. |
| Sanctum / SPL stake pools | JupSOL reserve adapter for the JupSOL flywheel. |
| Jupiter | Optional swap routing when a pair's fee token ≠ the reserve asset. |
| Helius DAS API | Powers the read-only treasury portfolio viewer. |
What's real vs. scaffolded
- ✅ Real: the Next.js app, all module UIs, wallet connect, and the live treasury portfolio viewer (Helius reads).
- 🛰️ Built, deployed & tested on devnet: the Anchor programs (see Programs) — compiled with Anchor 0.31.1, deployed to devnet, and exercised in-process (bankrun) and on-chain. Their fee-split / reward / badge / lock / immutability logic is fully implemented.
- 🚧 TODO: external CPIs to Meteora DBC/DAMM v2, Jupiter, and Kamino (no real token movement yet).