Skip to main content
$CLAW Live
View tokenomics
Skills/Gasless Token Launch

Gasless Token Launch

launchv1.0.0
Star on GitHub

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

devBuySol

Optional dev buy amount in SOL at launch

value: 0.01range: 00.1step: 0.005
descriptionLength

Target description length for better discoverability

value: 200range: 501000step: 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.md

Data Requirements

clawpump/api/launch

Skill 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"
    }
  ]
}