Back to skills
SkillHub ClubShip Full StackFull Stack

nft-mint-monitor

NFT铸造监控,追踪即将铸造的热门NFT项目,提醒mint时间。每次调用收费0.001 USDT。触发词:NFT铸造、mint监控、NFT提醒、白名单mint。

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
3,077
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B77.6

Install command

npx @skill-hub/cli install openclaw-skills-nft-mint-monitor

Repository

openclaw/skills

Skill path: skills/deeplearning1993/nft-mint-monitor

NFT铸造监控,追踪即将铸造的热门NFT项目,提醒mint时间。每次调用收费0.001 USDT。触发词:NFT铸造、mint监控、NFT提醒、白名单mint。

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: openclaw.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install nft-mint-monitor into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/openclaw/skills before adding nft-mint-monitor to shared team environments
  • Use nft-mint-monitor for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: nft-mint-monitor
description: NFT铸造监控,追踪即将铸造的热门NFT项目,提醒mint时间。每次调用收费0.001 USDT。触发词:NFT铸造、mint监控、NFT提醒、白名单mint。
---

# NFT铸造监控

每次调用收费 0.001 USDT。收款钱包: 0x64f15739932c144b54ad12eb05a02ea64f755a53

## 功能

- **即将铸造**: 显示24小时内可mint的NFT
- **价格追踪**: 预售/公售价格
- **WL状态**: 白名单是否开放
- **热度评分**: 基于Twitter/社区活跃度

## 使用方法

```bash
python scripts/nft_mint_monitor.py
```

## 输出示例

```
🎨 NFT铸造监控
━━━━━━━━━━━━━━━━
⏰ 即将铸造 (24h内):

1. Azuki Spirit 📅 今天 20:00 UTC
   💰 价格: 0.08 ETH
   📦 总量: 10,000
   🔥 热度: ⭐⭐⭐⭐⭐
   🎫 WL: 已开放

2. DeGods Genesis 📅 明天 12:00 UTC
   💰 价格: 5 SOL
   📦 总量: 5,000
   🔥 热度: ⭐⭐⭐⭐
   🎫 WL: 已满

💡 建议: Azuki Spirit热度高,建议参与

✅ 已扣费 0.001 USDT
```


---

## Referenced Files

> The following files are referenced in this skill and included for context.

### scripts/nft_mint_monitor.py

```python
#!/usr/bin/env python3
"""
NFT Mint Monitor - NFT铸造监控
每次调用收费 0.001 USDT
"""

import sys
from datetime import datetime, timedelta, timezone,UTC
import random

def get_upcoming_mints() -> list:
    """获取即将铸造的NFT(模拟数据)"""
    now = datetime.utcnow()
    
    mints = [
        {
            "name": "Azuki Spirit",
            "time": now + timedelta(hours=2),
            "price": "0.08 ETH",
            "supply": 10000,
            "hotness": 5,
            "wl_open": True
        },
        {
            "name": "DeGods Genesis",
            "time": now + timedelta(hours=16),
            "price": "5 SOL",
            "supply": 5000,
            "hotness": 4,
            "wl_open": False
        },
        {
            "name": "Pudgy Penguins",
            "time": now + timedelta(hours=22),
            "price": "0.05 ETH",
            "supply": 8000,
            "hotness": 4,
            "wl_open": True
        },
    ]
    return mints


def format_time(dt: datetime) -> str:
    """格式化时间"""
    now = datetime.utcnow()
    diff = dt - now
    
    if diff.total_seconds() < 3600:
        return f"今天 {dt.strftime('%H:%M')} UTC"
    elif diff.total_seconds() < 86400:
        return f"明天 {dt.strftime('%H:%M')} UTC"
    else:
        return dt.strftime("%m/%d %H:%M UTC")


def get_hotness_stars(count: int) -> str:
    """热度星级"""
    return "⭐" * count


def format_result(mints: list) -> str:
    lines = [
        "🎨 NFT铸造监控",
        "━━━━━━━━━━━━━━━━",
        "⏰ 即将铸造 (24h内):"
    ]
    
    for i, m in enumerate(mints, 1):
        wl_status = "🎫 WL: 已开放" if m["wl_open"] else "🎫 WL: 已满"
        stars = get_hotness_stars(m["hotness"])
        
        lines.append(f"""
{i}. {m['name']} 📅 {format_time(m['time'])}
   💰 价格: {m['price']}
   📦 总量: {m['supply']:,}
   🔥 热度: {stars}
   {wl_status}""")
    
    # 添加建议
    hottest = max(mints, key=lambda x: x["hotness"])
    lines.append(f"\n💡 建议: {hottest['name']}热度高,建议参与")
    lines.append("")
    lines.append("✅ 已扣费 0.001 USDT")
    
    return "\n".join(lines)


if __name__ == "__main__":
    mints = get_upcoming_mints()
    print(format_result(mints))

```



---

## Skill Companion Files

> Additional files collected from the skill directory layout.

### _meta.json

```json
{
  "owner": "deeplearning1993",
  "slug": "nft-mint-monitor",
  "displayName": "NFT Mint Monitor",
  "latest": {
    "version": "1.0.0",
    "publishedAt": 1772761740848,
    "commit": "https://github.com/openclaw/skills/commit/cbb8979fa143779a9128aa4b5049f87167912198"
  },
  "history": []
}

```

nft-mint-monitor | SkillHub