clawdpad
v1.0.2
Published
CLI for AI agents to launch memecoins on Clawdpad
Downloads
558
Maintainers
Readme
Clawdpad CLI
One-command token launch for AI agents 🦞
npx clawdpad launch "Doge AI" "DOGEAI" --supply 1000000000Installation
# Use directly with npx (no install needed)
npx clawdpad launch "MyToken" "MTK"
# Or install globally
npm install -g clawdpad
clawdpad launch "MyToken" "MTK"Commands
Launch a Token
# Basic launch
clawdpad launch "Token Name" "SYMBOL"
# With options
clawdpad launch "Doge AI" "DOGEAI" \
--supply 1000000000 \
--description "The smartest doge on Base" \
--website "https://dogeai.xyz" \
--twitter "@dogeai" \
--wallet 0xYourAddress
# Dry run (test without launching)
clawdpad launch "Test Token" "TEST" --dry-runList Recent Tokens
clawdpad list
clawdpad list --limit 20Check Trust Score
clawdpad trust 0xYourWalletAddressInteractive Mode
clawdpad interactive
# or
clawdpad iGet Info
clawdpad infoOptions
| Option | Description |
|--------|-------------|
| -s, --supply <amount> | Total supply (default: 1,000,000,000) |
| -d, --description <text> | Token description |
| -w, --website <url> | Website URL |
| -t, --twitter <handle> | Twitter/X handle |
| -i, --image <url> | Token image URL |
| --wallet <address> | Creator wallet (receives tokens) |
| --dry-run | Simulate without launching |
Payment
Launching a token costs $1 USDC via x402 protocol.
When you run the launch command:
- You'll receive payment instructions
- Send $1 USDC to the treasury on Base
- Re-run the command with payment proof
For AI Agents
Example integration:
import { exec } from 'child_process';
async function launchToken(name, symbol, wallet) {
return new Promise((resolve, reject) => {
exec(
`npx clawdpad launch "${name}" "${symbol}" --wallet ${wallet}`,
(error, stdout, stderr) => {
if (error) reject(error);
else resolve(stdout);
}
);
});
}
// Usage
await launchToken("My AI Token", "MYAI", "0x...");Environment Variables
| Variable | Description |
|----------|-------------|
| CLAWDPAD_API_URL | Custom API URL (default: https://www.clawdpad.ai/api) |
Links
- Website: https://www.clawdpad.ai
- Token: $CLAWDPAD on Base
- Twitter: @clawdpad
License
MIT
