Whale-Watching on TON: Tracking Large Wallets in 2026
How to find and read TON whale wallets: Tonviewer, Tonscan, TonAPI, DYOR bots. What exchange inflows mean and how to spot pre-trend accumulation.
- Author
- Denis Kim · research lead · security desk
- Published
Contents21sections
- Why watch whales
- Core tooling
- Tonviewer — the comprehensive front-end
- Tonscan — for specific hashes
- DYOR Telegram bots
- TonAPI — programmatic access
- Watchlist: where to start
- Exchanges (key for inflow signal)
- Funds and teams
- Top-100 wallets by balance
- Signals and interpretation
- 1. Exchange inflow (bearish-likely)
- 2. Exchange outflow to cold storage (bullish-likely)
- 3. Large staking position
- 4. Large jetton buy
- 5. Transfers between related whales
- Empirical filters
- Attribution: who owns this wallet
- What to do with the signal
- What NOT to do
- Bottom line
TL;DR. Whale-watching on TON in 2026 is a working analytical tool: top-100 wallets hold ~35% of supply, and their moves are 100% on-chain in real time. Main tools: Tonviewer (attribution and relations), Tonscan (classic explorer), TonAPI (programmatic), DYOR Telegram bots (free alerts). Exchange inflows often signal selling — ~60% hit rate per 2024-2025 empirical data. Copy-trading is possible but requires diversification and care. Below — where to look, how to read, which signals to filter.
Why watch whales
There’s no privacy on-chain — all balances and transactions are public. Inversion of traditional markets: on NYSE you don’t know who holds Apple shares until a hedge fund files 13F 45 days later. On TON you see the whale’s wallet, history, and new transactions — instantly.
Whale-watching helps with three goals:
- Predicting price moves. Big players often enter and exit before retail. Their exchange inflows correlate with pullbacks, outflows with accumulation.
- Catching trends early. If 5 top whales start buying the same L1 jetton — there’s something happening you haven’t heard in the news.
- Monitoring asset safety. If your favourite protocol’s treasury suddenly heads to an exchange — reason to ask the team if a rug-pull is brewing.
Core tooling
Tonviewer — the comprehensive front-end
Tonviewer (also the tonapi.io frontend) is the most convenient wallet overview on TON in 2026:
- Account section. TON balance + all jettons + NFTs.
- History section. All transactions, filter by type (in/out, jetton, swap, stake).
- Sources section. All wallets this wallet interacted with.
- Attribution. Known wallets (exchanges, funds) tagged. Maintained by TonAPI team + DYOR community.
Key feature: opening a whale wallet on Tonviewer shows a relationship graph — you’ll often see one person owning 3-5 wallets summing to millions of TON.
Tonscan — for specific hashes
Tonscan.com — classic block explorer. Best when you have a specific tx_hash and need details: bounce/no-bounce, exit code, jetton data in the comment.
Less convenient for wallet-level analytics, but unbeatable for single-transaction audit.
DYOR Telegram bots
Free monitoring bots that DM alerts:
- @DyorRobot — whale alerts on ≥50K TON transfers, new jettons with TVL ≥$10K.
- @TonWhaleBot — narrow specialist: only transfers between top-100 wallets and exchanges.
- @TonStatBot — market stats + large transfers in a daily digest.
Adding 1-2 bots to your personal chat keeps you across extremes in real time.
TonAPI — programmatic access
For building your own alert bot or dashboard:
import { TonApiClient } from '@ton-api/client';
const api = new TonApiClient({ apiKey: process.env.TONAPI_KEY });
// Get account transactions
const txs = await api.accounts.getAccountEvents(
'UQA7ml...', // whale address
{ limit: 50 },
);
for (const tx of txs.events) {
if (Math.abs(tx.value_change) > 100_000_000_000_000) { // 100K TON in nanotons
console.log(`WHALE TX: ${tx.event_id}, value: ${tx.value_change / 1e9} TON`);
}
}
TonAPI free tier: 1 request/second — enough for basic dashboards. Paid from $30/month — for production watch with dozens of wallets.
Watchlist: where to start
To avoid tracking random addresses, start with known public wallets:
Exchanges (key for inflow signal)
- OKX hot:
UQA7ml...(exact address may rotate; see “OKX label” on Tonviewer) - Bybit hot/cold: same approach
- MEXC TON: same
- Crypto.com TON: same
Any whale → these addresses → potential “preparing to sell” signal.
Funds and teams
- TON Foundation treasury (several wallets, labelled on Tonviewer).
- Pavel Durov public wallet (if found — labelled).
- Top VC funds: Folius, Pantera and others — public via press releases.
Top-100 wallets by balance
Via DefiLlama TON or Tonviewer Rankings — top-100 by TON balance. Most are exchanges/funds; 10-20 are anonymous “whales” — these are the interesting ones.
Signals and interpretation
1. Exchange inflow (bearish-likely)
Whale moves 200K TON to OKX. Interpretation:
- High probability: prep to sell.
- Lower: rebalance between exchanges, deposit as margin collateral, OTC via exchange.
Action: if you hold TON — don’t panic, but check for similar moves from other top whales within 24 hours. 3+ whales transferring to exchanges simultaneously — solid signal for partial profit-taking.
2. Exchange outflow to cold storage (bullish-likely)
Whale withdraws 200K TON from Bybit to their own cold wallet. Interpretation:
- High probability: long-term hold intent.
- Lower: prep for staking, NFT purchase, DeFi strategy.
Action: combined with other bullish signals (rising DeFi TVL, rising active users) — may justify risk-on positioning.
3. Large staking position
Whale deposits 100K TON into bemo/Tonstakers/Hipo. Interpretation:
- Long-term conviction (staking = 30+ day lockup + unbonding).
- Wants passive yield on big cash.
Action: not a trade signal, but a long-term sentiment indicator.
4. Large jetton buy
Whale swaps 50K TON for jetton-X on STON.fi. Interpretation:
- Whale did the research and took a position.
- Whale is in a pre-sale/IDO.
- Insider info on CEX listing (illegal, but happens).
Action: interesting signal. Look at jetton-X — if it’s sound, consider a small allocation. If jetton-X is a meme without basis — the whale may be the seller.
5. Transfers between related whales
Whale A → Whale B 100K TON. Interpretation:
- Same person owns both wallets.
- OTC deal between two parties.
- Whale A topping up Whale B’s operational wallet (if B is a project team).
Action: boring signal; useful for attribution (linking wallets), not for trading.
Empirical filters
Most whale moves are noise. Filters that work in practice 2024-2025:
- Size ≥50K TON. Smaller — middle-class accumulation, uninteresting.
- Speed. Faster transfer chains (wallet → exchange → hidden in minutes) = more likely a sell intention.
- Wallet not exchange/fund tagged. Internal hot/cold transfers within an exchange are operational, not signals.
- Surrounding activity. 100K TON to exchange on Sunday night with no news = signal. Same transfer 2 hours before a CEX listing = ordinary liquidity provisioning.
Attribution: who owns this wallet
Common question at the analysis stage — “who is this?”. Methods:
- Tonviewer/Tonscan label. Most reliable if present.
- Relationship graph. Wallet only interacting with two OKX-labelled wallets → almost certainly OKX-internal.
- DYOR chats. Telegram channels (e.g. @tondyor) often publish attribution for new large wallets.
- Ask the team. Sometimes project teams respond if their wallets look suspicious.
Full anonymity on TON is possible (mixers, fresh wallets, P2P through CEX), but 80% of whales leave enough trail for basic attribution.
What to do with the signal
Use cases:
- Active trader. Alerts on 5-10 top wallets → copy trades with 5-30 minute lag, max 5% of capital per copy.
- Long-term holder. Watching aggregate exchange inflow/outflow → adjusting momentum position (sell on mass outflow, accumulate on inflow).
- DeFi-pilot. Watching team wallets of invested protocols → early exit on suspicious activity.
- Researcher. Watching top-performing wallets → reverse-engineering their strategies.
What NOT to do
- Don’t dox wallets without consent. Whale-watching is on-chain analysis, not personal-identity discovery. Linking a wallet to a real identity and publishing it is a crime in many jurisdictions.
- Don’t copy-trade with large capital share. A whale can be exit liquidity for another whale; copying at 50% of capital — guaranteed tears.
- Don’t panic on every whale-alert. 80% is noise.
Bottom line
TON in 2026 is one of the most accessible chains for whale-watching: attribution works, tooling (Tonviewer, TonAPI) is clean, free bots deliver real-time alerts. Key signals — exchange inflows and large stakes; filter by size (≥50K TON), speed, context.
Whale-watching won’t make you a millionaire, but it helps you avoid missing meaningful moves and understand what’s happening in the ecosystem before it makes the news.
Frequently asked
What counts as a 'whale' on TON?
Which services are best for whale-watching on TON?
How to tell an exchange wallet from a fund wallet?
What does an exchange inflow tell you?
How to set up alerts on large wallet movements?
Does insider trading happen on TON?
Does copy-trading whales make sense?
Related
- AnalyticsApr 7, 2026
How to read TON on-chain metrics: an analyst's guide
Which TON metrics matter, how they differ from Ethereum's, and how to interpret them correctly. Data sources, traps, methodology — with references.
- BasicsMay 16, 2026
Tonviewer vs TonScan: which explorer to choose
Comparing TON's two main block explorers in 2026: UX, data depth, APIs, failed-tx debugging and phishing trace workflows. Decision matrix per use case.
- BasicsJan 6, 2026
Reading TON transactions in TonScan: 2026 guide
Walking through TonScan and Tonviewer step by step: how to find a transaction by hash, what every field means, how to read messages, jetton transfers
- AnalyticsMay 4, 2026
Where to find TON validator data and yields in 2026
Full overview of TON validator data sources — tonscan, tonstat, official docs. Minimum stake, election cycles, average APY and how to compute the real yield.
- AnalyticsMar 14, 2026
TON DeFi metrics: TVL, volume, active users (2026)
How to read TON's TVL correctly, STON.fi and DeDust volumes, the rise of liquid staking and stablecoin market cap. Concrete numbers with DefiLlama references.
- AnalyticsApr 15, 2026
TON vs BTC and ETH: a historical correlation analysis
How TON has moved relative to BTC and ETH from 2021 to 2026. Coefficients, decorrelation cycles, the Telegram dependency and the role of airdrops in shifting.