Skip to content

Commit 6b6ff1d

Browse files
authored
fix: point docs to graph tooling for example subgraph (#367)
1 parent 24a387d commit 6b6ff1d

File tree

100 files changed

+200
-200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+200
-200
lines changed

website/pages/ar/cookbook/arweave.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The GraphQL endpoint for Arweave subgraphs is determined by the schema definitio
166166

167167
Here is an example subgraph for reference:
168168

169-
- [Example subgraph for Arweave](https://github.com/graphprotocol/example-subgraphs/tree/main/arweave/blocks-transactions)
169+
- [Example subgraph for Arweave](https://github.com/graphprotocol/graph-tooling/tree/main/examples/arweave-blocks-transactions)
170170

171171
## الأسئلة الشائعة
172172

website/pages/ar/cookbook/cosmos.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ You can find the full list of types for the Cosmos integration [here](https://gi
178178

179179
It's important to note that Cosmos messages are chain-specific and they are passed to a subgraph in the form of a serialized [Protocol Buffers](https://developers.google.com/protocol-buffers/) payload. As a result, the message data needs to be decoded in a mapping function before it can be processed.
180180

181-
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/example-subgraphs/blob/main/cosmos/validator-delegations/src/decoding.ts).
181+
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/graph-tooling/blob/main/examples/cosmos-validator-delegations/src/decoding.ts).
182182

183183
## Creating and building a Cosmos subgraph
184184

@@ -250,10 +250,10 @@ Osmosis mainnet is `osmosis-1`. Osmosis current testnet is `osmo-test-4`.
250250

251251
فيما يلي بعض الأمثلة على الـ subgraphs للرجوع إليها:
252252

253-
[Block Filtering Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/block-filtering)
253+
[Block Filtering Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-block-filtering)
254254

255-
[Validator Rewards Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-rewards)
255+
[Validator Rewards Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-rewards)
256256

257-
[Validator Delegations Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-delegations)
257+
[Validator Delegations Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-delegations)
258258

259-
[Osmosis Token Swaps Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/osmosis-token-swaps)
259+
[Osmosis Token Swaps Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-osmosis-token-swaps)

website/pages/ar/cookbook/near.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ The GraphQL endpoint for NEAR subgraphs is determined by the schema definition,
235235

236236
فيما يلي بعض الأمثلة على الـ subgraphs للرجوع إليها:
237237

238-
[NEAR Blocks](https://github.com/graphprotocol/example-subgraphs/tree/main/near/blocks-example)
238+
[NEAR Blocks](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-blocks)
239239

240-
[NEAR Receipts](https://github.com/graphprotocol/example-subgraphs/tree/main/near/receipts-example)
240+
[NEAR Receipts](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-receipts)
241241

242242
## الأسئلة الشائعة
243243

website/pages/ar/cookbook/subgraph-debug-forking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ title: Quick and Easy Subgraph Debugging Using Forks
1818

1919
## من فضلك ، أرني بعض الأكواد!
2020

21-
To stay focused on subgraph debugging, let's keep things simple and run along with the [example-subgraph](https://github.com/graphprotocol/example-subgraphs/tree/main/ethereum/gravatar) indexing the Ethereum Gravity smart contract.
21+
To stay focused on subgraph debugging, let's keep things simple and run along with the [example-subgraph](https://github.com/graphprotocol/graph-tooling/tree/main/examples/ethereum-gravatar) indexing the Ethereum Gravity smart contract.
2222

2323
فيما يلي المعالجات المعرفة لفهرسة `Gravatar` ، بدون أخطاء على الإطلاق:
2424

website/pages/ar/developing/creating-a-subgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Subgraph manifest `subgraph.yaml` تحدد العقود الذكية لفهار
9898
```yaml
9999
specVersion: 0.0.4
100100
description: Gravatar for Ethereum
101-
repository: https://github.com/graphprotocol/example-subgraphs
101+
repository: https://github.com/graphprotocol/graph-tooling
102102
schema:
103103
file: ./schema.graphql
104104
dataSources:

website/pages/de/cookbook/arweave.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The GraphQL endpoint for Arweave subgraphs is determined by the schema definitio
166166

167167
Here is an example subgraph for reference:
168168

169-
- [Example subgraph for Arweave](https://github.com/graphprotocol/example-subgraphs/tree/main/arweave/blocks-transactions)
169+
- [Example subgraph for Arweave](https://github.com/graphprotocol/graph-tooling/tree/main/examples/arweave-blocks-transactions)
170170

171171
## FAQ
172172

website/pages/de/cookbook/cosmos.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ You can find the full list of types for the Cosmos integration [here](https://gi
178178

179179
It's important to note that Cosmos messages are chain-specific and they are passed to a subgraph in the form of a serialized [Protocol Buffers](https://developers.google.com/protocol-buffers/) payload. As a result, the message data needs to be decoded in a mapping function before it can be processed.
180180

181-
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/example-subgraphs/blob/main/cosmos/validator-delegations/src/decoding.ts).
181+
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/graph-tooling/blob/main/examples/cosmos-validator-delegations/src/decoding.ts).
182182

183183
## Creating and building a Cosmos subgraph
184184

@@ -250,10 +250,10 @@ Osmosis mainnet is `osmosis-1`. Osmosis current testnet is `osmo-test-4`.
250250

251251
Here are some example subgraphs for reference:
252252

253-
[Block Filtering Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/block-filtering)
253+
[Block Filtering Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-block-filtering)
254254

255-
[Validator Rewards Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-rewards)
255+
[Validator Rewards Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-rewards)
256256

257-
[Validator Delegations Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-delegations)
257+
[Validator Delegations Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-delegations)
258258

259-
[Osmosis Token Swaps Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/osmosis-token-swaps)
259+
[Osmosis Token Swaps Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-osmosis-token-swaps)

website/pages/de/cookbook/near.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ The GraphQL endpoint for NEAR subgraphs is determined by the schema definition,
235235

236236
Here are some example subgraphs for reference:
237237

238-
[NEAR Blocks](https://github.com/graphprotocol/example-subgraphs/tree/main/near/blocks-example)
238+
[NEAR Blocks](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-blocks)
239239

240-
[NEAR Receipts](https://github.com/graphprotocol/example-subgraphs/tree/main/near/receipts-example)
240+
[NEAR Receipts](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-receipts)
241241

242242
## FAQ
243243

website/pages/de/cookbook/subgraph-debug-forking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In a nutshell, we are going to _fork the failing subgraph_ from a remote Graph n
1818

1919
## Please, show me some code!
2020

21-
To stay focused on subgraph debugging, let's keep things simple and run along with the [example-subgraph](https://github.com/graphprotocol/example-subgraphs/tree/main/ethereum/gravatar) indexing the Ethereum Gravity smart contract.
21+
To stay focused on subgraph debugging, let's keep things simple and run along with the [example-subgraph](https://github.com/graphprotocol/graph-tooling/tree/main/examples/ethereum-gravatar) indexing the Ethereum Gravity smart contract.
2222

2323
Here are the handlers defined for indexing `Gravatar`s, with no bugs whatsoever:
2424

website/pages/de/developing/creating-a-subgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ For the example subgraph, `subgraph.yaml` is:
9898
```yaml
9999
specVersion: 0.0.4
100100
description: Gravatar for Ethereum
101-
repository: https://github.com/graphprotocol/example-subgraphs
101+
repository: https://github.com/graphprotocol/graph-tooling
102102
schema:
103103
file: ./schema.graphql
104104
dataSources:

website/pages/en/cookbook/arweave.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The GraphQL endpoint for Arweave subgraphs is determined by the schema definitio
166166

167167
Here is an example subgraph for reference:
168168

169-
- [Example subgraph for Arweave](https://github.com/graphprotocol/example-subgraphs/tree/main/arweave/blocks-transactions)
169+
- [Example subgraph for Arweave](https://github.com/graphprotocol/graph-tooling/tree/main/examples/arweave-blocks-transactions)
170170

171171
## FAQ
172172

website/pages/en/cookbook/cosmos.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ You can find the full list of types for the Cosmos integration [here](https://gi
178178

179179
It's important to note that Cosmos messages are chain-specific and they are passed to a subgraph in the form of a serialized [Protocol Buffers](https://developers.google.com/protocol-buffers/) payload. As a result, the message data needs to be decoded in a mapping function before it can be processed.
180180

181-
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/example-subgraphs/blob/main/cosmos/validator-delegations/src/decoding.ts).
181+
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/graph-tooling/blob/main/examples/cosmos-validator-delegations/src/decoding.ts).
182182

183183
## Creating and building a Cosmos subgraph
184184

@@ -250,10 +250,10 @@ Osmosis mainnet is `osmosis-1`. Osmosis current testnet is `osmo-test-4`.
250250

251251
Here are some example subgraphs for reference:
252252

253-
[Block Filtering Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/block-filtering)
253+
[Block Filtering Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-block-filtering)
254254

255-
[Validator Rewards Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-rewards)
255+
[Validator Rewards Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-rewards)
256256

257-
[Validator Delegations Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-delegations)
257+
[Validator Delegations Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-delegations)
258258

259-
[Osmosis Token Swaps Example](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/osmosis-token-swaps)
259+
[Osmosis Token Swaps Example](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-osmosis-token-swaps)

website/pages/en/cookbook/near.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ The GraphQL endpoint for NEAR subgraphs is determined by the schema definition,
235235

236236
Here are some example subgraphs for reference:
237237

238-
[NEAR Blocks](https://github.com/graphprotocol/example-subgraphs/tree/main/near/blocks-example)
238+
[NEAR Blocks](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-blocks)
239239

240-
[NEAR Receipts](https://github.com/graphprotocol/example-subgraphs/tree/main/near/receipts-example)
240+
[NEAR Receipts](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-receipts)
241241

242242
## FAQ
243243

website/pages/en/cookbook/subgraph-debug-forking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In a nutshell, we are going to _fork the failing subgraph_ from a remote Graph n
1818

1919
## Please, show me some code!
2020

21-
To stay focused on subgraph debugging, let's keep things simple and run along with the [example-subgraph](https://github.com/graphprotocol/example-subgraphs/tree/main/ethereum/gravatar) indexing the Ethereum Gravity smart contract.
21+
To stay focused on subgraph debugging, let's keep things simple and run along with the [example-subgraph](https://github.com/graphprotocol/graph-tooling/tree/main/examples/ethereum-gravatar) indexing the Ethereum Gravity smart contract.
2222

2323
Here are the handlers defined for indexing `Gravatar`s, with no bugs whatsoever:
2424

website/pages/en/developing/creating-a-subgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ For the example subgraph, `subgraph.yaml` is:
9898
```yaml
9999
specVersion: 0.0.4
100100
description: Gravatar for Ethereum
101-
repository: https://github.com/graphprotocol/example-subgraphs
101+
repository: https://github.com/graphprotocol/graph-tooling
102102
schema:
103103
file: ./schema.graphql
104104
dataSources:

website/pages/es/cookbook/arweave.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ El endpoint de GraphQL para los subgrafos de Arweave está determinado por la de
166166

167167
A continuación se muestra un ejemplo de subgrafo como referencia:
168168

169-
- [Ejemplo de subgrafo para Arweave](https://github.com/graphprotocol/example-subgraphs/tree/main/arweave/blocks-transactions)
169+
- [Ejemplo de subgrafo para Arweave](https://github.com/graphprotocol/graph-tooling/tree/main/examples/arweave-blocks-transactions)
170170

171171
## Preguntas frecuentes
172172

website/pages/es/cookbook/cosmos.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Puedes encontrar una lista completa de los tipos para la integración Cosmos aqu
178178

179179
Es importante tener en cuenta que los mensajes de Cosmos son específicos de la cadena y se pasan a un subgrafo en forma de una carga de Protocol Buffers serializada [Protocol Buffers](https://developers.google.com/protocol-buffers/) Como resultado, los datos del mensaje deben decodificarse en una función de mapeo antes de que puedan ser procesados. Un ejemplo de cómo decodificar los datos de un mensaje en un subgrafo se puede encontrar aquí.
180180

181-
Un ejemplo de cómo decodificar los datos de un mensaje en un subgrafo se puede encontrar aquí [here](https://github.com/graphprotocol/example-subgraphs/blob/main/cosmos/validator-delegations/src/decoding.ts).
181+
Un ejemplo de cómo decodificar los datos de un mensaje en un subgrafo se puede encontrar aquí [here](https://github.com/graphprotocol/graph-tooling/blob/main/examples/cosmos-validator-delegations/src/decoding.ts).
182182

183183
## Crear y construir un subgrafo de Cosmos
184184

@@ -250,10 +250,10 @@ La red principal de Osmosis es `osmosis-1`. La red de prueba actual de Osmosis e
250250

251251
A continuación se presentan algunos ejemplos de subgrafos como referencia:
252252

253-
[Ejemplo de filtrado de bloques](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/block-filtering)
253+
[Ejemplo de filtrado de bloques](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-block-filtering)
254254

255-
[Ejemplo de recompensas del validador](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-rewards)
255+
[Ejemplo de recompensas del validador](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-rewards)
256256

257-
[Ejemplo de delegaciones de validador](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-delegations)
257+
[Ejemplo de delegaciones de validador](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-delegations)
258258

259-
[Ejemplo de intercambio de tokens de Osmosis](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/osmosis-token-swaps)
259+
[Ejemplo de intercambio de tokens de Osmosis](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-osmosis-token-swaps)

website/pages/es/cookbook/near.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ El endpoint de GraphQL para los subgrafos NEAR está determinado por la definici
235235

236236
A continuación se presentan algunos ejemplos de subgrafos como referencia:
237237

238-
[Bloques NEAR](https://github.com/graphprotocol/example-subgraphs/tree/main/near/blocks-example)
238+
[Bloques NEAR](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-blocks)
239239

240-
[Recibos NEAR](https://github.com/graphprotocol/example-subgraphs/tree/main/near/receipts-example)
240+
[Recibos NEAR](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-receipts)
241241

242242
## Preguntas frecuentes
243243

website/pages/es/cookbook/subgraph-debug-forking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ En pocas palabras, vamos a _bifurcar el subgrafo fallido_ desde un nodo de Graph
1818

1919
## ¡Por favor, muéstrame algo de código!
2020

21-
Para mantenernos enfocados en el debugging de subgrafos, simplifiquemos las cosas y sigamos con el [example-subgraph](https://github.com/graphprotocol/example-subgraphs/tree/main/ethereum/gravatar) que indexa el contrato inteligente Ethereum Gravity.
21+
Para mantenernos enfocados en el debugging de subgrafos, simplifiquemos las cosas y sigamos con el [example-subgraph](https://github.com/graphprotocol/graph-tooling/tree/main/examples/ethereum-gravatar) que indexa el contrato inteligente Ethereum Gravity.
2222

2323
Estos son los handlers definidos para indexar `Gravatar`s, sin errores de ningún tipo:
2424

website/pages/es/developing/creating-a-subgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Para este subgrafo de ejemplo, `subgraph.yaml` es:
9898
```yaml
9999
specVersion: 0.0.4
100100
description: Gravatar for Ethereum
101-
repository: https://github.com/graphprotocol/example-subgraphs
101+
repository: https://github.com/graphprotocol/graph-tooling
102102
schema:
103103
file: ./schema.graphql
104104
dataSources:

website/pages/fr/cookbook/arweave.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Le endpoint GraphQL pour les subgraphes d'Arweave est déterminé par la défini
166166

167167
Voici un exemple de modèle subgraphe :
168168

169-
- [Exemple de subgraphe pour Arweave](https://github.com/graphprotocol/example-subgraphs/tree/main/arweave/blocks-transactions)
169+
- [Exemple de subgraphe pour Arweave](https://github.com/graphprotocol/graph-tooling/tree/main/examples/arweave-blocks-transactions)
170170

171171
## FAQ
172172

website/pages/fr/cookbook/cosmos.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Vous pouvez trouver la liste complète des types pour l'intégration Cosmos [ici
178178

179179
Il est important de noter que les messages Cosmos sont spécifiques à une chaîne et qu'ils sont transmis à un sous-graphe sous la forme d'une charge utile sérialisée [Protocol Buffers](https://developers.google.com/protocol-buffers/). Par conséquent, les données du message doivent être décodées dans une fonction de mappage avant de pouvoir être traitées.
180180

181-
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/example-subgraphs/blob/main/cosmos/validator-delegations/src/decoding.ts).
181+
An example of how to decode message data in a subgraph can be found [here](https://github.com/graphprotocol/graph-tooling/blob/main/examples/cosmos-validator-delegations/src/decoding.ts).
182182

183183
## Création et construction d'un subgraphe Cosmos
184184

@@ -250,10 +250,10 @@ Le réseau principal d'Osmosis est `osmosis-1`. Le réseau de test actuel d'Osmo
250250

251251
Voici quelques exemples de subgraphes pour référence :
252252

253-
[Exemple de filtrage par blocs](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/block-filtering)
253+
[Exemple de filtrage par blocs](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-block-filtering)
254254

255-
[Exemple de récompenses de validateurs](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-rewards)
255+
[Exemple de récompenses de validateurs](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-rewards)
256256

257-
[Exemple de délégation de validateurs](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/validator-delegations)
257+
[Exemple de délégation de validateurs](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-validator-delegations)
258258

259-
[Exemple d'échange de jetons Osmosis](https://github.com/graphprotocol/example-subgraphs/tree/main/cosmos/osmosis-token-swaps)
259+
[Exemple d'échange de jetons Osmosis](https://github.com/graphprotocol/graph-tooling/tree/main/examples/cosmos-osmosis-token-swaps)

website/pages/fr/cookbook/near.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ Le point de terminaison GraphQL pour les subgraphes NEAR est déterminé par la
235235

236236
Voici quelques exemples de subgraphes pour référence :
237237

238-
[NEAR Blocks](https://github.com/graphprotocol/example-subgraphs/tree/main/near/blocks-example)
238+
[NEAR Blocks](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-blocks)
239239

240-
[NEAR Receipts](https://github.com/graphprotocol/example-subgraphs/tree/main/near/receipts-example)
240+
[NEAR Receipts](https://github.com/graphprotocol/graph-tooling/tree/main/examples/near-receipts)
241241

242242
## FAQ
243243

website/pages/fr/cookbook/subgraph-debug-forking.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ En bref, nous allons _fork le subgraphe défaillant_ à partir d'un nœud The Gr
1818

1919
## Je vous en prie, montrez-moi du code !
2020

21-
Pour rester concentré sur le débogage des subgraphes, gardons les choses simples et suivons l'[exemple du subgraphe](https://github.com/graphprotocol/example-subgraphs/tree/main/ethereum/gravatar) indexant le contrat intelligent Ethereum Gravity.
21+
Pour rester concentré sur le débogage des subgraphes, gardons les choses simples et suivons l'[exemple du subgraphe](https://github.com/graphprotocol/graph-tooling/tree/main/examples/ethereum-gravatar) indexant le contrat intelligent Ethereum Gravity.
2222

2323
Voici les gestionnaires définis pour l'indexation des `Gravatars`, sans le moindre bug :
2424

website/pages/fr/developing/creating-a-subgraph.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ For the example subgraph, `subgraph.yaml` is:
9898
```yaml
9999
specVersion: 0.0.4
100100
description: Gravatar for Ethereum
101-
repository: https://github.com/graphprotocol/example-subgraphs
101+
repository: https://github.com/graphprotocol/graph-tooling
102102
schema:
103103
file: ./schema.graphql
104104
dataSources:

0 commit comments

Comments
 (0)