From whale-alert-monitor
Tracks large cryptocurrency transactions, whale wallet movements, exchange inflows/outflows, and custom watchlists across blockchains using Python scripts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/whale-alert-monitor:monitoring-whale-activityThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
[Overview](#overview) | [Prerequisites](#prerequisites) | [Instructions](#instructions) | [Output](#output) | [Error Handling](#error-handling) | [Examples](#examples) | [Resources](#resources)
Overview | Prerequisites | Instructions | Output | Error Handling | Examples | Resources
Track large cryptocurrency transactions and whale wallet movements across multiple blockchains. Monitor exchange inflows/outflows, manage custom watchlists, and identify known wallets (exchanges, funds, bridges).
cd ${CLAUDE_SKILL_DIR}/scripts
python whale_monitor.py recentpython whale_monitor.py flowspython whale_monitor.py watchlistpython whale_monitor.py track 0x123...python whale_monitor.py labels --query binanceAlternatively, customize with chain and threshold filters:
python whale_monitor.py recent --chain ethereum # Specific chain
python whale_monitor.py recent --min-value 10000000 # 10000000: $10M+ only
python whale_monitor.py watch 0x123... --name "My Whale" # Add to watchlist
python whale_monitor.py labels --type exchange # Or use type filter
Transaction Types:
Flow Analysis:
--format json)See ${CLAUDE_SKILL_DIR}/references/errors.md for:
Example 1: View $10M+ whale transactions on Ethereum:
python whale_monitor.py recent --chain ethereum --min-value 10000000 # 10000000 = 10M limit
Example 2: Analyze if whales are selling:
python whale_monitor.py flows --chain ethereum
Example 3: Track a known whale wallet:
python whale_monitor.py watch 0x28c6c... --name "Binance Cold"
python whale_monitor.py track 0x28c6c...
Example 4: Export to JSON for further analysis:
python whale_monitor.py recent --format json > whales.json
See ${CLAUDE_SKILL_DIR}/references/examples.md for more usage patterns.
${CLAUDE_SKILL_DIR}/references/implementation.md - Flow analysis, wallet database, multi-chain detailsnpx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin whale-alert-monitorTracks real-time crypto buy/sell activity from Smart Money, KOL, and personal follow wallets via GMGN API. Use for whale alerts, meme token copy-trade signals, or checking a wallet's followed tokens on Solana, BSC, Base, or Ethereum.
Tracks smart money, whale, and KOL on-chain activity via DEX transaction feeds, aggregated buy signals, and top trader leaderboards by PnL/win rate/volume/ROI. Also handles Market API payment and quota questions.
Queries EVM blockchain data on Ethereum, Polygon, Arbitrum: transactions, address balances/tokens/history, blocks via Python CLI with Etherscan APIs.