Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions website/pages/en/_meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ export default {
},
'###2': {
type: 'heading',
title: 'Substreams-Powered Subgraphs',
title: 'Substreams',
},
sps: {
substreams: {
type: 'children',
},
'---3': {
type: 'separator',
},
'###3': {
type: 'heading',
title: 'Substreams',
title: 'Substreams-Powered Subgraphs',
},
substreams: {
sps: {
type: 'children',
},
'---4': {
Expand Down
4 changes: 2 additions & 2 deletions website/pages/en/sps/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
title: Introduction to Substreams-Powered Subgraphs
---

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

## Overview

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.
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.

### Specifics

Expand Down
2 changes: 1 addition & 1 deletion website/pages/en/substreams/developing/devcontainer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ In the Dev Container, you can either build or import your own `substreams.yaml`
### Options

- **Minimal**: Starts you with the raw block `.proto` and requires development. This path is intended for experienced users.
- **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.
- **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.

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

Expand Down
4 changes: 2 additions & 2 deletions website/pages/en/substreams/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To start coding right away, check out the [Substreams Quick Start](/substreams/g

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

## Substreams Capabilities
## Substreams Benefits

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

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.

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).
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).

## Additional Resources

Expand Down
Loading