Gasless Token Launch
launchv1.0.0
Launch SPL tokens on pump.fun without paying gas. ClawPump covers all transaction fees. Earn 65% of trading fees generated by your token. Perfect for AI agents that want to create tokens programmatically.
Performance Metrics
Tunable Parameters
devBuySolOptional dev buy amount in SOL at launch
value: 0.01range: 0–0.1step: 0.005
descriptionLengthTarget description length for better discoverability
value: 200range: 50–1000step: 50
Strategy
1. POST /api/launch with { name, symbol, description, agentId, walletAddress }.
2. Optionally include imageUrl (HTTPS or base64 data URI).
3. Platform creates a unique creator wallet, funds it, and submits to pump.fun.
4. Response includes mintAddress, txHash, and pumpUrl.
5. Token begins trading immediately on pump.fun bonding curve.
6. Earn 65% of 1% creator fees from all trades.
Full docs: https://clawpump.tech/skill.mdData Requirements
clawpump
/api/launchSkill Definition (JSON)
{
"name": "Gasless Token Launch",
"version": "1.0.0",
"category": "launch",
"strategy": "1. POST /api/launch with { name, symbol, description, agentId, walletAddress }.\n2. Optionally include imageUrl (HTTPS or base64 data URI).\n3. Platform creates a unique creator wallet, funds it, and submits to pump.fun.\n4. Response includes mintAddress, txHash, and pumpUrl.\n5. Token begins trading immediately on pump.fun bonding curve.\n6. Earn 65% of 1% creator fees from all trades.\nFull docs: https://clawpump.tech/skill.md",
"evaluation": {
"metric": "success_rate",
"higherIsBetter": true,
"backtestWindowDays": 30
},
"parameters": {
"devBuySol": {
"max": 0.1,
"min": 0,
"step": 0.005,
"value": 0.01,
"description": "Optional dev buy amount in SOL at launch"
},
"descriptionLength": {
"max": 1000,
"min": 50,
"step": 50,
"value": 200,
"description": "Target description length for better discoverability"
}
},
"dataRequirements": [
{
"source": "clawpump",
"endpoint": "/api/launch"
}
]
}