DEV Community

Nic Jordan
Nic Jordan

Posted on

How Solana Whale Alerts Work on SolNexus: From On-Chain Flow to Telegram

How Solana Whale Alerts Work on SolNexus: From On-Chain Flow to Telegram

Most traders discover whale movement after the chart moves. SolNexus whale alerts are designed to close that lag: on-chain flow is detected, scored, and routed to your Telegram before the candle prints. Here is how the system works, why it is built the way it is, and what separates it from delayed APIs and copy-trading terminals.

What a Whale Alert Actually Is

A whale alert is not a balance check. On SolNexus, it is a filtered on-chain event: a tracked wallet moves tokens, interacts with a DEX pool, or accumulates a position that crosses the platform's quality and confidence thresholds. The alert you receive is not raw blockchain data — it is the output of a two-stage pipeline that first gathers the flow and then decides whether the flow is worth your attention.

The first stage is the WalletAlertPoller, which maintains real-time connections to Helius RPC. This is the same infrastructure that powers Solana transaction indexing, but the poller is scoped specifically to a curated list of whale and shark wallets. When one of those wallets executes a transaction, the poller captures it, extracts the token mints and amounts, and passes the event downstream.

The Helius RPC Pipeline

Helius is a Solana RPC provider that exposes enhanced transaction data beyond vanilla JSON-RPC. The WalletAlertPoller uses Helius to subscribe to account changes for each tracked wallet in near real-time. This is not polling on a timer — it is a push-based subscription. When the wallet signs and sends a transaction, Helius delivers the parsed transaction to SolNexus within a slot or two.

The poller then applies deterministic filters: minimum transfer size, wallet tier classification, and token whitelist / blacklist rules. A whale wallet moving 0.1 SOL into a known memecoin with zero liquidity does not generate an alert. A whale wallet moving 500 SOL into a Raydium pool that has just crossed its Emit Gate token quality threshold does. This filtering happens server-side, so you are not paying bandwidth or compute cost for noise.

Wallet Tiers and Signal Types

SolNexus classifies tracked wallets into tiers based on historical P&L, trading volume, and token diversity. The whale list is partly static, curated from documented smart-money wallets, and partly dynamic — Pro users can add custom tracked wallets to their own watchlists.

When a whale wallet interacts with a DEX pool, the alert includes the wallet tier, the token quality score, and the direction of flow (buy vs. sell vs. add liquidity). This is important because not all whale flow is actionable. A tier-1 whale adding liquidity during a quiet market may be a signal that the pool is about to attract attention; the same tier-1 whale selling into thin liquidity may be a distribution event. The alert gives you the raw data; the ML layer gives you the context.

From Alert to Telegram: The Routing Path

After the WalletAlertPoller extracts a candidate event, it is passed to the scoring pipeline. The 4-layer ML stack evaluates the signal: L1 applies a deterministic formula for confidence and execution confidence; L2 adjusts those scores based on how similar signals have performed historically; L3 uses a Thompson Sampling bandit with Beta(α,β) posteriors to balance exploration and exploitation; L4 applies the execution-policy score.

Only signals that clear the Emit Gate reach you. The gate requires confidence ≥ 50, execution_confidence ≥ 58, and token_quality ≥ 62. Sub-threshold signals are silently dropped. This means your Telegram alert is already screened for conviction. You are not waking up to every wallet movement — you are waking up to movements that passed three independent thresholds.

Whale Flow and DEX Pool Breakouts Are Complementary

One of the most useful features of SolNexus is that whale alerts and DEX pool breakouts are not separate products. The TokenPricePoller monitors liquidity, volume, and price changes across Raydium, Orca, and Meteora. When a pool breakout signal and a whale flow signal converge on the same token, they appear in the same alert thread. This convergence is often the highest-conviction setup: smart money is accumulating, and the market structure is breaking out simultaneously.

The alert thread shows both the pool metrics and the wallet flow, plus the unified confidence score. You do not need to switch tabs to correlate whale buys with DEX volume spikes. The product does that correlation server-side before the alert reaches you.

Why On-Chain Verification Matters

APIs that index wallet activity are common. What is less common is the ability to verify every alert against on-chain data. On SolNexus, the wallet that triggered the alert is displayed with its address and recent transaction history. The Jupiter execution path — if you choose to act on the signal — is verifiable on Solscan. Every trade leaves an on-chain receipt.

This matters because trust in crypto trading tools is low. A screenshot of an alert is easy to fabricate. A link to a Solscan transaction is not. The accountability loop extends this same principle to signal review: every alert is scored on +15m, +1h, +4h, and +1d. You can audit how the signal played out, reverse-engineer what your own trade would have done, and compare that to the ML's prediction. This is not a backtest — it is live signal accountability.

Getting Started with Whale Alerts

If you are new to SolNexus, whale alerts are available on the Pro tier. Free users receive sample alerts with a 4-hour delay. During the current testing partnership, test users get full Pro access for three months in exchange for structured feedback at go-live. This is not a discount — it is a testing partnership. Testers extract real product value while testing: live whale and shark alerts for smart-money tracking, signal accountability on multiple timeframes, paper trading across Smart-Money, Non-Pump, and AI Curated strategies, and pool/token analytics that surface on-chain market dynamics.

To start, join the waitlist at https://solnexus.xyz/waitlist. Login is wallet-native via Phantom — no card, no deposit, and no keys shared. Paper trading requires no keys at all.

Conclusion

SolNexus whale alerts are built on verifiable on-chain data, filtered by a 4-layer ML pipeline, and routed through the Emit Gate so you only see high-conviction signals. The same alert thread that shows the whale flow also shows pool breakouts, confidence scores, and post-trade accountability. No delayed APIs, no cherry-picked screenshots, no fabricated win rates. If you want to see how the product routes an alert from Helius to Telegram, the best proof is to test it yourself. Join the waitlist at https://solnexus.xyz/waitlist and explore the full loop: Detect, Score, Execute, Review, and self-calibrate.

Top comments (1)

Collapse
 
topstar_ai profile image
Luis Cruz

The implementation of the WalletAlertPoller leveraging Helius RPC for real-time tracking of whale movements is a smart choice, especially given the push-based subscription model that enhances responsiveness. The deterministic filtering you’ve applied not only optimizes performance but also significantly reduces noise, making alerts much more actionable for traders. One potential improvement could be to incorporate user feedback into the ML scoring mechanism, allowing the system to adapt based on real-world trading outcomes over time. If you’re considering enhancements in this area, I’d be interested in collaborating on the development side to refine the machine learning aspects further. What future features are you most excited about integrating next?