Solana Geyser gRPC - Quickstart
Install SLV
bash
curl -fsSL https://storage.slv.dev/slv/install | shcurl -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.bash
slv b initslv b init- Use
geyser-tsif you prefer a TypeScript Geyser bot - Use
geyser-rustif you prefer a Rust Geyser bot
Allowlist the gRPC load balancer IPs
The nearest node to your registered IP is picked using real-time ping checks from every regional gRPC load balancer. If ICMP is blocked by a firewall (ufw, security groups, etc.), the ping can show
9999ms, which may prevent the optimal nearby region from being selected. Allowlist the IPs below so your closest region is chosen automatically.| Region | Domain | IP Address |
|---|---|---|
| π³π± Amsterdam | grpc-ams1.erpc.global | 84.32.103.245 |
| π³π± Amsterdam | grpc-ams1.erpc.global | 84.32.64.77 |
| πΊπΈ New York | grpc-ny6-1.erpc.global | 64.130.37.222 |
| π©πͺ Frankfurt | grpc-fra1-1.erpc.global | 185.191.118.149 |
| π©πͺ Frankfurt | grpc-fra1-1.erpc.global | 185.191.118.177 |
| π©πͺ Frankfurt | grpc-fra1-1.erpc.global | 185.191.118.206 |
| π¬π§ London | grpc-lon6-1.erpc.global | 67.209.52.250 |
| π―π΅ Tokyo | grpc-tokyo-6.erpc.global | 198.13.133.88 |
| πΈπ¬ Singapore | grpc-sgp6-1.erpc.global | 202.8.11.52 |
| π¦πΊ Sydney | grpc-syd-1.erpc.global | 82.26.116.36 |
| π°οΈ Far Point | grpc-far-point.erpc.global | 63.254.162.14 |
Burst gRPC endpoints
Geyser gRPC Burst is ERPC's low-latency shared gRPC tier for latency-sensitive Solana stream workloads. Burst uses the same Yellowstone/Geyser gRPC interface as the regular gRPC service, so existing gRPC clients can keep using standard account, transaction, slot, and block subscriptions.
Burst currently runs in Frankfurt, Amsterdam, New York, Tokyo, and Singapore. Latency selection still uses the regular gRPC ping-source IPs listed above; the Burst load balancer IPs below are the public Burst endpoints to allow for client connections.
| Region | Burst Domain | IP Address |
|---|---|---|
| π©πͺ Frankfurt | grpc-fra1-burst.erpc.global | 64.130.41.234 |
| π³π± Amsterdam | grpc-ams1-burst.erpc.global | 64.130.55.180 |
| πΊπΈ New York | grpc-ny6-burst.erpc.global | 64.130.59.217 |
| π―π΅ Tokyo | grpc-tokyo-burst.erpc.global | 208.91.107.247 |
| πΈπ¬ Singapore | grpc-singapore-burst.erpc.global | 67.209.55.15 |
Use the endpoint shown in the ERPC Web Dashboard after registering your IP. Burst remains a full Geyser gRPC stream; Direct Shreds/ShredStream is a separate UDP-based product for raw shred data.
Geyser Client Example β TypeScript
- Rename
.env.sampleto.env - Edit
.envwith your actual values:
ini
GEYSER_ENDPOINT=http://grpc-ams1.erpc.global
SOLANA_RPC_ENDPOINT="https://edge.erpc.global?api-key=YOUR_API_KEY"GEYSER_ENDPOINT=http://grpc-ams1.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:
bash
pnpm i
pnpm devpnpm i
pnpm dev
Geyser Client Example β Rust
- Rename
.env.sampleto.env - Edit
.envwith your actual values:
ini
GEYSER_ENDPOINT=http://grpc-ams1.erpc.global
SOLANA_RPC_ENDPOINT="https://edge.erpc.global?api-key=YOUR_API_KEY"GEYSER_ENDPOINT=http://grpc-ams1.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:
bash
RUST_LOG=info cargo runRUST_LOG=info cargo run
β 1-Day Free Trial Available
Both Geyser and Shreds bots can be tested for free for 1-Day via the ERPC Web Dashboard.
Open the dashboard: https://dashboard.erpc.global/en
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






