Decoded transactions from Solana shreds.
First-seen, pre-confirmation transactions decoded straight from the propagation layer - the earliest possible view of the network, aggregated from multiple sources.
◆ OVERVIEW
Shreds are the fragments validators propagate before a block is assembled. rpc edge reconstructs and decodes transactions straight from that propagation layer and streams them to you over gRPC - giving you a first-seen, pre-confirmation view well ahead of any confirmed RPC response.
We aggregate shreds from multiple independent sources and serve whichever copy arrives first, so you never wait on a single point of delay. The decoding happens server-side, co-located with the cluster, so you receive ready-to-use transactions, not raw bytes.
// first-seen Δ distribution - illustrative figures
◆ CAPABILITIES
What it does.
First-seen, pre-confirmation
Read transactions while the block is still in flight - the earliest moment the network makes them observable.
Multi-source aggregation
Shreds aggregated from independent upstreams; you get whichever copy lands first, with built-in redundancy.
Decoded server-side
Reassembled, deserialized, and decoded against program layouts before they hit your stream - act immediately.
Delivered over gRPC
Filter by program and stream decoded transactions on the same fast path as Yellowstone gRPC.
// decoded transactions, straight from the propagation layer
const stream = await rpcedge.subscribe({
source: "shreds",
decode: true,
filter: { programs: [RAYDIUM, PUMP_FUN] },
});
for await (const tx of stream) {
// tx is decoded, first-seen, pre-confirmation
signal.evaluate(tx); // react now, reconcile on finality
}◆ WHY rpc edge
Latency is a location problem.
Co-located by design
Our nodes are racked beside Solana stake clusters and the Jito Block Engine. Fewer hops, less distance, lower latency - physics, not promises.
Shreds from many sources
We aggregate shreds across multiple upstreams and serve whichever arrives first - so you never wait on a single point of delay.
Tuned for HFT
Every node is performance-optimized for high-frequency streaming - kernel, network stack, and RPC layer, end to end.
◆ USE CASES
- Arbitrage and sniping where landing first is everything
- MEV searchers needing the earliest signal
- Liquidation bots reacting before confirmation
Frequently asked questions
Is pre-confirmation data safe to act on?
How is this different from Yellowstone gRPC?
◆ GET ACCESS
Put Decoded Shreds on your strategy.
Start free, or talk to the infra team to scope a dedicated, co-located setup tuned to your latency and volume.
SHREDS · DECODED
- First-seen, pre-confirmation
- Multi-source aggregation
- Decoded server-side
- Delivered over gRPC