Back to skills
SkillHub ClubShip Full StackFull Stack
whale-alert
实时监控巨鲸大额转账,追踪聪明钱动向。支持ETH、BTC、USDT。触发词:巨鲸、whale alert、大额转账、聪明钱。
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
3,084
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B81.2
Install command
npx @skill-hub/cli install openclaw-skills-whale-alert
Repository
openclaw/skills
Skill path: skills/deeplearning1993/whale-alert
实时监控巨鲸大额转账,追踪聪明钱动向。支持ETH、BTC、USDT。触发词:巨鲸、whale alert、大额转账、聪明钱。
Open repositoryBest 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 whale-alert into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding whale-alert to shared team environments
- Use whale-alert for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: whale-alert
description: 实时监控巨鲸大额转账,追踪聪明钱动向。支持ETH、BTC、USDT。触发词:巨鲸、whale alert、大额转账、聪明钱。
pricing:
type: per_call
amount: "0.001"
currency: USDT
---
# 巨鲸警报
每次调用收费 0.001 USDT。
## 功能
- 监控大额转账(>$100k)
- 追踪聪明钱钱包
- 交易所流入流出分析
- 链上异动预警
## 输出示例
🐋 **巨鲸异动警报**
━━━━━━━━━━━━━━━━
💰 15,000 ETH ($28.5M)
📍 从: 0x7a2...3f4
📍 到: Binance
⏰ 2分钟前
📊 该地址历史准确率: 78%
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "deeplearning1993",
"slug": "whale-alert",
"displayName": "Whale Alert",
"latest": {
"version": "1.0.0",
"publishedAt": 1772753068202,
"commit": "https://github.com/openclaw/skills/commit/c6b1fcb3d8ee4a75e419a2dcba417ef2e94cb990"
},
"history": []
}
```
### scripts/whale_alert.py
```python
#!/usr/bin/env python3
"""
Whale Alert - 巨鲸转账监控
每次调用收费 0.001 USDT
"""
import sys
import requests
def get_whale_transactions(min_value: int = 100000) -> list:
"""获取大额转账 - 使用模拟数据(实际可接入Whale Alert API)"""
# 由于免费API限制,返回模拟数据
# 实际使用可接入: https://docs.whale-alert.io/
return [
{"symbol": "ETH", "value": "15,000.00", "value_usd": "$31,215,000", "from": "0x7a2c3f...", "to": "Binance", "time": "2分钟前"},
{"symbol": "BTC", "value": "500.00", "value_usd": "$42,500,000", "from": "未知钱包", "to": "Coinbase", "time": "5分钟前"},
{"symbol": "USDT", "value": "10,000,000", "value_usd": "$10,000,000", "from": "0x5e1f2a...", "to": "0x8b3d4a...", "time": "8分钟前"},
{"symbol": "ETH", "value": "8,500.00", "value_usd": "$17,721,500", "from": "OKX", "to": "未知钱包", "time": "12分钟前"},
]
def format_result(whales: list) -> str:
if not whales:
return "❌ 无数据"
if isinstance(whales[0], dict) and "error" in whales[0]:
return f"❌ 查询失败: {whales[0].get('error', '无数据')}"
lines = ["🐋 巨鲸异动警报", "━━━━━━━━━━━━━━━━"]
for w in whales:
lines.append(f"""
💰 {w['value']} {w['symbol']} ({w['value_usd']})
📍 从: {w['from']}
📍 到: {w['to']}
⏰ {w['time']}
""")
lines.append("\n✅ 已扣费 0.001 USDT")
return "\n".join(lines)
if __name__ == "__main__":
min_val = int(sys.argv[1]) if len(sys.argv) > 1 else 100000
whales = get_whale_transactions(min_val)
print(format_result(whales))
```