From 1d672846a8d33f786eebca63716aba35b7eafd87 Mon Sep 17 00:00:00 2001 From: Giuliano-1 <59326521+Giuliano-1@users.noreply.github.com> Date: Tue, 17 Dec 2024 19:02:24 -0500 Subject: [PATCH] Update solana.md --- docs/new/tutorials/solana.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/new/tutorials/solana.md b/docs/new/tutorials/solana.md index 0c15ccc2..0623a791 100644 --- a/docs/new/tutorials/solana.md +++ b/docs/new/tutorials/solana.md @@ -9,7 +9,7 @@ In this guide, you'll learn how to initialize a Solana-based Substreams project - **sol-transactions**: Creates a Substreams that filters Solana transactions based on one or more Program IDs and/or Account IDs, using the cached [Solana Foundational Module](https://substreams.dev/streamingfast/solana-common/v0.3.0). - **sol-anchor-beta**: Given an Anchor IDL, create a Substreams that decodes instructions and events. If an IDL isn’t available using the `idl` subcommand within the [Anchor CLI](https://www.anchor-lang.com/docs/cli), you’ll need to provide it yourself. -The modules within Solana Common exclude voting transactions, to benefit from a 75% reduction in data processing size and costs, delay your stream by over 1000 blocks from head. This can be done using the [`sleep`](https://doc.rust-lang.org/std/thread/fn.sleep.html) function in rust. +The modules within Solana Common exclude voting transactions, to benefit from a 75% reduction in data processing size and costs, delay your stream by over 1000 blocks from head. This can be done using the [`sleep`](https://doc.rust-lang.org/std/thread/fn.sleep.html) function in Rust. {% hint style="info" %} To access voting transactions, use the full Solana block, `sf.solana.type.v1.Block`, as input.