Skip to content
Merged
Show file tree
Hide file tree
Changes from 20 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
2 changes: 1 addition & 1 deletion website/pages/en/sps/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Boost your subgraph’s efficiency and scalability by using [Substreams](/substr

## 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
2 changes: 1 addition & 1 deletion 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 Down
2 changes: 1 addition & 1 deletion website/src/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ function Layout({ showLocaleSwitcher, children }: PropsWithChildren<{ showLocale
placeholder={t('docsearch.button.buttonText')}
/>
{showLocaleSwitcher ? (
<ExperimentalLocaleSwitcher className="prop-display-format-short max-sm:hidden xl:prop-display-format-full" />
<ExperimentalLocaleSwitcher className="prop-display-format-short xl:prop-display-format-full max-sm:hidden" />
) : null}
{defaultContentAfter}
</>
Expand Down
Loading