Deploy ERC20 tokens on Base using Clanker SDK. Create tokens with built-in Uniswap V4 liquidity pools. Supports Base mainnet and Sepolia testnet. Requires PRIVATE_KEY in config.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clanker或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clanker⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clanker/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clanker description: Deploy ERC20 tokens on Base using Clanker SDK. Create tokens with built-in Uniswap V4 liquidity pools. Supports Base mainnet and Sepolia testnet. Requires PRIVATE_KEY in config. metadata: {"clawdbot":{"emoji":"🪙","homepage":"https://clanker.world","requires":{"bins":["curl","jq","python3"]}}} ---
Deploy ERC20 tokens on Base using the Clanker protocol with built-in Uniswap V4 liquidity pools.
Create a config file at ~/.clawdbot/skills/clanker/config.json:
{
"mainnet": {
"rpc_url": "https://1rpc.io/base",
"private_key": "YOUR_PRIVATE_KEY"
},
"testnet": {
"rpc_url": "https://sepolia.base.org",
"private_key": "YOUR_TESTNET_PRIVATE_KEY"
}
}
Security: Never commit your private key to version control. Use environment variables or a separate config file outside the repo.
For Base Sepolia testing, get free ETH from:
Note: Faucet access may require:
For token deployment, install web3 Python package:
pip install web3
For read-only operations, only curl, jq, and python3 are required.
clanker.sh deploy "My Token" MYT 0.1
Deploys an ERC20 token with 0.1 ETH initial liquidity on Uniswap V4.
clanker.sh status <txhash>
Check if a deployment transaction was successful.
clanker.sh info <token-address>
Returns token name, symbol, total supply, and other details.
clanker.sh get-token <deployer-address>
Find all tokens deployed by a specific address.
clanker.sh testnet-deploy "Test Token" TST
Deploy to Base Sepolia testnet for testing.
All commands support --network testnet flag:
# Check testnet status
clanker.sh status 0x1234... --network testnet
# Get testnet token info
clanker.sh info 0xabcd... --network testnet
# Find testnet tokens by deployer
clanker.sh get-token 0xdef0... --network testnet
| Command | Description | Parameters | |---------|-------------|------------| | deploy | Deploy token on mainnet | | | testnet-deploy | Deploy to Sepolia testnet | | | status | Check deployment status | | | info | Get token information | | | get-token | Find tokens by deployer | |
# Deploy a meme coin
./clanker.sh deploy "Base Dog" BDOG 0.05
# Check if deployment succeeded
./clanker.sh status 0x1234...5678
# Get info about a known token
./clanker.sh info 0xabcd...1234
# Find who deployed a token
./clanker.sh get-token 0xdef0...9876
# Test on Sepolia
./clanker.sh testnet-deploy "Test Meme" TMEME
./clanker.sh status 0xtxhash... --network testnet
---
# Create config with testnet private key
cat > ~/.clawdbot/skills/clanker/config.json << 'EOF'
{
"testnet": {
"rpc_url": "https://sepolia.base.org",
"private_key": "YOUR_TESTNET_PRIVATE_KEY"
}
}
EOF
Alternative faucets:
# Deploy on testnet with 0.001 ETH initial liquidity
./clanker.sh testnet-deploy "Test Token" TST
Or with initial liquidity:
./clanker.sh deploy "Test Token" TST 0.001 --network testnet
```bash ./clanker.sh status
```bash ./clanker.sh info
- Open https://sepolia.basescan.org/tx/\
Transaction failed?
Cannot get testnet ETH?
Private key errors?
---
| Command | Network | Result | |---------|---------|--------| | info (WETH) | mainnet | ✅ Works - Shows correct name, symbol, supply | | get-token | mainnet | ✅ Works - Returns deployer stats | | status | mainnet | ✅ Works - Handles pending/not found tx |
| Feature | Status | Notes | |---------|--------|-------| | Python deployment helper | ⚠️ Placeholder | Requires Clanker factory address | | Web-based deployment | ✅ Recommended | Use https://clanker.world | | Direct contract call | 🔲 Not implemented | Would need factory ABI |
Note: Full deployment requires the actual Clanker factory contract address on Base Sepolia. The protocol is relatively new, and contract addresses may change. For production deployment, check the official documentation.
---
安装 Clanker 后,可以对 AI 说这些话来触发它
Help me get started with Clanker
Explains what Clanker does, walks through the setup, and runs a quick demo based on your current project
Use Clanker to deploy ERC20 tokens on Base using Clanker SDK
Invokes Clanker with the right parameters and returns the result directly in the conversation
What can I do with Clanker in my developer & devops workflow?
Lists the top use cases for Clanker, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/clanker/ 目录(个人级,所有项目可用),或 .claude/skills/clanker/(项目级)。重启 AI 客户端后,用 /clanker 主动调用,或让 AI 根据上下文自动发现并使用。
Clanker 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Clanker 可免费安装使用。请查阅仓库了解许可证信息。
Deploy ERC20 tokens on Base using Clanker SDK. Create tokens with built-in Uniswap V4 liquidity pools. Supports Base mainnet and Sepolia testnet. Requires PRIVATE_KEY in config.
Clanker 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Clanker
Identifies repetitive steps in your workflow and sets up Clanker to handle them automatically