Live SSE · BSC + AVAX local nodes

BSC & Avalanche Live Swap Feed

Every DEX swap ≥ $500 on BNB Chain and Avalanche, detected in seconds and pushed to your browser over Server-Sent Events. The public stream is metered per IP; when it is unavailable this page falls back to a bounded snapshot poll and says so.

BSC AVAX measuring latency…
Today
swaps broadcast
Largest Today
$0
single swap
Volume Today
$0
cumulative USD
All-Time Swaps
total broadcast
All-Time Largest
$0
single swap
All-Time Volume
$0
cumulative USD
Connection
connecting…
connecting

Recent Swaps

Newest on top · auto-scrolls as new events arrive

Waiting for the next swap…
For developers & bots

Raw WebSocket firehose + REST snapshot

The live feed above is free for everyone. Paid plans also get programmatic access via a low-latency WebSocket endpoint, a REST snapshot API, and a historical CSV / JSONL export — ideal for trading bots, Discord/Slack relays, and analytics pipelines.

// WebSocket firehose — trader / pro / enterprise
// Exchange your key for a single-use ticket (key stays in the header, not the URL)
const { ticket } = await fetch(
  "https://api.smartmoneyapi.com/v1/ws/ticket",
  { method: "POST", headers: { "X-API-Key": "sm_xxx" } }
).then(r => r.json());
const ws = new WebSocket(
  `wss://api.smartmoneyapi.com/v1/ws/live-swaps?ticket=${ticket}`
);
ws.onmessage = e => {
  const swap = JSON.parse(e.data);
  console.log(swap.chain, swap.dex, swap.pair, swap.amount_usd);
};

// Historical export — CSV or JSONL, last 90 days
curl -H "X-API-Key: sm_xxx" \
  "https://api.smartmoneyapi.com/v1/live-swaps/export?format=csv&from=2026-03-01&chain=bsc"
Upgrade for WebSocket & export access →
What paid plans unlock
  • WebSocket firehose
  • REST snapshot API
  • BSC + AVAX firehose (more chains coming)
  • Historical swap export (CSV / JSONL)
  • Whale address labels

Direct Node Monitoring

Swap detection runs directly against local full nodes for Binance Smart Chain and Avalanche — no shared rate limits, no polling delays. Each new block is inspected for transactions interacting with known DEX router contracts. For EVM chains, 15 router addresses are matched; for Solana, Jupiter, Raydium, and Orca are tracked via Smart Money's dedicated Solana infrastructure. Only swaps above the $500 minimum value threshold are forwarded to the broadcast stream.

Smart Money Wallet Filter

The feed specifically monitors addresses identified as smart money — whale wallets auto-discovered from the Hyperliquid leaderboard (top 2000 by PnL, minimum $50K value) plus curated seed addresses with verified track records. When one of these wallets executes a DEX swap on a monitored chain, it surfaces in the feed immediately. This filters out retail noise and surfaces only the swaps that institutional-level actors are making.

Delivery via SSE and WebSocket

Swaps are broadcast in real time via Server-Sent Events on the public endpoint — no authentication required, no polling. The connection stays open and events push to your browser as they happen, typically within 6 seconds of block confirmation. Paid tier accounts also receive access to the WebSocket endpoint, which supports additional filtering parameters and is suitable for programmatic integration in trading bots.

Accumulation vs Distribution

Large buys (swapping stablecoins or ETH/BNB into a token) from wallets with verified profit track records suggest accumulation — smart money is building a position. Large sells into stablecoins from the same wallets suggest distribution or risk reduction. The most actionable pattern is when multiple tracked wallets buy the same token within a short window, which may indicate coordinated accumulation ahead of a move.

The significance of swap size is relative. A $50K swap from a wallet that typically moves $500K is modest. A $50K swap from a wallet that rarely makes large moves is significant. The signal strength column attempts to capture this context, but reviewing the wallet's historical activity provides deeper confirmation.

Cross-Chain Capital Rotation

Watch for capital moving between chains as a leading indicator. When smart money bridges assets from Ethereum to BSC or Avalanche, it often precedes activity on the destination chain's DEXes. Conversely, when BSC and AVAX wallets bridge back to Ethereum, it may signal a return to blue-chip assets or a reduction in risk exposure on smaller chains.

The chain indicator on each swap row (BSC / AVAX) lets you filter mentally for which ecosystem is seeing activity. If BSC swaps dominate and AVAX is quiet, capital may be concentrated on the BNB Chain ecosystem. Multi-chain flow analysis — watching which chains are getting inflows and outflows simultaneously — provides a broader picture of where smart money is rotating.

Wallet Attribution

Wallet identification is based on historical on-chain activity patterns and leaderboard data from Hyperliquid. A wallet labeled as "smart money" based on past performance may not continue to outperform. Wallets can change strategies, be compromised, or be used for purposes unrelated to alpha generation (treasury management, arbitrage, liquidation bots). Attribution is probabilistic, not definitive.

Single Swap ≠ Signal

One swap from one wallet does not constitute a trading signal. Smart money wallets make many trades that are not directional — they arbitrage, rebalance, pay for gas, interact with protocols for yield. A single large swap should be treated as a data point to watch, not an instruction to follow. Correlation with other signals (derivatives positioning, price action, options flow) is required before treating a swap as actionable intelligence.

Execution Risk

By the time a swap appears in this feed, the trade has already been executed on-chain. Attempting to front-run or immediately replicate a swap carries significant execution risk: token liquidity may be insufficient to absorb a follow-on trade at similar prices, and the original wallet may be hedging an existing position rather than opening a new one. Always assess pool depth and your position size relative to available liquidity.

Disclaimer: Live swap data is provided for informational purposes only and does not constitute financial advice. Wallet attribution is based on historical patterns and may be inaccurate. Copying the trades of any wallet — regardless of their historical performance — carries risk of loss. DEX tokens can be illiquid, manipulated, or fraudulent. Always conduct independent due diligence and apply strict risk management. Trade only what you can afford to lose.