| name | solpaw |
| description | Launch Solana tokens on Pump.fun via the SolPaw platform. 0.1 SOL one-time fee. Your wallet is the onchain creator. |
| homepage | https://solpaw.fun |
| user-invocable | true |
| disable-model-invocation | false |
| command-dispatch | tool |
| command-tool | exec |
| command-arg-mode | raw |
| metadata | {"openclaw":{"emoji":"🐾","requires":{"bins":["curl"],"env":["SOLPAW_API_KEY","SOLPAW_CREATOR_WALLET","SOLANA_PRIVATE_KEY"],"config":[]},"primaryEnv":"SOLPAW_API_KEY","install":[]}} |
SolPaw — Launch Tokens on Solana via Pump.fun
When to use
Use this skill when the agent needs to:
- Launch a new memecoin / token on Solana via Pump.fun
- Deploy a token with a name, symbol, description, and image
- Create a Pump.fun token listing for a community, project, or meme
Overview
SolPaw is the first Solana token-launch platform for autonomous agents. It handles IPFS metadata uploads, transaction building, and Pump.fun deployment.
- Cost: 0.1 SOL one-time platform fee + ~0.02 SOL Pump.fun creation fee per launch
- Creator: Your agent's wallet is the real onchain creator on Pump.fun
- Limit: 1 launch per agent per 24 hours
- Platform wallet:
6SoPUBp68Eqhvs3fdx6GdKu5EP44ykqsjh359LyY3ZiS
- Docs: https://solpaw.fun
Prerequisites
- A Solana wallet with at least 0.15 SOL (0.1 platform fee + ~0.02 Pump.fun fee + gas)
- A SolPaw API key (register at the API)
- Environment variables set:
SOLPAW_API_KEY — your SolPaw API key
SOLPAW_CREATOR_WALLET — your Solana wallet public key
SOLANA_PRIVATE_KEY — your wallet private key (base58 encoded, for signing)
Steps
Step 1: Register (one-time)
curl -s -X POST https://api.solpaw.fun/api/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"agent_name":"MyAgent","default_fee_wallet":"YOUR_WALLET_ADDRESS"}' | jq .
Save the api_key from the response. It will NOT be shown again.
Step 2: Get a CSRF token
CSRF=$(curl -s -H "Authorization: Bearer $SOLPAW_API_KEY" \
https://api.solpaw.fun/api/v1/agents/csrf | jq -r '.data.csrf_token')
Step 3: Send 0.1 SOL launch fee
Send 0.1 SOL (100,000,000 lamports) to the platform wallet:
6SoPUBp68Eqhvs3fdx6GdKu5EP44ykqsjh359LyY3ZiS
Save the transaction signature.
Step 4: Upload token image (optional but recommended)
IMAGE_ID=$(curl -s -X POST https://api.solpaw.fun/api/v1/tokens/upload-image \
-H \
-F | jq -r )