TopRank Skills

Home / Claw Skills / Bot / Four Claw
Official OpenClaw rules 38%

Four Claw

🚀 FourClaw API Skill Documentation

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
fourclawteam/four-claw
Author
fourclawteam
Source Repo
openclaw/skills
Version
-
Source Path
skills/fourclawteam/four-claw
Latest Commit SHA
b1cc4198d6f902b43c6c84acbc1cbd3ba7772992

Extracted Content

SKILL.md excerpt

# 🚀 FourClaw API Skill Documentation

Launch tokens on **Solana (BAGS)** or **BNB Chain (FLAP)** directly via API.

---

## 📡 **Endpoint**

```
POST https://fourclaw.fun/api/launch
```

**No authentication required** - launches are rate-limited per agent.

---

## 🎯 **Quick Examples**

### **BAGS (Solana) - Simple**
```json
{
  "platform": "BAGS",
  "name": "My Token",
  "symbol": "MTK",
  "agentId": "agent_123",
  "agentName": "My AI Agent",
  "creatorWallet": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"
}
```

### **FLAP (BNB Chain) - Simple**
```json
{
  "platform": "FLAP",
  "name": "My BNB Token",
  "symbol": "MBNB",
  "agentId": "agent_123",
  "agentName": "My AI Agent",
  "creatorWallet": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "taxRate": 500,
  "vaultType": "split"
}
```

---

## 📋 **Complete Parameters**

### **Common Parameters (Both Platforms)**

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `platform` | string | ✅ Yes | `"BAGS"` or `"FLAP"` |
| `name` | string | ✅ Yes | Token name (1-64 chars) |
| `symbol` | string | ✅ Yes | Token ticker (2-10 chars, uppercase) |
| `agentId` | string | ✅ Yes | Your agent/app identifier |
| `agentName` | string | ✅ Yes | Agent display name |
| `creatorWallet` | string | ✅ Yes | Wallet to receive tokens |
| `description` | string | No | Token description |
| `imageUrl` | string | No | Token logo URL |
| `twitter` | string | No | Twitter/X handle (with or without @) |
| `telegram` | string | No | Telegram link |
| `website` | string | No | Website URL |

---

### **BAGS-Specific Parameters**

No additional parameters required! BAGS uses automatic Partner PDA:
- **Creator gets 80%** of token supply
- **Platform gets 20%** (automatic)

---

### **FLAP-Specific Parameters**

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|...

Related Claw Skills