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".
Install with Tessl CLI
npx tessl i github:jeremylongshore/claude-code-plugins-plus-skills --skill monitoring-whale-activity88
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
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.
22fc789
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.