Solana Enhanced Streams: decoded events with the pipeline already done
Enhanced Streams are the curated half of our streaming catalog. You subscribe once and the events arrive decoded: amounts with the right decimals applied, mints normalized, swap direction resolved, net-SOL impact computed, all server-side. The other half is Program Streams, the full-breadth firehose of every supported Solana program emitted as-is. Pick Enhanced when you want to ship a feature this week instead of building a parsing pipeline; pick Program Streams when you need raw fidelity or a program we haven't curated yet. Today's Enhanced catalog covers what trading teams ask for most: decoded swap feeds for every major Solana DEX (Raydium AMM v4, CLMM, CPMM, and Stable, Orca Whirlpool, Meteora DLMM, DAMM, and Pools, PumpFun, PumpSwap), the full Pump.fun lifecycle (create, trade, graduate, transaction), and system events (native transfers, confirmed blocks). 18 topics today, and we add to the catalog when a workflow needs it. Pricing is flat: Pro at $49 a month for 2 streams, Ultra at $199 a month for 20. No per-event surcharge, no per-program add-on. Pick the streams from the grid below; each card is its own page with the full event list, decoded payload shapes, and code samples.
- Pump.fun6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P, Bonding-curve memecoin launchpad. The single highest-traffic program on Solana most weeks
- Raydium AMM v4675kPX9MHTjS2zt1qfr1NYHuzeLXfQM9H24wFSUt1Mp8, Constant-product AMM. The largest consistent-volume DEX on Solana
- Meteora DLMMLBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo, Bin-based dynamic liquidity. Highest-volume DEX on Solana through most of 2025
- Jupiter Aggregator V6JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4, Aggregator routing across every major Solana DEX
- SPL Token ProgramTokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA, The classic token program. Token-2022 streams ride alongside under the same SKU
- System Program11111111111111111111111111111111, Every SOL transfer, account creation, and durable nonce. The most-invoked program on chain
Sample events from across the Enhanced catalog
each card below links to a per-product page with the full event list
| Event | Type | Description | Frequency | Latency |
|---|---|---|---|---|
| pump.fun create | instruction | New bonding-curve token mint with creator wallet, initial virtual reserves, and metadata. The signal sniper bots subscribe to first. | High | 10ms |
| raydium swap (AMM v4) | instruction | Constant-product AMM swap decoded to amount_in, minimum_amount_out, side, pool keys. | Very high | 12ms |
| orca swap (Whirlpool) | instruction | CLMM swap with tick range, sqrt price limit, and exact-in vs exact-out resolved. | Very high | 13ms |
| meteora swap (DLMM) | instruction | Bin-level DLMM swap with active-bin shift surfaced as part of the same payload. | Very high | 14ms |
| jupiter route_v6 | instruction | Aggregator route execution with hop count, dex names, intermediate mints, and realized slippage. | High | 12ms |
| spl_token mint | instruction | New SPL or Token-2022 mint with decimals, supply, freeze and mint authorities. | Medium | 10ms |
| system Transfer | instruction | Native SOL transfer with from, to, and lamports. The wallet-tracking primitive on Solana. | Very high | 12ms |
| pool initialize2 / createPool | instruction | New AMM v4 or CPMM pool launch. Surfaces pairs before they appear in any aggregator. | Medium | 12ms |
Enhanced catalog scale and pricing
last reviewed 2026-05-05
Enhanced or Program Streams: pick by what you need
Same plan, two catalogs. Both sit on the same gRPC protocol; the difference is whether we run the parsing pipeline for you.
Enhanced Streams
18 curated topics. Decoded amounts, normalized mints, swap direction, net-SOL math, all server-side.
Pick when you want to ship a feature this week instead of building a parsing pipeline. Trading bots, dashboards, wallet trackers, lifecycle analytics.
Program Streams
1,074 topics across 37 Solana programs. Instruction args and account pubkeys exactly as emitted, no enrichment.
Pick when you need raw fidelity, custom IDL decoding, or a program we haven't curated yet.
The full catalog
Filter by category, search by event name or use case, click into any stream for the full IDL coverage and code samples. Each card is its own product page.
Token launches, trades, bonding curves, and migrations from PumpFun.
Swaps, liquidity events, and pool creations from the PumpSwap AMM.
AMM v4, CLMM, and CPMM swaps, liquidity changes, pool creations, and farm events.
Concentrated-liquidity swaps, position NFTs, and tick-array events on Solana and Eclipse.
Bin-based dynamic liquidity events. Swaps, position updates, and active-bin shifts.
Aggregator swaps with route analysis, price impact, and multi-DEX coverage.
Every SOL transfer, account creation, and durable-nonce update on the most-invoked program on Solana.
Every new token deployment on Solana: mints, metadata, authorities, and risk signals.
New liquidity pools across Raydium, Orca, Meteora, and PumpSwap.
SOL movements, SPL token transfers, and NFT transfers across all wallets.
100+ technical indicators for any Solana coin, streamed live. RSI, MACD, Bollinger Bands, moving averages, volume profiles.
Enhanced vs Program at a glance
| Enhanced Streams | Program Streams | |
|---|---|---|
| What's in it | Hand-picked workflows | Every supported program |
| How many | 18 topics | 1,074 topics, 37 programs |
| Output shape | Decoded amounts, normalized mints, net-SOL, direction | Instruction args + account pubkeys, exactly as emitted |
| When to pick | You'd otherwise build a parser | You need raw fidelity or a program we have not curated |
| Endpoint | stream-1.nln.clr3.org:443 | events.nln.clr3.org:443 |
DEX swap streams: where the volume actually lives
DEX swaps carry most of the traffic on the Enhanced catalog, and the difference between providers shows up here first. We ship pre-decoded swap streams for every Solana DEX a trader actually needs: Raydium AMM v4 (constant-product), CLMM, CPMM, and Stable; Orca Whirlpool for tick-level CL; Meteora DLMM, DAMM, and Pools for bin-based dynamic liquidity; PumpFun for bonding-curve trades; PumpSwap for the post-graduation AMM.
Each event arrives with input and output amounts already divided by the right number of decimals, the input and output mints labeled, swap direction resolved, net-SOL impact computed, and the source DEX tagged. None of which you have to do client-side.
Practical recipe for sniping: subscribe to Pump.fun create events plus the Raydium AMM v4 swap stream. New tokens light up on either path; you cover both with one connection.
Practical recipe for arbitrage: subscribe to the cross-DEX swap firehose (one topic, every DEX), demux on the dex field, run your spread model. A single key, one gRPC connection, all the order flow you can use.
Pump.fun lifecycle and system events
Beyond DEX swaps, the Enhanced catalog covers the lifecycle and account-movement events that traders and analytics teams ask for most. The Pump.fun lifecycle topics surface every token create, every trade, every bonding-curve graduate, and a separate transaction envelope with creator wallet, initial reserves, and metadata attached. Useful for sniper bots, due-diligence tools, and any product whose user expects to see new memecoins within seconds of deployment.
The system topics (wallet transfers, system events) handle the “tell me when this address moves” workload. A native SOL transfer with from, to, and lamports decoded into named fields, plus confirmed-block notifications for the indexers that need them. The system program runs around 50 million events a day; you do not want to subscribe unfiltered, and you do not have to. Filters on the wallet you care about narrow the firehose to the events that matter.
For programs we have not curated yet (Jupiter perpetuals, Kamino lending, custom DAOs, your own Anchor program), switch to Program Streams. Same plan, same key, full-breadth catalog with raw instruction args and account pubkeys.
Combining Enhanced Streams in production
One TCP connection to stream-1.nln.clr3.org:443 handles every Enhanced topic on your plan. Open the channel once, call Subscribe per topic, demux on the topic name in your handler. Plan stream-count limits cap which Enhanced topics your key has access to; the wire concurrency is up to you.
The patterns we see most:
- Snipers: Pump.fun
createevents plus the Raydium AMM v4 swap topic. New tokens land on either path; decision in 30ms, Jito bundle out the door. - MEV searchers: the cross-DEX swap firehose (one topic, every DEX) plus per-DEX swap topics for the ones that need extra fields. The whole order book lives in process memory and updates per slot.
- LP rebalancers: Orca Whirlpool plus Meteora DLMM swap topics, filtered on the pools your position lives in. Active-bin shift triggers a rebalance.
- Wallet trackers: the system transfers topic, filtered to your watchlist server-side. Native SOL movements arrive with from, to, and lamports already decoded.
- Analytics dashboards: the cross-DEX swap firehose into a Postgres or DuckDB sink, materialized hourly into volume-by-DEX charts. Real-time without a Snowflake bill.
For cross-checking against historical data, every Enhanced topic has a matching historical dataset under trading datasets. Build the model on the past, deploy on the live stream, same schema both sides.
Pricing, and where we fit vs Helius, QuickNode, and Bitquery
Three vendors come up in every conversation about Solana streams. Helius LaserStream rewraps Yellowstone gRPC and bills per event. Predictable for analytics workloads, painful when a memecoin Tuesday lands. QuickNode Streams is roughly the same model: per-event meter, per-program add-ons. Bitquery sells GraphQL with deep historical query power. If your workload is JOINs across DEXes and time windows, they're genuinely better at that than we are.
We charge flat. $49 a month for 2 streams (Pro), $199 a month for 20 (Ultra). The stream count covers either Enhanced or Program Streams; mix and match as your workload changes. No per-event surcharge, no per-program add-on, no minimum that gets ugly when traffic spikes. If your cost on Helius scales with chain activity, ours does not. That tradeoff usually breaks our way the first time Pump.fun has a 10M-trade day.
The 10x price guarantee is stated and exact: find a like-for-like quote that beats us and we'll refund 10x the difference. Plan breakdown is on the pricing page; if you want to sanity-check the bill against Helius or QuickNode for your specific traffic, send numbers and we'll size both sides honestly.
Frequently asked questions
Related products
The full-breadth catalog. Raw instruction args and account pubkeys for every supported Solana program. Pick this when Enhanced Streams does not cover your program yet.
Bonding-curve creates, trades, and graduations decoded with creator wallet and reserves. The most-watched topic in the Enhanced catalog.
AMM v4, CLMM, CPMM, and Stable in one subscription with applied decimals and resolved direction.
Bin-level swaps with active-bin shifts surfaced in the same payload.
Tick-level concentrated liquidity swaps with per-pool decimals applied.
The raw transport behind both Enhanced and Program Streams. Run your own or pay us flat.
Per-event metering vs flat pricing. Where QuickNode wins, where Enhanced Streams undercut.
Subscribe to your first two streams
Pro from $49/mo includes 2 streams (any combination, Enhanced or Program). Ultra at $199/mo unlocks 20. The free RPC tier is bundled regardless.