Skip to content

Mayorlay/steller--launchpad-docs

 
 

Repository files navigation

Stellar Launchpad Documentation

Comprehensive documentation for the Stellar Launchpad ecosystem - a complete token lifecycle management platform on Stellar.

Overview

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.

Stellar Integration

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>");

Quick Start

# Install dependencies
npm install

# Start development server
npm run dev

# Build for production
npm run build

Documentation Structure

Features

  • 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

Sister Repositories

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

License

MIT License - see LICENSE for details.

About

No description, website, or topics provided.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • MDX 73.2%
  • TypeScript 23.9%
  • JavaScript 2.2%
  • CSS 0.7%