AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Whale Watching Guide

skill-sperax-sperax-skills-whale-watching-guide · by Sperax

Guide to tracking large cryptocurrency transactions and whale wallets — tools, on-chain signals, wallet labeling, exchange flow analysis, and smart money tracking. Use when helping users monitor whale activity, interpret large transactions, or follow institutional movements.

No reviews yet
0 installs
35 views
0.0% view→install

Install

$ agentstack add skill-sperax-sperax-skills-whale-watching-guide

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sperax-sperax-skills-whale-watching-guide)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Whale Watching Guide? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Whale Watching Guide

Tracking large wallet activity is one of the most valuable on-chain analysis techniques. This guide covers tools, signals, and interpretation.

What Is Whale Watching?

Monitoring wallets with significant holdings (>$1M+) to gain insight into:

  • Accumulation — are big players buying?
  • Distribution — are they selling?
  • Smart money moves — what protocols are they using?
  • Exchange flows — are funds moving to/from exchanges?

Key Tools

Free Tools

| Tool | What It Does | Access | |------|-------------|--------| | Whale Alert | Alerts on large transfers (BTC, ETH, stablecoins) | Free (Twitter/Telegram), API (paid) | | Arkham Intelligence | Wallet labeling, entity tracking, transaction explorer | Free (web), API (limited) | | DeBank | Wallet portfolio viewer, DeFi position tracking | Free (web) | | Etherscan/Arbiscan | Transaction history, token holdings, internal txs | Free (web + API) | | Nansen | Smart money tracking, wallet labels, token god mode | Paid (industry standard) | | Zapper | Multi-chain portfolio tracking | Free (web) | | DeFi Llama | Protocol inflow/outflow | Free API |

On-Chain Data Platforms

| Platform | Strength | Access | |----------|----------|--------| | Dune Analytics | Custom SQL queries on blockchain data | Free (public queries) | | The Graph | GraphQL queries on indexed blockchain events | Free tier | | Flipside Crypto | SQL queries + community dashboards | Free tier |

Whale Signals and Interpretation

Exchange Flows

The most reliable whale signal:

| Signal | What It Means | Implication | |--------|--------------|-------------| | Large deposit TO exchange | Whale preparing to sell | Bearish | | Large withdrawal FROM exchange | Whale moving to cold storage / DeFi | Bullish | | Stablecoin deposit TO exchange | Whale preparing to buy | Bullish | | Stablecoin withdrawal FROM exchange | Whale moving stables to DeFi / cold | Neutral to bullish |

Exchange inflows ↑ = Selling pressure incoming
Exchange outflows ↑ = Accumulation / DeFi usage

Token Movements

| Pattern | Interpretation | |---------|---------------| | Whale buys token on DEX | Bullish — accumulation | | Whale sells token on DEX | Bearish — distribution | | Whale moves to new protocol | Smart money finding yield | | Whale moves to stablecoins | Risk-off positioning | | Large transfer between unknown wallets | Could be internal transfer (noise) |

DeFi Position Changes

| Activity | What to Watch | |----------|--------------| | Large Aave/Compound supply | Whale parking capital — may borrow against it | | Large LP deposit | Whale committing to protocol — bullish signal | | LP withdrawal | Whale exiting — check if TVL is declining broadly | | Stablecoin minting (DAI, USDs) | Whale leveraging or seeking yield | | veSPA/veCRV lock | Long-term commitment to protocol governance |

> Sperax signal: Large veSPA lock events indicate institutional conviction in Sperax governance. Large USDs minting suggests demand for auto-yield stablecoins.

Tracking Strategies

Strategy 1: Follow Known Smart Money

Identify wallets with strong track records:

  1. Find wallets that bought tokens early (before major pumps)
  2. Track their current positions
  3. Set alerts when they make new moves

How to find smart money wallets:

  • Arkham Intelligence labels (VCs, funds, traders)
  • Nansen "Smart Money" labels
  • Early participants in successful protocols
  • Top PnL wallets on trading leaderboards

Strategy 2: Exchange Flow Analysis

1. Monitor large deposits/withdrawals on major exchanges
2. Track net flow over 7-day rolling window
3. Significant net outflow = bullish accumulation signal
4. Significant net inflow = bearish distribution signal

Strategy 3: Stablecoin Supply Tracking

1. Monitor USDT/USDC minting events (Tether Treasury, Circle)
2. Large mint = new money entering crypto
3. Track stablecoin exchange reserves
4. Rising exchange stablecoin balance = "dry powder" ready to buy

Strategy 4: Protocol TVL Monitoring

Via DeFi Llama:

GET https://api.llama.fi/protocol/{slug}

Monitor: chainTvls, tvl, change_1d, change_7d

Sharp TVL increases often correlate with whale deposits.

Dune Analytics Queries

Example: Top ETH Holders Activity

-- Large ETH transfers in last 24h
SELECT
    block_time,
    "from",
    "to",
    value / 1e18 as eth_amount,
    value / 1e18 * p.price as usd_value
FROM ethereum.transactions t
LEFT JOIN prices.usd p ON p.symbol = 'ETH' 
  AND date_trunc('hour', t.block_time) = p.minute
WHERE block_time > now() - interval '24 hours'
  AND value / 1e18 > 100  -- >100 ETH
ORDER BY value DESC
LIMIT 50

Example: Exchange Net Flow

-- Net ETH flow to/from Binance (last 7 days)
SELECT
    date_trunc('day', block_time) as day,
    SUM(CASE WHEN "to" IN (/* binance addresses */) THEN value/1e18 ELSE 0 END) as inflow,
    SUM(CASE WHEN "from" IN (/* binance addresses */) THEN value/1e18 ELSE 0 END) as outflow
FROM ethereum.transactions
WHERE block_time > now() - interval '7 days'
GROUP BY 1
ORDER BY 1

Alert Setup

What Whale Alerts to Set

| Alert | Threshold | Why | |-------|-----------|-----| | BTC exchange transfers | >500 BTC | Major sell/buy signal | | ETH exchange transfers | >5,000 ETH | Major sell/buy signal | | Stablecoin transfers | >$10M | Large capital movement | | Protocol TVL change | >10% in 24h | Whale deposit/withdrawal | | Token unlock events | Any significant | Potential sell pressure | | Governance proposals | Any | May affect protocol direction |

Alert Sources

  • Whale Alert Twitter/Telegram (free)
  • Nansen alerts (paid)
  • Etherscan alerts (free, per-address)
  • DeFi Llama notifications (check protocol TVL)
  • Custom Dune alerts (set up queries with thresholds)

Red Flags

| Signal | Risk | |--------|------| | Founder/team wallet selling large amounts | Potential insider exit | | Exchange listing followed by large insider deposits | Dump incoming | | Sudden TVL drop without news | Whale exit — investigate why | | Multiple large wallets selling simultaneously | Coordinated dump | | Large token transfers to mixer | Potential hack proceeds |

Agent Tips

  1. Context is everything — a large transfer might be an internal wallet reorganization, not a sale
  2. Don't panic over single transfers — look for patterns over days/weeks
  3. Exchange flow > individual transfers for macro signals
  4. Check if addresses are labeled — Arkham and Etherscan often label major wallets
  5. Stablecoin flows are leading indicators — money moves to stablecoins before it moves to tokens
  6. DeFi Llama TVL is a free whale tracker — sharp TVL changes = whale activity
  7. Sperax signals: Monitor USDs supply changes on DeFi Llama and veSPA locking events on Arbiscan for protocol health

Links

  • Whale Alert: https://whale-alert.io
  • Arkham Intelligence: https://platform.arkhamintelligence.com
  • DeBank: https://debank.com
  • Dune Analytics: https://dune.com
  • DeFi Llama: https://defillama.com
  • Etherscan: https://etherscan.io
  • Arbiscan: https://arbiscan.io

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.