一键导入
clawnch-info
On-chain token information, portfolio discovery, vault claims, agent registration, and Clawnch platform data. Most actions are read-only.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
On-chain token information, portfolio discovery, vault claims, agent registration, and Clawnch platform data. Most actions are read-only.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check eligibility for and claim token airdrops
Scan, audit, and revoke ERC-20 token approvals to manage wallet spending permissions
Set up automated server-side trading strategies (limit buys/sells) that execute on Base via Bankr
Deploy tokens on Base (Uniswap V4) or Solana (Raydium) via Bankr gas-sponsored launch API
Open leveraged long/short positions via Avantis on Base with up to 10x leverage
Access Polymarket prediction markets to search, place bets, view positions, and redeem winnings
| name | clawnch-info |
| description | On-chain token information, portfolio discovery, vault claims, agent registration, and Clawnch platform data. Most actions are read-only. |
| metadata | {"openclaw":{"emoji":"🦞"}} |
clawnch_info| Action | Params | Description |
|---|---|---|
token_info | token | On-chain token details via ClawnchReader: name, symbol, decimals, supply, creator, taxes, vault info |
portfolio | address? | Token discovery for a wallet via ClawnchPortfolio. Finds all tokens held, with values. |
agent_status | address? | Check if a wallet is a registered Clawnch agent. Shows agent ID, name, verification. |
platform_stats | — | Clawnch platform stats: total tokens, agents, volume, liquidity, active tokens. |
list_tokens | page?, page_size? | Paginated list of all Clawnch-deployed tokens with price, market cap, volume. |
| Action | Params | Description |
|---|---|---|
vault_claim | token | Check and claim vested vault allocation. Shows lockup status and claims if available. |
agent_register | agent_name, agent_description? | Register as a verified Clawnch agent. Requires CLAWNCH_API_KEY. |
For Clawnch-deployed tokens, token_info returns extra fields:
| Field | Description |
|---|---|
isClawnchToken | Whether this token was deployed via Clawnch |
creator | Deployer address |
launchDate | When the token was deployed |
liquidityLocked | Whether LP is locked |
taxBuy / taxSell | Buy/sell tax percentages |
maxWallet | Max wallet holding limit |
vault | Vault info: lockup end time, vesting duration, total allocation |
action: vault_claim, token: 0xTokenAddressThe portfolio action discovers tokens held by a wallet:
action: portfolio, address: 0xWalletAddress
If full portfolio data is available (via ClawnchPortfolio), returns:
If only addresses are available, returns token addresses for further lookup via token_info.
The platform_stats action returns:
Browse all Clawnch tokens with pagination:
action: list_tokens, page: 1, page_size: 20
Each token includes: address, name, symbol, creator, launch date, price, market cap, volume, holder count.
| Variable | Required For | Description |
|---|---|---|
CLAWNCH_API_KEY | agent_register, agent_status | Agent API key |
CLAWNCHER_API_URL | platform_stats, list_tokens, agent_status | Custom API URL (default: https://clawn.ch) |
token_info and portfolio require a public RPC client (wallet service must be started)vault_claim is the only action that costs gas — pre-flight balance check is automaticagent_register uses ClawnchApiDeployer.register() which is a static methodagent_status is read-only — it queries the API directly without needing a wallet clientclawnch_fees tool instead