Solana Geyser gRPC - 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
geyser-tsif you prefer a TypeScript Geyser bot - Use
geyser-rustif you prefer a Rust Geyser bot
Geyser Client Example – TypeScript
- Rename
.env.sampleto.env - Edit
.envwith your actual values:
X_TOKEN=YOUR_X_TOKEN_OR_API_KEY GEYSER_ENDPOINT=https://grpc-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.
- Install dependencies and start the development server:
pnpm i pnpm dev

Geyser Client Example – Rust
- Rename
.env.sampleto.env - Edit
.envwith your actual values:
X_TOKEN=YOUR_X_TOKEN_OR_API_KEY GEYSER_ENDPOINT=https://grpc-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
Both Geyser and Shreds bots 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 Geyser adapter used in the starter code downloaded via the
is provided by the open-source Solana Stream SDK.
slv b init commandis provided by the open-source Solana Stream SDK.
It supports both Rust and TypeScript, enabling efficient implementation of Solana stream communication,
including Geyser subscriptions, transaction processing, and real-time account update monitoring.
including Geyser subscriptions, transaction processing, and real-time account update monitoring.
The starter code you obtain is a direct example of this SDK in action,
making it easy to extend for your own bot development or custom logic.
making it easy to extend for your own bot development or custom logic.
For more details, visit the GitHub repository:
https://github.com/ValidatorsDAO/solana-stream
https://github.com/ValidatorsDAO/solana-stream