Install
openclaw skills install shenmeng-whale-alert-monitor-2025虚拟币大户账户预警监测助手 - 实时监控鲸鱼钱包动向、大额转账、交易所资金流向。 当用户需要以下功能时触发此skill: (1) 监控特定大户/鲸鱼钱包的交易活动 (2) 追踪大额资金流入/流出交易所 (3) 设置自定义阈值的大额转账预警 (4) 分析鲸鱼持仓变化和积累/派发模式 (5) 接收Telegram/Discord实时预警通知 (6) 生成鲸鱼行为报告和趋势分析
openclaw skills install shenmeng-whale-alert-monitor-2025💰 本 Skill 已接入 SkillPay 付费系统
- 每次调用费用:0.01 USDT
- 支付方式:BNB Chain USDT
- 请先确保账户有足够余额
虚拟币大户账户预警监测助手 — 追踪聪明钱的每一步
# 1. 监控特定钱包
python scripts/whale_tracker.py --wallet 0x... --chain ethereum
# 2. 设置大额转账预警
python scripts/transfer_monitor.py --min-eth 1000 --notify telegram
# 3. 监控交易所流入流出
python scripts/exchange_flow.py --exchange binance --threshold 5000000
# 4. 分析鲸鱼持仓
python scripts/holding_analyzer.py --wallet 0x... --days 30
# 5. 启动全面监控
python scripts/monitor_daemon.py --config config.yaml
# config/whale_monitor.yaml
monitoring:
# 监控的钱包列表
wallets:
- address: "0x742d35Cc6634C0532925a3b8D4E6D3b6e8d3e8D3"
label: "Smart Whale A"
chains: [ethereum, arbitrum]
- address: "0x8ba1f109551bD432803012645Hac136c82C3e8D3"
label: "Institution B"
chains: [ethereum]
# 大额转账阈值
thresholds:
ETH: 1000
WBTC: 50
USDC: 1000000
USDT: 1000000
# 交易所监控
exchanges:
- name: binance
addresses:
- "0x3f5CE5FBFe3E9af3971dD833D26bA9b5C936f0bE"
in_threshold: 5000000
out_threshold: 5000000
- name: coinbase
addresses:
- "0x71660c4005BA85c37ccec55d0C4493E66Fe775d3"
# 通知设置
notifications:
telegram:
enabled: true
bot_token: ${TELEGRAM_BOT_TOKEN}
chat_id: ${TELEGRAM_CHAT_ID}
discord:
enabled: true
webhook_url: ${DISCORD_WEBHOOK_URL}
# 检查间隔(秒)
interval: 60
追踪特定鲸鱼钱包的所有活动
# 基础用法
python scripts/whale_tracker.py --wallet 0x742d... --chain ethereum
# 查看历史交易
python scripts/whale_tracker.py --wallet 0x742d... --history --days 7
# 分析持仓变化
python scripts/whale_tracker.py --wallet 0x742d... --analyze
监控大额转账并发送预警
# 监控ETH大额转账
python scripts/transfer_monitor.py --token ETH --min-value 1000 --interval 60
# 监控USDT转账
python scripts/transfer_monitor.py --token USDT --min-value 1000000 --notify telegram
# 多链监控
python scripts/transfer_monitor.py --config thresholds.yaml
监控交易所资金流向
# 监控币安
python scripts/exchange_flow.py --exchange binance --threshold 5000000
# 对比多个交易所
python scripts/exchange_flow.py --compare binance,coinbase,okx
# 生成流向报告
python scripts/exchange_flow.py --report --days 7
分析鲸鱼持仓和盈亏
# 分析持仓
python scripts/holding_analyzer.py --wallet 0x742d...
# 追踪成本基础
python scripts/holding_analyzer.py --wallet 0x742d... --cost-basis
# 生成持仓报告
python scripts/holding_analyzer.py --wallet 0x742d... --report
预警管理系统
# 列出所有预警
python scripts/alert_manager.py --list
# 测试预警通知
python scripts/alert_manager.py --test --channel telegram
# 导出预警历史
python scripts/alert_manager.py --export --since 2024-01-01
守护进程模式(持续监控)
# 启动监控
python scripts/monitor_daemon.py --config config.yaml
# 后台运行
python scripts/monitor_daemon.py --config config.yaml --daemon
# 停止监控
python scripts/monitor_daemon.py --stop
| 数据源 | 用途 | 免费额度 |
|---|---|---|
| Etherscan | 基础链上数据 | 100K calls/day |
| Alchemy | 高级链上查询 | 300M CU/month |
| Moralis | 跨链数据 | 免费版可用 |
| Arkham | 地址标签 | 免费版有限制 |
内置主要交易所的热钱包地址:
⚠️ 本工具仅供信息监控,不构成投资建议
# 识别积累模式
if balance_change > 0 and duration > 7_days:
pattern = "accumulating"
# 识别派发模式
if balance_change < 0 and exchange_inflow > threshold:
pattern = "distributing"
# 识别洗盘模式
if frequent_transfers and small_amounts:
pattern = "wash_trading"
# 只在特定条件下预警
if whale_score > 80 and token_safety > 70:
send_alert()
追踪聪明钱,但要有自己的判断。