Checking node health...

BSC & Avalanche On-Chain Intelligence

Real-time DEX alpha: new pairs, whale swaps, honeypot detection, wallet tracking, and risk scoring — straight from our own validator-grade nodes.

PUBLIC
Checking node health…

Auto-refreshes every 5 seconds  ·  last update

Indexed intelligence, not raw RPC

Anyone can query a public node. The hard part is turning millions of raw transactions into signals you can act on. Each feature below is plain-English, with a real trader use-case and the plan that unlocks it.

Honest status. Everything marked LIVE is available now and runs on-demand against our nodes. Features marked ROLLING OUT — new-pairs, liquidity events and live streams — depend on our event indexer, which we are switching on per chain as hardware is provisioned. We would rather under-promise than ship a flaky feed.

Pick a chain, or bundle both

Node Intelligence is sold per chain and is separate from your base Smart Money tier. Want both chains? The Multi-Chain bundle saves you roughly 20%.

Private RPC add-on

ADD-ON

Want the raw JSON-RPC endpoint too? Add a dedicated BSC and/or Avalanche RPC key — no rate-sharing, no cold-start latency. Sold and managed separately from intelligence plans.

View RPC plans →

Prices in EUR, billed monthly, cancel anytime from your dashboard. Node Intelligence does not change your existing Smart Money tier — it adds an orthogonal entitlement for the chain(s) you choose.

Feature Starter
€19/mo
Pro
€49/mo
API
€149/mo

Daily-call and stream limits are per chain. Multi-Chain bundle applies the same tier limits to both BSC and AVAX.

Copy-paste and go

Every Node Intelligence endpoint lives under /v1/node/{chain}/… where chain is bsc or avax. Pass your Smart Money API key in the X-API-Key header.

Recent large / whale swaps on BSC
LIVE
curl \
  -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/bsc/large-swaps?min_usd=10000&limit=50"
Token risk score (LP lock, mint, ownership, tax)
LIVE
curl \
  -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/bsc/token-risk/0xTOKEN_ADDRESS"

// Returns a 0-100 risk score + flags: honeypot, mintable, renounced, lp_locked
Honeypot / sell-tax simulation (eth_call)
LIVE
curl \
  -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/bsc/honeypot/0xTOKEN_ADDRESS"

// Simulates a buy then a sell on-chain. Returns: sellable, buy_tax, sell_tax
Track a wallet's activity & holdings
LIVE
curl \
  -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/avax/wallet/0xWALLET_ADDRESS"
Deployer reputation & top-holder concentration
LIVE
# Deployer history — how many tokens, how many rugged
curl -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/bsc/deployer/0xDEPLOYER"

# Top holders — concentration risk
curl -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/bsc/top-holders/0xTOKEN"
Node health (public, no key needed)
PUBLIC
curl "https://api.smartmoneyapi.com/v1/node/health"

// {"bsc":{"ok":true,"block":42000000,"synced":true,"ms":38}, "avax":{...}}
New pairs & liquidity events (indexer-gated)
ROLLING OUT
curl -H "X-API-Key: YOUR_KEY" \
  "https://api.smartmoneyapi.com/v1/node/bsc/new-pairs?limit=25"

// While the indexer is off this returns 503 {"error":"indexer_offline"}.
// We are switching it on per chain — your plan includes it the moment it's live.

Need the full reference? See the API docs or try calls live in the console.

Validator-grade vs public RPC

What matters Public RPC Smart Money nodes
Honeypot / sell simulation Build it yourself One call
Whale-swap detection Raw logs only Pre-indexed, USD-valued
Latency & rate limits Shared, throttled Dedicated per key
Deployer / holder intel None Scored & cached
Archive history Pruned / paywalled Full local archive

Common questions

A blockchain node is a server that holds a full copy of a chain (here BSC and Avalanche) and can answer questions about every transaction, balance and contract. We run our own archive nodes, so we can read deep on-chain data — and simulate trades — in milliseconds, instead of relying on someone else's shared infrastructure.
Public RPCs give you raw data and aggressive shared rate limits — you still have to build all the intelligence (honeypot checks, whale detection, risk scoring) yourself. Node Intelligence ships that work as ready-to-use endpoints, with dedicated per-key limits and full archive history. You get a signal, not a homework assignment.
We simulate a real buy followed by a real sell directly on our node (via eth_call) and report whether the sell succeeds, plus the effective buy/sell tax. This catches the vast majority of "can't sell" scams. It is not a guarantee: sophisticated contracts can change behaviour after launch, gate by block number, or trip only above certain amounts. Treat the score as a strong filter, not absolute proof — always size positions accordingly.
Yes. Cancel anytime from your dashboard — access continues until the end of the current billing period and you are not charged again. If something is genuinely broken on our side, reach out via the contact form and we will make it right.
Per chain: Starter is 5,000 calls/day with 1 stream, Pro is 50,000/day with 3 streams, and API is 500,000/day with 10 streams plus priority routing. Heavy contract reads (honeypot, top-holders) are cached so repeat lookups are fast and don't burn your quota. Exceeding your daily limit returns a 429 until the 00:00 UTC reset.