NoLimitNodes
PricingDocsBlogAbout
SupportContact
Log in
Blog/Guides

Solana Shredstream Guide: Shreds, Turbine, Forks, and Bots

A practical guide to raw Solana shreds, Turbine propagation, deshredding, entries, duplicate packets, forks, and the receiver loop trading bots operate.

N
NoLimitNodes Engineering
Infrastructure Team
Jul 28, 202610 min read
On this page +
  • 01From a Block to Shreds
  • 02How Turbine Propagates Shreds
  • 03Deshredding Into Entries
  • 04How a Bot Consumes the Feed
  • 05Frequently Asked Questions
NOTE / quick answer
Shredstream sends raw Solana block fragments before a validator finishes executing them. You gain an earlier signal, but your client must rebuild entries, remove duplicates, follow forks, and confirm the result through a processed data source.

A normal RPC response tells you what a validator already knows. A Yellowstone gRPC update streams that processed state as it changes. Shredstream enters earlier. It gives your receiver the packets that validators use to reconstruct the leader's block.

That difference changes the contract. Raw shreds do not tell you whether a transaction succeeded. They do not contain execution logs, balance changes, compute use, or commitment. They give you enough raw material to observe transactions before that later context exists.

01From a Block to Data and Coding Shreds#

The current Solana leader collects transactions and records ledger entries. It splits that ledger data into small packets called data shreds. It also produces coding shreds through erasure coding. Coding shreds let a receiver recover some missing data shreds without asking the leader to send every lost packet again.

Each shred carries identifiers such as the slot and shred index. Your client uses those fields to group packets and decide when it has enough pieces to reconstruct a set. TheSolana ledger crate documentation exposes the data structures used by the validator implementation.

Why coding shreds matter

UDP can lose or reorder packets. Erasure coding gives Solana a recovery path that does not depend on perfect delivery. It does not make your receiver stateless. You still need bounded buffers, expiration rules, duplicate detection, and metrics for incomplete sets.

02How Turbine Propagates Shreds#

Solana uses Turbine to fan shreds across validators. Instead of sending every packet from the leader to every validator, Turbine distributes them through a tree. The official Solana documentation explains how this reduces the leader's outbound load.

Solana's Anza validator documentation calls Turbine the block propagation protocol. That description matters because Shredstream is a block data feed, not an executed transaction API. The packet arrives while propagation and reconstruction are still in progress.

Network path, receiver placement, kernel buffers, and client design all affect when your code sees a usable transaction. Do not turn the word early into an unsupported millisecond promise. Measure your complete path with your own workload.

03Deshredding Into Entries and Transactions#

Deshredding is the work of recovering ordered ledger data from enough shreds. A production receiver usually follows this loop:

  • Read UDP packets without blocking the socket on decoding.
  • Validate packet shape and group shreds by slot and erasure set.
  • Discard exact duplicates and record conflicting variants.
  • Recover missing data from coding shreds when the set permits it.
  • Rebuild entries, extract transactions, and send them to strategy workers.
  • Expire incomplete and losing-fork state with explicit metrics.

Duplicates, ordering, and forks

Your arrival order is not ledger order. UDP may reorder packets, a feed may repeat them, and a slot you observed may lose the fork choice. Key your state with protocol identifiers, never with packet arrival time. Confirm important decisions against Yellowstone gRPC or HTTP RPC.

04How a Trading Bot Consumes the Feed#

A bot commonly separates detection from confirmation. The Shredstream receiver reconstructs transactions and applies a narrow local filter. A strategy worker scores the opportunity. A transaction sender then submits through RPC. In parallel, a Yellowstone consumer watches execution status and account changes.

Keep those stages isolated. If the UDP receiver also runs heavy parsing and strategy code, one slow workload can overflow the socket buffer. Use bounded queues and publish queue depth, packet loss, incomplete sets, reconstructed entries, fork changes, and decode failures.

Jito Labs says its hosted service “delivers the lowest latency shreds from leaders on the Solana network.” Its official documentation also announces a September 5, 2026 shutdown. If you migrate, follow a parallel-run process and compare reconstructed output before cutover. Our Jito migration guide gives you that checklist.

NoLimitNodes Ultra includes one account-wide public IPv4 and UDP-port destination. You configure it from the dashboard and provisioning starts automatically. Read the Shredstream product page or compare Shredstream with Yellowstone gRPC.

05Frequently Asked Questions#

What is a shred in Solana?

A shred is an erasure-coded packet used to propagate part of a leader's block. Data shreds carry ledger data. Coding shreds support recovery.

Does one shred contain one transaction?

No. Transaction and entry boundaries do not map one-to-one to UDP packets. Your client reconstructs ledger entries from a set of shreds.

Is Shredstream the same as Jito's proxy?

Shredstream describes the raw feed. The Jito proxy is a compatible receiver and forwarding implementation. NoLimitNodes delivers packets that work with that client path.

Does a raw shred have a commitment level?

No. Processed, confirmed, and finalized commitment describe later validator and cluster state.

Why do I need a public UDP port?

The service pushes packets to you. Your firewall and network address translation must route the registered public IP and port to the receiver.

Should I use Shredstream or gRPC?

Use Shredstream for an early raw signal. Use gRPC for filters, accounts, logs, execution results, and commitment. Use both when detection and confirmation need separate paths.

#solana#shredstream#shreds#turbine#jito#udp#trading-bots
N
NoLimitNodes Engineering
Infrastructure Team

The team that runs our RPC, WebSocket, gRPC, and streaming fleet. We write about what we operate: validators, Geyser pipelines, and the request paths in between.

On this page
  • 01From a Block to Shreds
  • 02How Turbine Propagates Shreds
  • 03Deshredding Into Entries
  • 04How a Bot Consumes the Feed
  • 05Frequently Asked Questions
↑ back to top
///Read next
GuidesJun 19, 2026

Yellowstone gRPC in Python (2026): Setup, 5 Core Patterns & a Real-Time PumpFun Detector

A complete Python guide to Yellowstone gRPC: proto generation, a reusable auth helper, five working patterns from wallet watcher to memcmp filter, a full PumpFun token-launch detector, and production reconnect with exponential backoff.

#yellowstone#grpc#python
18 min read
GuidesMay 19, 2026

Yellowstone gRPC vs WebSockets: choosing a real-time Solana data pipeline

Both transports stream the same chain, but they come from different places inside the validator and fail in different ways. A field guide to choosing and operating the right pipeline for your workload.

#yellowstone#grpc#websocket
16 min read
← Older
How to Detect New Solana Liquidity Pools Across Raydium, Meteora, Orca and PumpSwap
Run it yourself

Every benchmark in this blog runs against our public endpoints.

Spin up an RPC, WebSocket, or gRPC endpoint in under a minute. Flat pricing, no request caps. Reproduce the numbers for your own workload.

See pricing

Ready to get started?

Get your free API key and start building in under 30 seconds.

Talk to Sales
NoLimitNodes

Solana RPC infrastructure built for performance and scale.

RPC Access
  • HTTP RPC
  • WebSocket
  • gRPC
  • Shredstream
Infrastructure
  • Compute Platform
  • VPS
  • VDS
  • Bare Metal
  • Geyser Plugin Hosting
Enhanced Streams
  • PumpFun
  • PumpSwap
  • Raydium
  • Orca
  • Meteora
  • System Events
  • Browse All →
Program Streams
  • PumpFun
  • PumpSwap
  • Raydium CLMM
  • Orca Whirlpool
  • Meteora DLMM
  • Jupiter Swap
  • Jupiter Perps
  • Kamino Lending
  • Browse All 37 →
Trading
  • EZWallet
Analytics
  • Historical Datasets
  • Historical Raw Blocks
Company
  • About
Resources
  • Pricing
  • Custom Development
  • Documentation
  • Blog
  • System Status
  • Support
  • Contact Sales
Compare
  • Yellowstone gRPC vs LaserStream
  • Triton vs Helius
  • Raydium API vs Helius
  • PumpSwap API vs Bitquery
  • QuickNode Streams vs NLN
  • All comparisons →
Legal
  • Terms & Conditions
  • Privacy Policy
© 2026 CLR3 Inc., operating as NoLimitNodes. Registered in Ontario, Canada. All rights reserved.solana mainnet