tessl install github:jeremylongshore/claude-code-plugins-plus-skills --skill monitoring-whale-activitygithub.com/jeremylongshore/claude-code-plugins-plus-skills
Track large cryptocurrency transactions and whale wallet movements in real-time. Use when tracking large holder movements, exchange flows, or wallet activity. Trigger with phrases like "track whales", "monitor large transfers", "check whale activity", "exchange inflows", or "watch wallet".
Review Score
88%
Validation Score
12/16
Implementation Score
88%
Activation Score
90%
Track large cryptocurrency transactions and whale wallet movements across multiple blockchains. Monitor exchange inflows/outflows, manage watchlists, and identify known wallets (exchanges, funds, bridges).
Before using this skill, ensure you have:
cd {baseDir}/scriptsRecent Whale Transactions:
python whale_monitor.py recent # All chains
python whale_monitor.py recent --chain ethereum # Specific chain
python whale_monitor.py recent --min-value 10000000 # $10M+ onlyExchange Flow Analysis:
python whale_monitor.py flows # Overall exchange flows
python whale_monitor.py flows --chain ethereum # Chain-specificWatchlist Management:
python whale_monitor.py watchlist # View watchlist
python whale_monitor.py watch 0x123... --name "My Whale" # Add to watchlist
python whale_monitor.py unwatch 0x123... # Remove from watchlistTrack Specific Wallet:
python whale_monitor.py track 0x123... # Track wallet activitySearch Known Labels:
python whale_monitor.py labels --query binance # Search by name
python whale_monitor.py labels --type exchange # List by typeTransaction Types:
Flow Analysis:
See {baseDir}/references/errors.md for:
View $10M+ whale transactions on Ethereum:
python whale_monitor.py recent --chain ethereum --min-value 10000000Analyze if whales are selling (depositing to exchanges):
python whale_monitor.py flows --chain ethereumTrack a known whale wallet:
python whale_monitor.py watch 0x28c6c... --name "Binance Cold"
python whale_monitor.py track 0x28c6c...Export to JSON for further analysis:
python whale_monitor.py recent --format json > whales.jsonSee {baseDir}/references/examples.md for more usage patterns.