pumpfun

Solid

Complete PumpFun Protocol guide for building token launches, bonding curves, and AMM integrations on Solana. Covers Pump Program (token creation, buy/sell on bonding curves), PumpSwap AMM (liquidity pools, swaps), fee structures, creator fees, and SDK integration.

Code & Development 128 stars 81 forks Updated 1 months ago Apache-2.0

Install

View on GitHub

Quality Score: 81/100

Stars 20%
70
Recency 20%
75
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# PumpFun Protocol Integration Guide A comprehensive guide for building applications with PumpFun - Solana's leading token launch and AMM protocol enabling instant trading without initial liquidity. ## Overview PumpFun is a token launch and trading protocol on Solana offering: - **Pump Program** - Create SPL tokens with instant trading on bonding curves - **PumpSwap (AMM)** - Constant-product automated market maker for graduated tokens - **Creator Fees** - Automatic fee distribution to token creators - **Token2022 Support** - Modern token standard via `create_v2` instruction - **Mayhem Mode** - Special mode for enhanced token launches ## Program IDs | Program | Address | |---------|---------| | Pump Program | `6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P` | | PumpSwap AMM | `pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA` | | Pump Fees | `pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ` | | Mayhem Program | `MAyhSmzXzV1pTf7LsNkrNwkWKTo4ougAJ1PPg47MD4e` | ## Quick Start ### Installation ```bash # Install PumpFun SDKs npm install @pump-fun/pump-sdk @pump-fun/pump-swap-sdk # Or with pnpm pnpm add @pump-fun/pump-sdk @pump-fun/pump-swap-sdk ``` ### Basic Setup ```typescript import { Connection, Keypair, PublicKey } from '@solana/web3.js'; import bs58 from 'bs58'; // Setup connection const connection = new Connection('https://api.mainnet-beta.solana.com'); const wallet = Keypair.fromSecretKey(bs58.decode('YOUR_SECRET_KEY')); // Program addresses const PUMP_PROGRAM_ID = new Pub...

Details

Author
sendaifun
Repository
sendaifun/skills
Created
8 months ago
Last Updated
1 months ago
Language
TypeScript
License
Apache-2.0

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category