Skip to content

Commit

Permalink
Ensure links have a trailing slash, since those are the canonical URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
benface committed Dec 18, 2024
1 parent 3d74a0a commit 3560e12
Show file tree
Hide file tree
Showing 162 changed files with 206 additions and 206 deletions.
2 changes: 1 addition & 1 deletion website/pages/ar/indexing/chain-integration-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: نظرة عامة حول عملية التكامل مع الشبكة

## المرحلة الأولى: التكامل التقني

- Please visit [New Chain Integration](/new-chain-integration) for information on `graph-node` support for new chains.
- Please visit [New Chain Integration](/new-chain-integration/) for information on `graph-node` support for new chains.
- تستهل الفرق عملية التكامل مع البروتوكول من خلال إنشاء موضوع في المنتدى هنا(https://forum.thegraph.com/c/governance-gips/new-chain-support/71) (الفئة الفرعية "مصادر البيانات الجديدة" تحت قسم "الحوكمة واقتراحات تحسين الغراف"). استخدام قالب المنتدى الافتراضي إلزامي.

## المرحلة الثانية: التحقق من صحة التكامل
Expand Down
2 changes: 1 addition & 1 deletion website/pages/ar/resources/benefits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ The Graph’s decentralized network gives users access to geographic redundancy

Bottom line: The Graph Network is less expensive, easier to use, and produces superior results compared to running a `graph-node` locally.

Start using The Graph Network today, and learn how to [publish your subgraph to The Graph's decentralized network](/quick-start).
Start using The Graph Network today, and learn how to [publish your subgraph to The Graph's decentralized network](/quick-start/).
2 changes: 1 addition & 1 deletion website/pages/ar/subgraphs/cookbook/near.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ accounts:

### My question hasn't been answered, where can I get more help building NEAR subgraphs?

If it is a general question about subgraph development, there is a lot more information in the rest of the [Developer documentation](/quick-start). Otherwise please join [The Graph Protocol Discord](https://discord.gg/graphprotocol) and ask in the #near channel or email [email protected].
If it is a general question about subgraph development, there is a lot more information in the rest of the [Developer documentation](/quick-start/). Otherwise please join [The Graph Protocol Discord](https://discord.gg/graphprotocol) and ask in the #near channel or email [email protected].

## المراجع

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Substreams-powered subgraphs
---

[Substreams](/substreams) is a new framework for processing blockchain data, developed by StreamingFast for The Graph Network. A substreams modules can output entity changes, which are compatible with Subgraph entities. A subgraph can use such a Substreams module as a data source, bringing the indexing speed and additional data of Substreams to subgraph developers.
[Substreams](/substreams/) is a new framework for processing blockchain data, developed by StreamingFast for The Graph Network. A substreams modules can output entity changes, which are compatible with Subgraph entities. A subgraph can use such a Substreams module as a data source, bringing the indexing speed and additional data of Substreams to subgraph developers.

## Requirements

Expand All @@ -22,7 +22,7 @@ graph init --from-example substreams-powered-subgraph

## Defining a Substreams package

A Substreams package is composed of types (defined as [Protocol Buffers](https://protobuf.dev/)), modules (written in Rust), and a `substreams.yaml` file which references the types, and specifies how modules are triggered. [Visit the Substreams documentation to learn more about Substreams development](/substreams), and check out [awesome-substreams](https://github.com/pinax-network/awesome-substreams) and the [Substreams cookbook](https://github.com/pinax-network/substreams-cookbook) for more examples.
A Substreams package is composed of types (defined as [Protocol Buffers](https://protobuf.dev/)), modules (written in Rust), and a `substreams.yaml` file which references the types, and specifies how modules are triggered. [Visit the Substreams documentation to learn more about Substreams development](/substreams/), and check out [awesome-substreams](https://github.com/pinax-network/awesome-substreams) and the [Substreams cookbook](https://github.com/pinax-network/substreams-cookbook) for more examples.

The Substreams package in question detects contract deployments on Mainnet Ethereum, tracking the creation block and timestamp for all newly deployed contracts. To do this, there is a dedicated `Contract` type in `/proto/example.proto` ([learn more about defining Protocol Buffers](https://protobuf.dev/programming-guides/proto3/#simple)):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The `graph add` command will fetch the ABI from Etherscan (unless an ABI path is

| الاصدار | ملاحظات الإصدار |
| :-: | --- |
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
| 1.2.0 | Added support for [Indexed Argument Filtering](//#indexed-argument-filters--topic-filters) & declared `eth_call` |
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
| 0.0.9 | Supports `endBlock` feature |
Expand Down
2 changes: 1 addition & 1 deletion website/pages/ar/subgraphs/querying/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ Learn more about querying from an application [here](/querying/querying-from-an-

As you can notice, this query URL must use a unique API key. You can create and manage your API keys in [Subgraph Studio](https://thegraph.com/studio), in the "API Keys" section. Learn more about how to use Subgraph Studio [here](/deploying/subgraph-studio).

Subgraph Studio users start on a Free Plan, which allows them to make 100,000 queries per month. Additional queries are available on the Growth Plan, which offers usage based pricing for additional queries, payable by credit card, or GRT on Arbitrum. You can learn more about billing [here](/billing).
Subgraph Studio users start on a Free Plan, which allows them to make 100,000 queries per month. Additional queries are available on the Growth Plan, which offers usage based pricing for additional queries, payable by credit card, or GRT on Arbitrum. You can learn more about billing [here](/billing/).
4 changes: 2 additions & 2 deletions website/pages/ar/substreams/sps/sps-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: Substreams-powered subgraphs FAQ

Developed by [StreamingFast](https://www.streamingfast.io/), Substreams is an exceptionally powerful processing engine capable of consuming rich streams of blockchain data. Substreams allow you to refine and shape blockchain data for fast and seamless digestion by end-user applications. More specifically, Substreams is a blockchain-agnostic, parallelized, and streaming-first engine, serving as a blockchain data transformation layer. Powered by the [Firehose](https://firehose.streamingfast.io/), it ​​enables developers to write Rust modules, build upon community modules, provide extremely high-performance indexing, and [sink](https://substreams.streamingfast.io/reference-and-specs/manifests#sink) their data anywhere.

اذهب إلى [وثائق سبستريمز](/substreams) للتعرف على المزيد حول سبستريمز.
اذهب إلى [وثائق سبستريمز](/substreams/) للتعرف على المزيد حول سبستريمز.

## ما هي الغرافات الفرعية المدعومة بسبستريمز؟

Expand Down Expand Up @@ -62,7 +62,7 @@ There are many benefits to using Firehose, including:

## أين يمكن للمطورين الوصول إلى مزيد من المعلومات حول الغرافات الفرعية المدعومة بسبستريمز و سبستريمز؟

The [Substreams documentation](/substreams) will teach you how to build Substreams modules.
The [Substreams documentation](/substreams/) will teach you how to build Substreams modules.

ستوضح لك [وثائق الغرافات الفرعية المدعومة بواسطة سبستريمز](/cookbook/substreams-powered-subgraphs/) كيفية تجميعها للنشر على الغراف.

Expand Down
2 changes: 1 addition & 1 deletion website/pages/cs/indexing/chain-integration-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Pro blockchainové týmy, které usilují o [integraci s protokolem The Graph](h

## Fáze 1. Technická integrace

- Please visit [New Chain Integration](/new-chain-integration) for information on `graph-node` support for new chains.
- Please visit [New Chain Integration](/new-chain-integration/) for information on `graph-node` support for new chains.
- Týmy zahájí proces integrace protokolu vytvořením vlákna na fóru [zde](https://forum.thegraph.com/c/governance-gips/new-chain-support/71) (podkategorie Nové zdroje dat v části Správa a GIP). Použití výchozí šablony Fóra je povinné.

## Fáze 2. Ověřování integrace
Expand Down
2 changes: 1 addition & 1 deletion website/pages/cs/resources/benefits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ Decentralizovaná síť Grafu poskytuje uživatelům přístup ke geografické r

Podtrženo a sečteno: Síť Graf je levnější, jednodušší na používání a poskytuje lepší výsledky než lokální provozování `graph-node`.

Start using The Graph Network today, and learn how to [publish your subgraph to The Graph's decentralized network](/quick-start).
Start using The Graph Network today, and learn how to [publish your subgraph to The Graph's decentralized network](/quick-start/).
2 changes: 1 addition & 1 deletion website/pages/cs/subgraphs/cookbook/near.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Pro podgrafy NEAR zatím nejsou podporovány čekající funkce. V mezidobí mů

### Moje otázka nebyla zodpovězena, kde mohu získat další pomoc při vytváření podgrafů NEAR?

Pokud se jedná o obecnou otázku týkající se vývoje podgrafů, je zde mnohem více informací ve zbytku [dokumentace pro vývojáře](/quick-start). Jinak se prosím připojte k [The Graph Protocol Discord](https://discord.gg/graphprotocol) a zeptejte se na #near kanálu nebo e-mailem [email protected].
Pokud se jedná o obecnou otázku týkající se vývoje podgrafů, je zde mnohem více informací ve zbytku [dokumentace pro vývojáře](/quick-start/). Jinak se prosím připojte k [The Graph Protocol Discord](https://discord.gg/graphprotocol) a zeptejte se na #near kanálu nebo e-mailem [email protected].

## Odkazy:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Podgrafy napájen substreamů
---

[Substreams](/substreams) je nový framework pro zpracování blockchainových dat vyvinutý společností StreamingFast pro The Grafu síť. Moduly Substreams mohou vypisovat změny entit, které jsou kompatibilní s entitami Subgraph. Subgraph může takový modul Substreams používat jako zdroj dat, což vývojářům Subgraphu přináší rychlost indexování a další data Substreams.
[Substreams](/substreams/) je nový framework pro zpracování blockchainových dat vyvinutý společností StreamingFast pro The Grafu síť. Moduly Substreams mohou vypisovat změny entit, které jsou kompatibilní s entitami Subgraph. Subgraph může takový modul Substreams používat jako zdroj dat, což vývojářům Subgraphu přináší rychlost indexování a další data Substreams.

## Požadavky

Expand All @@ -22,7 +22,7 @@ graph init --from-example substreams-powered-subgraph

## Definování balíčku Substreams

Balíček Substreams se skládá z typů (definovaných jako [Protocol Buffers](https://protobuf.dev/)), modulů (napsaných v jazyce Rust) a souboru `substreams.yaml`, který odkazuje na typy a určuje, jak se moduly spouštějí. [Navštivte dokumentaci Substreams, kde se dozvíte více o vývoji Substreams](/substreams), a podívejte se na [awesome-substreams](https://github.com/pinax-network/awesome-substreams) a [Substreams cookbook](https://github.com/pinax-network/substreams-cookbook), kde najdete další příklady.
Balíček Substreams se skládá z typů (definovaných jako [Protocol Buffers](https://protobuf.dev/)), modulů (napsaných v jazyce Rust) a souboru `substreams.yaml`, který odkazuje na typy a určuje, jak se moduly spouštějí. [Navštivte dokumentaci Substreams, kde se dozvíte více o vývoji Substreams](/substreams/), a podívejte se na [awesome-substreams](https://github.com/pinax-network/awesome-substreams) a [Substreams cookbook](https://github.com/pinax-network/substreams-cookbook), kde najdete další příklady.

Dotyčný balíček Substreams detekuje nasazení kontraktů na Mainnet Ethereum a sleduje blok vytvoření a časové razítko všech nově nasazených kontraktů. K tomu je v souboru `/proto/example.proto` ([více informací o definování protokolových bufferů](https://protobuf.dev/programming-guides/proto3/#simple)) vyhrazen typ `Contract`:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Soubor(y) ABI se musí shodovat s vaší smlouvou. Soubory ABI lze získat něko

| Verze | Poznámky vydání |
| :-: | --- |
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
| 1.2.0 | Added support for [Indexed Argument Filtering](//#indexed-argument-filters--topic-filters) & declared `eth_call` |
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
| 0.0.9 | Supports `endBlock` feature |
Expand Down
2 changes: 1 addition & 1 deletion website/pages/cs/subgraphs/querying/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ Learn more about querying from an application [here](/querying/querying-from-an-

As you can notice, this query URL must use a unique API key. You can create and manage your API keys in [Subgraph Studio](https://thegraph.com/studio), in the "API Keys" section. Learn more about how to use Subgraph Studio [here](/deploying/subgraph-studio).

Subgraph Studio users start on a Free Plan, which allows them to make 100,000 queries per month. Additional queries are available on the Growth Plan, which offers usage based pricing for additional queries, payable by credit card, or GRT on Arbitrum. You can learn more about billing [here](/billing).
Subgraph Studio users start on a Free Plan, which allows them to make 100,000 queries per month. Additional queries are available on the Growth Plan, which offers usage based pricing for additional queries, payable by credit card, or GRT on Arbitrum. You can learn more about billing [here](/billing/).
4 changes: 2 additions & 2 deletions website/pages/cs/substreams/sps/sps-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: Podgrafy napájen substreamů

Developed by [StreamingFast](https://www.streamingfast.io/), Substreams is an exceptionally powerful processing engine capable of consuming rich streams of blockchain data. Substreams allow you to refine and shape blockchain data for fast and seamless digestion by end-user applications. More specifically, Substreams is a blockchain-agnostic, parallelized, and streaming-first engine, serving as a blockchain data transformation layer. Powered by the [Firehose](https://firehose.streamingfast.io/), it ​​enables developers to write Rust modules, build upon community modules, provide extremely high-performance indexing, and [sink](https://substreams.streamingfast.io/reference-and-specs/manifests#sink) their data anywhere.

Další informace o substreamu naleznete v [Dokumentace k substreamů](/substreams).
Další informace o substreamu naleznete v [Dokumentace k substreamů](/substreams/).

## Co jsou substreamu napájen podgrafy?

Expand Down Expand Up @@ -62,7 +62,7 @@ Používání Firehose přináší mnoho výhod, včetně:

## Kde mohou vývojáři získat více informací o substreamu, které jsou založeny na podgraf a substreamu?

Dokumentace [Substreams](/substreams) vás naučí, jak vytvářet moduly Substreams.
Dokumentace [Substreams](/substreams/) vás naučí, jak vytvářet moduly Substreams.

Dokumentace [Substreams-powered subgraphs](/cookbook/substreams-powered-subgraphs/) vám ukáže, jak je zabalit pro nasazení na Grafu.

Expand Down
2 changes: 1 addition & 1 deletion website/pages/de/indexing/chain-integration-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A transparent and governance-based integration process was designed for blockcha

## Stage 1. Technical Integration

- Please visit [New Chain Integration](/new-chain-integration) for information on `graph-node` support for new chains.
- Please visit [New Chain Integration](/new-chain-integration/) for information on `graph-node` support for new chains.
- Teams initiate the protocol integration process by creating a Forum thread [here](https://forum.thegraph.com/c/governance-gips/new-chain-support/71) (New Data Sources sub-category under Governance & GIPs). Using the default Forum template is mandatory.

## Stage 2. Integration Validation
Expand Down
2 changes: 1 addition & 1 deletion website/pages/de/resources/benefits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ The Graph’s decentralized network gives users access to geographic redundancy

Bottom line: The Graph Network is less expensive, easier to use, and produces superior results compared to running a `graph-node` locally.

Start using The Graph Network today, and learn how to [publish your subgraph to The Graph's decentralized network](/quick-start).
Start using The Graph Network today, and learn how to [publish your subgraph to The Graph's decentralized network](/quick-start/).
2 changes: 1 addition & 1 deletion website/pages/de/subgraphs/cookbook/near.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Pending functionality is not yet supported for NEAR subgraphs. In the interim, y

### My question hasn't been answered, where can I get more help building NEAR subgraphs?

If it is a general question about subgraph development, there is a lot more information in the rest of the [Developer documentation](/quick-start). Otherwise please join [The Graph Protocol Discord](https://discord.gg/graphprotocol) and ask in the #near channel or email [email protected].
If it is a general question about subgraph development, there is a lot more information in the rest of the [Developer documentation](/quick-start/). Otherwise please join [The Graph Protocol Discord](https://discord.gg/graphprotocol) and ask in the #near channel or email [email protected].

## References

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Substreams-powered subgraphs
---

[Substreams](/substreams) is a new framework for processing blockchain data, developed by StreamingFast for The Graph Network. A substreams modules can output entity changes, which are compatible with Subgraph entities. A subgraph can use such a Substreams module as a data source, bringing the indexing speed and additional data of Substreams to subgraph developers.
[Substreams](/substreams/) is a new framework for processing blockchain data, developed by StreamingFast for The Graph Network. A substreams modules can output entity changes, which are compatible with Subgraph entities. A subgraph can use such a Substreams module as a data source, bringing the indexing speed and additional data of Substreams to subgraph developers.

## Requirements

Expand All @@ -22,7 +22,7 @@ graph init --from-example substreams-powered-subgraph

## Defining a Substreams package

A Substreams package is composed of types (defined as [Protocol Buffers](https://protobuf.dev/)), modules (written in Rust), and a `substreams.yaml` file which references the types, and specifies how modules are triggered. [Visit the Substreams documentation to learn more about Substreams development](/substreams), and check out [awesome-substreams](https://github.com/pinax-network/awesome-substreams) and the [Substreams cookbook](https://github.com/pinax-network/substreams-cookbook) for more examples.
A Substreams package is composed of types (defined as [Protocol Buffers](https://protobuf.dev/)), modules (written in Rust), and a `substreams.yaml` file which references the types, and specifies how modules are triggered. [Visit the Substreams documentation to learn more about Substreams development](/substreams/), and check out [awesome-substreams](https://github.com/pinax-network/awesome-substreams) and the [Substreams cookbook](https://github.com/pinax-network/substreams-cookbook) for more examples.

The Substreams package in question detects contract deployments on Mainnet Ethereum, tracking the creation block and timestamp for all newly deployed contracts. To do this, there is a dedicated `Contract` type in `/proto/example.proto` ([learn more about defining Protocol Buffers](https://protobuf.dev/programming-guides/proto3/#simple)):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The ABI file(s) must match your contract(s). There are a few ways to obtain ABI

| Version | Release notes |
| :-: | --- |
| 1.2.0 | Added support for [Indexed Argument Filtering](/#indexed-argument-filters--topic-filters) & declared `eth_call` |
| 1.2.0 | Added support for [Indexed Argument Filtering](//#indexed-argument-filters--topic-filters) & declared `eth_call` |
| 1.1.0 | Supports [Timeseries & Aggregations](#timeseries-and-aggregations). Added support for type `Int8` for `id`. |
| 1.0.0 | Supports [`indexerHints`](/developing/creating-a-subgraph/#indexer-hints) feature to prune subgraphs |
| 0.0.9 | Supports `endBlock` feature |
Expand Down
Loading

0 comments on commit 3560e12

Please sign in to comment.