> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.chainstack.com/feedback

```json
{
  "path": "/docs/yellowstone-grpc-geyser-plugin",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Yellowstone gRPC Geyser plugin

> Stream real-time Solana data with the Yellowstone gRPC Geyser plugin and learn how to build analytics, trading, and indexing tools.

*Solana is fast. Geyser is faster.*

Yellowstone gRPC Geyser is a high-speed, plugin-based interface that streams live Solana blockchain data directly from validator memory, eliminating the latency of traditional RPC methods.

<Check>
  ### Geyser is available starting from Growth

  Geyser is available as a separate paid add-on starting from the [Growth plan](https://chainstack.com/pricing).
</Check>

<Note>
  ### Mainnet only

  The Yellowstone gRPC Geyser plugin is only available on Solana mainnet. It is not available on Solana devnet.
</Note>

Benefits

* Real-time streaming of transactions, account updates, blocks, and slot changes.
* Uses a standard gRPC interface with protobuf-formatted payloads.
* Accessible from any language supporting gRPC (Python, Go, Rust, JavaScript).
* Ideal for analytics, sniping bots, MEV strategies, data indexing, real-time dashboards, and compliance monitoring.
* `from_slot`/`fromSlot` support to replay and recover missed events. For an example, see `learning-examples/historical_replay_with_from_slot.py` in [Solana Geyser Python tutorial](https://github.com/chainstacklabs/grpc-geyser-tutorial).

## Jito ShredStream enabled by default

Chainstack Solana nodes have Jito ShredStream enabled by default, providing significantly enhanced performance for Yellowstone gRPC Geyser streaming. ShredStream accelerates block data propagation by delivering shreds directly to nodes, resulting in better consistency, improved tail latency, and higher reliability. No additional configuration is required.

## Enable the Yellowstone gRPC Geyser plugin

1. Deploy a Solana [Global Node](/docs/global-elastic-node)

2. Click on your deployed Solana node.

3. Click **Add-ons** > **Yellowstone gRPC Geyser Plugin** > **Install**.

## Limits

\$49/month:

* Unlimited stream events
* 1 concurrent stream available per platform account
* Up to 50 Solana accounts per stream

\$149/month:

* Unlimited stream events
* 5 concurrent streams available per platform account
* Up to 50 Solana accounts per stream

\$449/month:

* Unlimited stream events
* 25 concurrent streams available per platform account
* Up to 50 Solana accounts per stream

Regardless of the plan: 5 concurrent filters of the same type in a single connection for all types:

* `accounts`
* `slots`
* `transactions`
* `transactions_status`
* `blocks`
* `blocks_meta`
* `entries`

Note that on a dedicated Solana node with Yellowstone gRPC Geyser plugin limit customization is available.

The following Solana accounts are unavailable for streaming:

* `TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA`
* `kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6`

## Tooling

See:

* [Solana Geyser Python tutorial](https://github.com/chainstacklabs/grpc-geyser-tutorial)
* [Pump fun and Bonk fun sniping bot with Geyser](https://github.com/chainstacklabs/pumpfun-bonkfun-bot)
* [Solana: Listening to pump.fun token mint using Geyser](/docs/solana-listening-to-pumpfun-token-mint-using-geyser)
* [Solana: Listening to programs using Geyser and Yellowstone gRPC (Node.js)](/docs/solana-listening-to-programs-using-geyser-and-yellowstone-grpc-node-js)
* [Yellowstone repository](https://github.com/rpcpool/yellowstone-grpc)
* [Rust example](https://github.com/rpcpool/yellowstone-grpc/tree/master/examples/rust)
* [Go example](https://github.com/rpcpool/yellowstone-grpc/tree/master/examples/golang)
