Comprehensive documentation for the Stellar Launchpad ecosystem - a complete token lifecycle management platform on Stellar.
Stellar Launchpad enables anyone to launch tokens on Stellar with built-in features for vesting, airdrops, and ecosystem discovery. This documentation covers all four smart contracts, the web app, CLI usage, and integration guides.
This platform is built natively on the Stellar network, leveraging its smart contract layer (Soroban) for all on-chain operations.
- Network: Stellar Mainnet / Testnet
- Smart Contracts: Written in Rust, compiled to WASM, deployed via Soroban
- SDK: @stellar/stellar-sdk for client-side interaction
- Wallets: Compatible with Freighter, xBull, and any WalletConnect-enabled Stellar wallet
- Assets: Tokens follow the Stellar Asset Contract (SAC) standard
import { Contract, SorobanRpc, TransactionBuilder } from "@stellar/stellar-sdk";
const server = new SorobanRpc.Server("https://soroban-testnet.stellar.org");
const contract = new Contract("<CONTRACT_ADDRESS>");# Install dependencies
npm install
# Start development server
npm run dev
# Build for production
npm run build- Getting Started: Launch your first token in 5 minutes
- Contracts: Complete smart contract reference
- Token Contract: Core token functionality
- Vesting Contract: Time-locked distributions
- Airdrop Contract: Community token drops
- Launchpad Registry: Launch discovery
- CLI Reference: Command-line interface guide
- Web App Guide: Using the web dashboard
- Integration Guide: Developer SDK and APIs
- Security: Best practices and audit guidelines
- Stellar / Soroban smart contracts (Rust + WASM)
- Stellar SDK for wallet connection and transaction signing
- Next.js 14 with App Router
- TypeScript for type safety
- Tailwind CSS for styling
- MDX for interactive documentation
- Mobile responsive design
- Dark theme matching the ecosystem
- Core Contracts: Smart contract source code
- Web Dashboard: Web application interface
We welcome contributions! See CONTRIBUTING.md for guidelines.
MIT License - see LICENSE for details.