openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Mint Club V2

Command-line interface for creating, trading, and managing Mint Club bonding curve tokens on Base blockchain with wallet support and Uniswap integration.

金融与交易

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 570 · 2 current installs · 2 all-time installs

0

安装量(当前) 2

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:mintclub

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's instructions ask the agent to install and run an external npm CLI and to provide a wallet private key (or rely on files under ~/.mintclub), but the registry metadata does not declare these credentials or config paths — this mismatch and the need to run third-party code make the skill suspicious.

目的

The SKILL.md describes interacting with Mint Club via the mint.club-cli npm package, which is coherent with the stated purpose. However the skill metadata declares no required environment variables or config paths while the instructions explicitly require a PRIVATE_KEY or ~/.mintclub/.env and will auto-save token addresses to ~/.mintclub/tokens.json — a clear mismatch between declared requirements and actual operational needs.

说明范围

Runtime instructions tell the agent to install and run a third‑party CLI that manages wallet private keys, performs token approvals, and executes on‑chain trades (buy/sell/zap/swap/create). Those operations can move funds and write files under the user's home directory; the instructions therefore go beyond read-only queries and grant the CLI authority to perform sensitive actions.

安装机制

No install spec is present in the registry metadata, but SKILL.md instructs users/agents to run 'npm install -g mint.club-cli' (a public npm package). Installing a global npm package is a typical way to get a CLI, but it involves downloading and executing third‑party code that was not included in the skill bundle and therefore cannot be audited here.

证书

The instructions request a PRIVATE_KEY (or storing it in ~/.mintclub/.env) and will perform transactions and approvals; yet the skill metadata lists no required credentials or primaryEnv. Requesting direct access to a wallet private key is high-sensitivity and should have been declared and justified in metadata.

持久

The CLI will create and update files in ~/.mintclub (tokens.json, .env). The skill itself does not request 'always' or other elevated platform privileges, but the side-effect of persistent files in the user's home is not declared in metadata and can persist credentials and token addresses on disk.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Mint Club V2」。简介:Command-line interface for creating, trading, and managing Mint Club bonding cu…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/sebayaki/mintclub/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

# Mint Club V2 — Agent Skill

Interact with Mint Club V2 bonding curve tokens on Base using the `mc` CLI.

## Setup

```bash
npm install -g mint.club-cli
```

Set your private key:
```bash
mc wallet --set-private-key 0x...
# Or export PRIVATE_KEY=0x...
```

## Commands

### Read Operations (no key needed)

```bash
mc info <token>          # Token info (supply, reserve, price, curve)
mc price <token>         # Price in reserve + USD
mc wallet                # Wallet address and balances
```

### Trading

```bash
# Buy/sell via bonding curve (reserve token)
mc buy <token> -a <amount>                    # Buy tokens
mc sell <token> -a <amount>                   # Sell tokens

# Zap: buy/sell with any token (auto-routes via Uniswap)
mc zap-buy <token> -i ETH -a 0.01            # Buy with ETH
mc zap-sell <token> -a 100 -o USDC           # Sell for USDC

# Direct Uniswap swap (any pair, V3 + V4)
mc swap -i ETH -o HUNT -a 0.001              # Swap tokens
mc swap -i HUNT -o USDC -a 100 -s 0.5        # Custom slippage
```

### Create Token

```bash
mc create -n "My Token" -s MYT -r HUNT -x 1000000 
  --curve exponential --initial-price 0.01 --final-price 100
```

Curve presets: `linear`, `exponential`, `logarithmic`, `flat`

### Transfer

```bash
mc send <address> -a 0.01                     # Send ETH
mc send <address> -a 100 -t HUNT              # Send ERC-20
```

## Token Resolution

Use addresses or known symbols: `ETH`, `WETH`, `USDC`, `HUNT`, `MT`

## Environment

| Variable | Description |
|----------|-------------|
| `PRIVATE_KEY` | Wallet private key (or use `~/.mintclub/.env`) |

## Notes

- All operations are on **Base** (chain 8453)
- Default slippage: 1%
- Default royalty on create: 1% mint + 1% burn
- Token addresses are auto-saved to `~/.mintclub/tokens.json`
- Community: https://onchat.sebayaki.com/mintclub