repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: pumpfun |
| #3 | description: "Launch and trade tokens on Pump.fun bonding curves. Create memecoins, buy/sell tokens, check prices, and collect creator fees on Solana." |
| #4 | --- |
| #5 | |
| #6 | # Pump.fun Skill |
| #7 | |
| #8 | Launch and trade tokens on Pump.fun's bonding curve protocol on Solana. |
| #9 | |
| #10 | ## Token Launch |
| #11 | |
| #12 | Create a new token on pump.fun with metadata: |
| #13 | ```bash |
| #14 | # Launch a new token |
| #15 | pumpfun launch --name "My Token" --symbol "MTK" --description "A cool memecoin" --image "./logo.png" |
| #16 | |
| #17 | # Launch with initial buy |
| #18 | pumpfun launch --name "My Token" --symbol "MTK" --description "A cool memecoin" --initial-buy 0.5 |
| #19 | ``` |
| #20 | |
| #21 | ## Trading |
| #22 | |
| #23 | Buy tokens from a bonding curve: |
| #24 | ```bash |
| #25 | # Buy tokens with 0.1 SOL |
| #26 | pumpfun buy <mint_address> --sol 0.1 --slippage 5 |
| #27 | |
| #28 | # Get a buy quote first |
| #29 | pumpfun quote buy <mint_address> --sol 0.1 |
| #30 | ``` |
| #31 | |
| #32 | Sell tokens to a bonding curve: |
| #33 | ```bash |
| #34 | # Sell tokens |
| #35 | pumpfun sell <mint_address> --amount 1000000 --slippage 5 |
| #36 | |
| #37 | # Get a sell quote first |
| #38 | pumpfun quote sell <mint_address> --amount 1000000 |
| #39 | ``` |
| #40 | |
| #41 | ## Token Info |
| #42 | |
| #43 | Check token price and bonding curve state: |
| #44 | ```bash |
| #45 | # Get current price |
| #46 | pumpfun price <mint_address> |
| #47 | |
| #48 | # Get bonding curve progress (% to graduation) |
| #49 | pumpfun progress <mint_address> |
| #50 | |
| #51 | # Get full bonding curve state |
| #52 | pumpfun info <mint_address> |
| #53 | ``` |
| #54 | |
| #55 | ## Creator Fees |
| #56 | |
| #57 | Collect accumulated creator fees: |
| #58 | ```bash |
| #59 | # Check claimable fees |
| #60 | pumpfun fees check <creator_address> |
| #61 | |
| #62 | # Collect fees |
| #63 | pumpfun fees collect |
| #64 | ``` |
| #65 | |
| #66 | ## Key Concepts |
| #67 | |
| #68 | - **Bonding Curve**: Automated market maker that provides liquidity for new tokens |
| #69 | - **Graduation**: When a token reaches ~85 SOL in the bonding curve, it migrates to PumpSwap AMM |
| #70 | - **Mayhem Mode**: New token creation mode using Token2022 program |
| #71 | - **Slippage**: Percentage tolerance for price changes during trade execution |
| #72 | |
| #73 | ## Program IDs |
| #74 | |
| #75 | - Pump Program: `6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P` |
| #76 | - PumpSwap: `pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA` |
| #77 | - Mayhem: `MAyhSmzXzV1pTf7LsNkrNwkWKTo4ougAJ1PPg47MD4e` |
| #78 |