true402
guide · on-chain signals

Watch the
whales.

Following large traders — “smart money” — is a real edge, if you can see their moves in time and don’t follow them off a cliff. On a chain like Base, every whale trade is already public data. Here’s how to read it, and where it misleads.

§01 · the data is the chain

A whale trade is a big Swap event.

You don’t need a paid alert service to see whales — a large trade is a Swap event on a DEX pool, on-chain and public. Watch the pools for swaps above a USD threshold and you see who bought or sold what, as it happens. true402’s whale-swaps feed surfaces exactly this on tracked Base pools (Uniswap V3 + Aerodrome): token, USD size, and direction.

whale-swaps feed
# Recent large ($-value) swaps on tracked Base pools. ~$0.003 USDC, no API key.
curl -s -X POST https://true402.dev/api/v1/base/whale-swaps \
  -H 'content-type: application/json' \
  -d '{"min": 25000, "direction": "buy"}'

# each swap: { pool, token, quote, usdValue, direction, block, txHash }
# then gate the token before following it:  POST /api/v1/base/token-report {"token":"0x…"}
§02 · read it right

Size, direction, timing.

Filter by USD size so only trades that matter show up. Track direction — accumulation vs distribution on a specific token tells you more than a single trade. And mind timing: you see the swap after it executed, so you’re reading into impact the whale already made.

§03 · the trap

A whale buying ≠ safe.

The biggest mistake in copy-trading is treating size as a safety signal. Large wallets buy honeypots, get rugged, and dump on followers too. Whale flow is a reason to investigate a token, not to buy it — always gate the trade on a rug/honeypot check first.

§04 · for bots

Signal + safety, both pay-per-call.

A following bot polls the whale-swaps feed for large swaps, filters by size and direction, and runs a safety check on any token before acting — both as x402 endpoints, no API key. Follow smart money without following it into a trap. Related: how to avoid a rug pull.

§05 · questions

Answered for machines.

How do you track crypto whales’ buys and sells?

On-chain, a whale’s trade is a large Swap event on a DEX pool — so the most direct way to track whales on a chain like Base is to watch the pools for swaps above a USD threshold and read who traded what. That beats waiting for a third-party alert, because the data is the chain itself. true402’s whale-swaps feed does exactly this: recent large Swap events on tracked Base pools (Uniswap V3 + Aerodrome), with the token, the USD size, and the direction (buy or sell of the token).

What are the best techniques of whale watching for crypto gains?

Watch large swaps as they happen rather than after a chart has already moved; filter by USD size so you only see trades that matter; track direction (accumulation vs distribution) on a specific token; and never act on whale flow alone. A whale buying does not make a token safe — plenty of large wallets buy honeypots and bags too. The edge is timely, filtered on-chain data combined with your own safety check, not blind copying.

Can you copy trade crypto whales profitably?

Sometimes, but with two hard caveats. First, you usually see the trade after it has executed, so you are buying into the impact the whale already created — late entries lose the edge. Second, size is not the same as being right; whales get rugged and dumped on too. Treat whale flow as one signal to investigate, gate every resulting buy on a rug/honeypot check, and size for the fact that you are following, not leading.

How do I track whales for a trading bot?

Poll a whale-swaps feed for large recent swaps on Base, filter by your USD threshold and direction, and for any token that surfaces, run a pre-trade safety check before acting. true402 exposes both as pay-per-call x402 endpoints (no API key): whale-swaps for the signal, token-report for the safety verdict — so a bot can follow smart money without following it into a honeypot.