Direct Shreds - Quickstart
Install SLV
curl -fsSL https://storage.slv.dev/slv/install | sh
$ slv b init

With a single command,
slv b init, you can instantly scaffold a development environment for Solana bots using high-performance stream-based data.slv b init
- Use
shreds-tsif you prefer a TypeScript-based Shreds bot - Use
shreds-rustfor a Rust-based bot leveraging Shreds
Shreds Client Example – TypeScript
- Rename the
.env.samplefile to.env. - Update the values in the
.envfile with your actual endpoint:
SHREDS_ENDPOINT=https://shreds-ams.erpc.global SOLANA_RPC_ENDPOINT="https://edge.erpc.global?api-key=YOUR_API_KEY"
⚠️ Important Note: This endpoint is provided as an example and cannot be used directly. Obtain and set your actual endpoint accordingly.
- Install dependencies and run the script:
pnpm i pnpm dev

Shreds Client Example – Rust
- Rename
.env.sampleto.env - Edit
.envwith your actual Shreds endpoint:
SHREDS_ENDPOINT=https://shreds-ams.erpc.global SOLANA_RPC_ENDPOINT="https://edge.erpc.global?api-key=YOUR_API_KEY"
Please note:
This endpoint is a sample and cannot be used as is. Please obtain and configure the appropriate endpoint for your environment.
- Build and run the client:
RUST_LOG=info cargo run

✅ 1-Day Free Trial Available
Shreds endpoints can be tested for free for 1-Day via the official Validators DAO Discord server.
Join us here: https://discord.gg/C7ZQSrCkYR
Solana Stream SDK

The client implementation included in the Shreds starter code downloaded via the
is powered by the open-source Solana Stream SDK.
slv b init commandis powered by the open-source Solana Stream SDK.
Supporting both Rust and TypeScript, the SDK enables efficient handling of Solana’s direct communication layer —
including Shreds subscription, packet parsing, and transaction extraction.
including Shreds subscription, packet parsing, and transaction extraction.
With this SDK, you can start developing with Shreds streams right away.
The starter code generated by
The starter code generated by
slv b init serves as a practical template to build upon for your own applications.For more details, visit the GitHub repository:
https://github.com/ValidatorsDAO/solana-stream
https://github.com/ValidatorsDAO/solana-stream