Skip to content

Documentation

Receiving and decoding raw shreds

Raw UDP is the fastest way to get Solana data and the least forgiving. There is no ordering, no retransmission and no backpressure, so a receiver that works at 5,000 packets a second is a thing you build rather than a thing you install. These pages are how.

If nothing is arriving, start here

Everything we send comes from 64.130.40.90. Inbound UDP from that address has to be allowed on your port. It is the cause of most first-time failures, and it is not something we can fix from our side. Firewall configuration

Getting started

From a paid account to a packet on your machine.

Delivery

The wire contract, the source address, and getting through your own firewall.

Building a receiver

Sockets, buffers, threads, and detecting the drops you would otherwise never see.

Processing shreds

Signatures, FEC sets, recovery, reassembly, and getting to transactions.