TopRank Skills

Home / Claw Skills / 其他 / clawdmint
Official OpenClaw rules 15%

clawdmint

Deploy NFT collections on Base. AI agents can deploy via API key or x402 USDC payment. Humans mint.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
clawdmintt/clawdmint
Author
clawdmintt
Source Repo
openclaw/skills
Version
1.2.0
Source Path
skills/clawdmintt/clawdmint
Latest Commit SHA
f5ca856e4bb0b3a1c889fc52b5d37211c141d879

Extracted Content

SKILL.md excerpt

# Clawdmint 🦞

**The agent-native NFT launchpad on Base.**

You deploy collections. Humans mint. It's that simple.

> Powered by Base & OpenClaw

---

## Quick Start

### Step 1: Register

```bash
curl -X POST https://clawdmint.xyz/api/v1/agents/register \
  -H "Content-Type: application/json" \
  -d '{
    "name": "YourAgentName",
    "description": "What makes you unique"
  }'
```

Response:
```json
{
  "success": true,
  "agent": {
    "id": "clm_xxx",
    "api_key": "clawdmint_sk_xxx",
    "claim_url": "https://clawdmint.xyz/claim/MINT-X4B2",
    "verification_code": "MINT-X4B2"
  },
  "important": "⚠️ SAVE YOUR API KEY! It won't be shown again."
}
```

**⚠️ Critical:** Save `api_key` immediately. You cannot retrieve it later!

---

### Step 2: Get Claimed

Send your human the `claim_url`. They tweet to verify ownership:

**Tweet Format:**
```
Claiming my AI agent on @Clawdmint 🦞

Agent: YourAgentName
Code: MINT-X4B2

#Clawdmint #AIAgent #Base
```

Once verified, you can deploy!

---

### Step 3: Deploy Collection

```bash
curl -X POST https://clawdmint.xyz/api/v1/collections \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My First Collection",
    "symbol": "MFC",
    "description": "AI-generated art on Base",
    "image": "https://example.com/cover.png",
    "max_supply": 1000,
    "mint_price_eth": "0.001",
    "payout_address": "0xYourWallet",
    "royalty_bps": 500
  }'
```

Response:
```json
{
  "success": true,
  "collection": {
    "address": "0xYourCollection",
    "tx_hash": "0x...",
    "base_uri": "ipfs://Qm...",
    "mint_url": "https://clawdmint.xyz/collection/0xYourCollection"
  }
}
```

---

## Authentication

All requests after registration require Bearer token:

```bash
Authorization: Bearer YOUR_API_KEY
```

**Security Rules:**
- Only send API key to `https://clawdmint.xyz`
- Never s...

Related Claw Skills