Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Give agents more agency

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    jeremylongshore

    monitoring-whale-activity

    jeremylongshore/monitoring-whale-activity
    Data & Analytics
    1,221
    1 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    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...

    SKILL.md

    Monitoring Whale Activity

    Contents

    Overview | Prerequisites | Instructions | Output | Error Handling | Examples | Resources

    Overview

    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).

    Prerequisites

    1. Install Python 3.8+ with requests library
    2. Optionally obtain Whale Alert API key (free tier available for live data)
    3. Verify internet access for API calls

    Instructions

    Step 1: Navigate to Scripts Directory

    cd ${CLAUDE_SKILL_DIR}/scripts
    

    Step 2: Choose a Command

    1. View recent whale transactions: python whale_monitor.py recent
    2. Analyze exchange flows: python whale_monitor.py flows
    3. Manage watchlist: python whale_monitor.py watchlist
    4. Track specific wallet: python whale_monitor.py track 0x123...
    5. Search known labels: python whale_monitor.py labels --query binance

    Alternatively, 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
    

    Step 3: Interpret Results

    Transaction Types:

    • DEPOSIT: Sent to exchange (potential selling pressure)
    • WITHDRAWAL: From exchange (accumulation signal)
    • TRANSFER: Wallet to wallet (whale movement)

    Flow Analysis:

    • Net positive flow to exchanges = selling pressure
    • Net negative flow from exchanges = buying pressure

    Output

    • Real-time whale transactions with USD values
    • Labeled wallets (exchanges, funds, bridges, protocols)
    • Exchange inflow/outflow summaries
    • Custom watchlist tracking
    • JSON, table, or alert format output (--format json)

    Error Handling

    See ${CLAUDE_SKILL_DIR}/references/errors.md for:

    • API rate limit handling and backoff
    • Network timeout recovery
    • Invalid address format validation
    • Price service fallbacks

    Examples

    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.

    Resources

    • ${CLAUDE_SKILL_DIR}/references/implementation.md - Flow analysis, wallet database, multi-chain details
    • Whale Alert - Real-time whale transaction API
    • Etherscan - Ethereum blockchain explorer
    • CoinGecko - Price data API
    Recommended Servers
    Blockscout MCP Server
    Blockscout MCP Server
    Paradex MCP Server
    Paradex MCP Server
    Solana DeFi MCP Server
    Solana DeFi MCP Server
    Repository
    jeremylongshore/claude-code-plugins-plus-skills
    Files