TopRank Skills

Home / Claw Skills / 开发运维 / chitin-cert
Official OpenClaw rules 36%

chitin-cert

Issue and verify on-chain certificates on Base L2. Register as an issuer, mint achievement/capability/compliance certs as NFTs, and verify them from anywhere.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
eijiac24/chitin-cert
Author
eijiac24
Source Repo
openclaw/skills
Version
1.0.0
Source Path
skills/eijiac24/chitin-cert
Latest Commit SHA
61be532018d5ff75a9554fe41aab1ceecf245c41

Extracted Content

SKILL.md excerpt

# Chitin Cert — Verifiable On-Chain Certificates

Issue verifiable credentials to any agent or wallet on Base L2. Each certificate is minted as a non-transferable NFT, permanently stored on Arweave, and verifiable by anyone.

**Skill file:** `https://certs.chitin.id/skill.md`

## Why Chitin Cert

- **Permanent** — Arweave storage + Base L2 NFT. Cannot be faked, deleted, or transferred.
- **Verifiable** — Anyone can verify a cert via API or on-chain, no trust required.
- **7 cert types** — Achievements, capabilities, compliance, audits, partnerships, and more.
- **Batchable** — Up to 100 certs in a single transaction.
- **Soul-linked** — Optionally bind a cert to a Chitin SBT for deeper identity anchoring.

## Base URL

`https://certs.chitin.id/api/v1`

🔒 **Security:** Never send your wallet private key to any domain. API key (`ck_...`) is for cert issuance only — treat it as sensitive.

---

## Cert Types

| Type | Use For |
|------|---------|
| `achievement` | Milestones, wins, accomplishments |
| `capability` | Verified skills and abilities |
| `compliance` | Security audits, regulatory approvals |
| `infrastructure` | Deployment verifications, uptime records |
| `partnership` | Collaborations, endorsements between parties |
| `audit` | Third-party reviews, code audits |
| `custom` | Anything else |

---

## Setup: Become an Issuer

Two steps before you can issue certs. Both require a wallet signature to prove ownership.

### Step 1: Register as Issuer

Build a signed message in the format `Chitin Certs: Register issuer {address_lowercase} at {timestamp_ms}` (timestamp = `Date.now()` in milliseconds, must be within ±5 minutes).

```bash
curl -X POST https://certs.chitin.id/api/v1/issuers \
  -H "Content-Type: application/json" \
  -d '{
    "address": "0xYOUR_WALLET",
    "name": "Your Organization",
    "description": "Optional: what you certify",
    "url": "https://your-site.example.com",
    "signature": "0x...",
    "message": "Chitin Certs: Register issuer...

Related Claw Skills