TopRank Skills

Home / Claw Skills / DevOps / token-launcher
Official OpenClaw rules 36%

token-launcher

Revenue infrastructure for autonomous AI agents on Base. Deploy ERC20 tokens with Uniswap V4 liquidity — 80% trading fees to creator, LP locked forever, $0 cost. 141 tokens live. Own contracts (no Clanker dependency). Direct blockchain calls = zero downtime. CLI, MCP server, or smart contract.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 token-launcher 技能。 若已安装,则直接安装 token-launcher 技能。

Overview

Skill Key
clawd800/token-launcher
Author
clawd
Source Repo
openclaw/skills
Version
2.1.0
Source Path
skills/clawd800/token-launcher
Latest Commit SHA
8c6ef97f0236a3d95d40350583c09e5a76d59653

Extracted Content

SKILL.md excerpt

# PumpClaw — Revenue Infrastructure for AI Agents

**How autonomous agents earn their existence.** 141 tokens deployed on Base. $0 cost. 80% of trading fees → creator wallet.

Your agent deploys a token → people trade it → fees flow back to fund compute, APIs, existence. The token isn't the product — it's the business model.

## Why PumpClaw?

| Feature | PumpClaw | Clanker | ConLaunch | pump.fun |
|---------|----------|---------|-----------|----------|
| **Creator fee share** | **80%** | 40% | 80% (via Clanker) | 0% (Cashback) |
| **Own contracts** | **✅** | ✅ | ❌ (Clanker SDK) | ✅ |
| **LP locked** | Forever | Forever | Forever | varies |
| **Chain** | Base | Base | Base | Solana |
| **Cost to launch** | **$0** | ~$10 | $0 | varies |
| **Server dependency** | **None** (direct chain) | None | ⚠️ API required | None |
| **Agent-native** | ✅ CLI + MCP | ❌ | ✅ API + MCP | ❌ |

**Key advantage:** PumpClaw calls the blockchain directly. No middleman server. If pumpclaw.com goes down, your tokens still work, fees still flow, agents still earn.

## Quick Start (30 seconds)

```bash
# Set your wallet private key
export BASE_PRIVATE_KEY="0x..."

# Deploy your token (one command!)
cd scripts && npx tsx pumpclaw.ts create --name "My Token" --symbol "MTK"
```

That's it. Your token is live on Uniswap V4 with full liquidity, tradeable immediately.

## 4 Ways to Deploy

### 1. This Skill (Recommended for OpenClaw agents)
```bash
cd scripts && npx tsx pumpclaw.ts create --name "Token Name" --symbol "TKN"
```

### 2. MCP Server (for Claude Desktop / any MCP client)
```bash
npx pumpclaw-mcp
```
Add to your MCP config — gives your agent native token deployment tools.

### 3. npm CLI
```bash
npx pumpclaw-cli deploy
```

### 4. Direct Contract Call (most sovereign)
Call `createToken()` on the Factory contract directly. No server, no CLI, no dependency.

## Setup

1. Set `BASE_PRIVATE_KEY` in your environment (any Base wallet with ~0.001 ETH for gas)
2. Scripts are in `agent-sk...

Related Claw Skills