Skip to content

Commit 3a99ef4

Browse files
Giuliano-1idalithbbenface
authored
Updates to Substreams docs and to New Chain Integrations (#862)
* Updates to Substreams docs and to New Chain Integrations * First round of copy, formatting, and build edits. * quick-start, intro, and publishing done * Dev Container, Solana, Trans copy edits done. Found several broken links need to be fixed, but need to identify source. * Solana Account Changes & Sinks done (more broken links need fixing) * adding sps section (as requested) & some copy edits * Updating copy & some links * adjusting for all languages * removing one solana doc * Update website/pages/en/_meta.js Co-authored-by: Benoît Rouleau <benoit.rouleau@icloud.com> * fixes * Updating sps links * Fixed links * fixed minimal explanation * fix * fix to add studio link * clarifying the non-minimal path * Updating left-nav * fix * `pnpm check:fix` --------- Co-authored-by: Idalith Bustos <idalith.bustos@gmail.com> Co-authored-by: benface <benoit.rouleau@icloud.com> Co-authored-by: Idalith <126833353+idalithb@users.noreply.github.com>
1 parent 6ac3474 commit 3a99ef4

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

website/pages/en/_meta.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ export default {
1818
},
1919
'###2': {
2020
type: 'heading',
21-
title: 'Substreams-Powered Subgraphs',
21+
title: 'Substreams',
2222
},
23-
sps: {
23+
substreams: {
2424
type: 'children',
2525
},
2626
'---3': {
2727
type: 'separator',
2828
},
2929
'###3': {
3030
type: 'heading',
31-
title: 'Substreams',
31+
title: 'Substreams-Powered Subgraphs',
3232
},
33-
substreams: {
33+
sps: {
3434
type: 'children',
3535
},
3636
'---4': {

website/pages/en/sps/introduction.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Introduction to Substreams-Powered Subgraphs
33
---
44

5-
Boost your subgraphs efficiency and scalability by using [Substreams](/substreams/introduction/) to stream pre-indexed blockchain data.
5+
Boost your subgraph's efficiency and scalability by using [Substreams](/substreams/introduction/) to stream pre-indexed blockchain data.
66

77
## Overview
88

9-
Use a Substreams package (`.spkg`) as a data source, to give your subgraph access to a stream of pre-indexed blockchain data. This enables more efficient and scalable data handling, especially with large or complex blockchain networks.
9+
Use a Substreams package (`.spkg`) as a data source to give your subgraph access to a stream of pre-indexed blockchain data. This enables more efficient and scalable data handling, especially with large or complex blockchain networks.
1010

1111
### Specifics
1212

website/pages/en/substreams/developing/devcontainer.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In the Dev Container, you can either build or import your own `substreams.yaml`
2121
### Options
2222

2323
- **Minimal**: Starts you with the raw block `.proto` and requires development. This path is intended for experienced users.
24-
- **Non-Minimal**: Extracts filtered data using network-specific cache and Protobufs from the corresponding Foundational Modules that are built and maintained by the StreamingFast team.
24+
- **Non-Minimal**: Extracts filtered data using network-specific caches and Protobufs taken from corresponding foundational modules (maintained by the StreamingFast team). This path generates a working Substreams out of the box.
2525

2626
To share your work with the broader community, publish your `.spkg` to [Substreams registry](https://substreams.dev/) using:
2727

website/pages/en/substreams/introduction.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To start coding right away, check out the [Substreams Quick Start](/substreams/g
1010

1111
Substreams is a powerful parallel blockchain indexing technology designed to enhance performance and scalability within The Graph Network.
1212

13-
## Substreams Capabilities
13+
## Substreams Benefits
1414

1515
- **Accelerated Indexing**: Boost subgraph indexing time with a parallelized engine for quicker data retrieval and processing.
1616
- **Multi-Chain Support**: Expand indexing capabilities beyond EVM-based chains, supporting ecosystems like Solana, Injective, Starknet, and Vara.
@@ -37,7 +37,7 @@ fn get_my_block(blk: Block) -> Result<MyBlock, substreams::errors::Error> {
3737

3838
3. The WASM container is sent to a Substreams endpoint for execution. The Substreams provider feeds the WASM container with the blockchain data and the transformations are applied.
3939

40-
4. You select a [sink](https://docs.substreams.dev/how-to-guides/sinks), a place where you want to send the transformed data (for example a SQL database or a Subgraph).
40+
4. You select a [sink](https://docs.substreams.dev/how-to-guides/sinks), a place where you want to send the transformed data (such as a SQL database or a Subgraph).
4141

4242
## Additional Resources
4343

0 commit comments

Comments
 (0)