Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

clankerclanker 测试

Agent Skill

clanker 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

54,708

周安装

2,326

GitHub Stars

公开资料未说明

下载量

19,166
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clanker(clanker 测试)
来源仓库:https://github.com/spirosrap/clanker
安装命令:
openclaw skills install clanker
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clanker

简介

使用 Clanker SDK 在 Base 上部署 ERC20 代币。使用内置 Uniswap V4 流动性池创建代币。支持Base主网和Sepolia测试网。需要配置中的 PRIVATE_KEY。

SKILL.md

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

Clanker Skill

Deploy ERC20 tokens on Base using the Clanker protocol with built-in Uniswap V4 liquidity pools.

Setup

1. Configuration

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.

2. Get Testnet ETH

For Base Sepolia testing, get free ETH from:

  • https://cloud.base.org/faucet
  • https://sepoliafaucet.com

Note: Faucet access may require:

  • MetaMask or similar wallet installed
  • Social login (GitHub, Twitter, etc.)
  • Limited to 1-2 requests per day

3. Install Dependencies (for deployment)

For token deployment, install web3 Python package:

pip install web3

For read-only operations, only curl, jq, and python3 are required.

Usage

Deploy a Token (Mainnet)

clanker.sh deploy "My Token" MYT 0.1

Deploys an ERC20 token with 0.1 ETH initial liquidity on Uniswap V4.

Check Deployment Status

clanker.sh status <txhash>

Check if a deployment transaction was successful.

Get Token Info

clanker.sh info <token-address>

Returns token name, symbol, total supply, and other details.

Find Tokens by Deployer

clanker.sh get-token <deployer-address>

Find all tokens deployed by a specific address.

Deploy to Testnet (Sepolia)

clanker.sh testnet-deploy "Test Token" TST

Deploy to Base Sepolia testnet for testing.

Using Testnet Network

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

Commands Reference

CommandDescriptionParameters
deployDeploy token on mainnet<name> <symbol> <initial-lp-eth>
testnet-deployDeploy to Sepolia testnet<name> <symbol>
statusCheck deployment status<txhash>
infoGet token information<token-address>
get-tokenFind tokens by deployer<deployer-address>

Examples

# 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

Testing Guide

Step 1: Set Up Testnet Config

# 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

Step 2: Get Testnet ETH

  1. Visit https://cloud.base.org/faucet
  2. Connect your wallet (MetaMask)
  3. Request test ETH (0.001-0.01 ETH should be enough)

Alternative faucets:

  • https://sepoliafaucet.com
  • https://faucet.paradigm.xyz

Step 3: Deploy a Test Token

# 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

Step 4: Verify Deployment

  1. Check transaction status:
   ./clanker.sh status <txhash> --network testnet
  1. Get token info:
   ./clanker.sh info <token-address> --network testnet
  1. View on explorer:

- Open https://sepolia.basescan.org/tx/\<txhash\> - View token contract at https://sepolia.basescan.org/token/\<token-address\>

Troubleshooting

Transaction failed?

  • Check if you have enough ETH for gas
  • Verify the Clanker factory contract is available on Sepolia
  • Check network connectivity

Cannot get testnet ETH?

  • Try alternative faucets
  • Wait 24 hours between requests
  • Check if wallet is connected correctly

Private key errors?

  • Ensure key doesn't have "0x" prefix (or remove it if present)
  • Check config file syntax is valid JSON

Test Results

Read-Only Operations ✅

CommandNetworkResult
info (WETH)mainnet✅ Works - Shows correct name, symbol, supply
get-tokenmainnet✅ Works - Returns deployer stats
statusmainnet✅ Works - Handles pending/not found tx

Deployment ⚠️

FeatureStatusNotes
Python deployment helper⚠️ PlaceholderRequires Clanker factory address
Web-based deployment✅ RecommendedUse https://clanker.world
Direct contract call🔲 Not implementedWould 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.


Security Best Practices

  1. Never commit private keys to version control
  2. Use separate keys for testnet and mainnet
  3. Test on Sepolia first before mainnet deployment
  4. Verify contract addresses on official Clanker documentation
  5. Start with small ETH amounts for initial liquidity
  6. Monitor deployed tokens for unusual activity

Resources

  • Official Website: https://clanker.world
  • Documentation: https://docs.clanker.world
  • GitHub: https://github.com/clanker-world
  • Base Mainnet Explorer: https://basescan.org
  • Base Sepolia Explorer: https://sepolia.basescan.org

Notes

  • All deployments create tokens with built-in Uniswap V4 LP
  • Initial LP ETH is required for liquidity bootstrapping
  • Testnet deployments are free (no real funds, requires testnet ETH)
  • Deployment may fail if Clanker contract is not available
  • Check network connectivity if operations timeout

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.26%
按下载量换算14,999

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills