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 single protocol.ts mirror 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
  1. Pick a package — Basic, Flywheel, Pro, or Custom. See Launch Packages.
  2. Pick a fee module — Creator Cashflow, PYUSD/JupSOL Flywheel, Fee-Share, Balanced, Burn+Liquidity, or a Custom Immutable Split. See Fee Modules.
  3. Launch on Meteora's Dynamic Bonding Curve (DBC); post-migration liquidity lives in Meteora DAMM v2.
  4. 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

ProtocolRole
Meteora DBCThe launch / bonding-curve and the fee source.
Meteora DAMM v2Post-migration locked liquidity.
KaminoLending vault where a PYUSD reserve earns variable yield.
Sanctum / SPL stake poolsJupSOL reserve adapter for the JupSOL flywheel.
JupiterOptional swap routing when a pair's fee token ≠ the reserve asset.
Helius DAS APIPowers 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).