-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Multiple networks and templates.yaml (#761)
* Initial commit * Moving to deploying section * Adding subgraph health * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Update website/pages/en/deploying/multiple-networks.mdx Co-authored-by: Benoît Rouleau <[email protected]> * Final tweaks * Fixing lint errors * adding page to multiple languages * slight correction --------- Co-authored-by: Benoît Rouleau <[email protected]> Co-authored-by: Idalith Bustos <[email protected]>
- Loading branch information
1 parent
b8c1764
commit 996eef8
Showing
25 changed files
with
5,785 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,241 @@ | ||
--- | ||
title: Deploying a Subgraph to Multiple Networks | ||
--- | ||
|
||
This page explains how to deploy a subgraph to multiple networks. To deploy a subgraph you need to first install the [Graph CLI](https://github.com/graphprotocol/graph-tooling/tree/main/packages/cli). If you have not created a subgraph already, see [Creating a subgraph](/developing/creating-a-subgraph). | ||
|
||
## Deploying the subgraph to multiple networks | ||
|
||
In some cases, you will want to deploy the same subgraph to multiple networks without duplicating all of its code. The main challenge that comes with this is that the contract addresses on these networks are different. | ||
|
||
### Using `graph-cli` | ||
|
||
Both `graph build` (since `v0.29.0`) and `graph deploy` (since `v0.32.0`) accept two new options: | ||
|
||
```sh | ||
Options: | ||
|
||
... | ||
--network <name> Network configuration to use from the networks config file | ||
--network-file <path> Networks config file path (default: "./networks.json") | ||
``` | ||
|
||
You can use the `--network` option to specify a network configuration from a `json` standard file (defaults to `networks.json`) to easily update your subgraph during development. | ||
|
||
> Note: The `init` command will now auto-generate a `networks.json` based on the provided information. You will then be able to update existing or add additional networks. | ||
If you don't have a `networks.json` file, you'll need to manually create one with the following structure: | ||
|
||
```json | ||
{ | ||
"network1": { // the network name | ||
"dataSource1": { // the dataSource name | ||
"address": "0xabc...", // the contract address (optional) | ||
"startBlock": 123456 // the startBlock (optional) | ||
}, | ||
"dataSource2": { | ||
"address": "0x123...", | ||
"startBlock": 123444 | ||
} | ||
}, | ||
"network2": { | ||
"dataSource1": { | ||
"address": "0x987...", | ||
"startBlock": 123 | ||
}, | ||
"dataSource2": { | ||
"address": "0xxyz..", | ||
"startBlock": 456 | ||
} | ||
}, | ||
... | ||
} | ||
``` | ||
|
||
> Note: You don't have to specify any of the `templates` (if you have any) in the config file, only the `dataSources`. If there are any `templates` declared in the `subgraph.yaml` file, their network will be automatically updated to the one specified with the `--network` option. | ||
Now, let's assume you want to be able to deploy your subgraph to the `mainnet` and `sepolia` networks, and this is your `subgraph.yaml`: | ||
|
||
```yaml | ||
# ... | ||
dataSources: | ||
- kind: ethereum/contract | ||
name: Gravity | ||
network: mainnet | ||
source: | ||
address: '0x123...' | ||
abi: Gravity | ||
mapping: | ||
kind: ethereum/events | ||
``` | ||
This is what your networks config file should look like: | ||
```json | ||
{ | ||
"mainnet": { | ||
"Gravity": { | ||
"address": "0x123..." | ||
} | ||
}, | ||
"sepolia": { | ||
"Gravity": { | ||
"address": "0xabc..." | ||
} | ||
} | ||
} | ||
``` | ||
|
||
Now we can run one of the following commands: | ||
|
||
```sh | ||
# Using default networks.json file | ||
yarn build --network sepolia | ||
|
||
# Using custom named file | ||
yarn build --network sepolia --network-file path/to/config | ||
``` | ||
|
||
The `build` command will update your `subgraph.yaml` with the `sepolia` configuration and then re-compile the subgraph. Your `subgraph.yaml` file now should look like this: | ||
|
||
```yaml | ||
# ... | ||
dataSources: | ||
- kind: ethereum/contract | ||
name: Gravity | ||
network: sepolia | ||
source: | ||
address: '0xabc...' | ||
abi: Gravity | ||
mapping: | ||
kind: ethereum/events | ||
``` | ||
Now you are ready to `yarn deploy`. | ||
|
||
> Note: As mentioned earlier, since `graph-cli 0.32.0` you can directly run `yarn deploy` with the `--network` option: | ||
|
||
```sh | ||
# Using default networks.json file | ||
yarn deploy --network sepolia | ||
# Using custom named file | ||
yarn deploy --network sepolia --network-file path/to/config | ||
``` | ||
|
||
### Using subgraph.yaml template | ||
|
||
One way to parameterize aspects like contract addresses using older `graph-cli` versions is to generate parts of it with a templating system like [Mustache](https://mustache.github.io/) or [Handlebars](https://handlebarsjs.com/). | ||
|
||
To illustrate this approach, let's assume a subgraph should be deployed to mainnet and Sepolia using different contract addresses. You could then define two config files providing the addresses for each network: | ||
|
||
```json | ||
{ | ||
"network": "mainnet", | ||
"address": "0x123..." | ||
} | ||
``` | ||
|
||
and | ||
|
||
```json | ||
{ | ||
"network": "sepolia", | ||
"address": "0xabc..." | ||
} | ||
``` | ||
|
||
Along with that, you would substitute the network name and addresses in the manifest with variable placeholders `{{network}}` and `{{address}}` and rename the manifest to e.g. `subgraph.template.yaml`: | ||
|
||
```yaml | ||
# ... | ||
dataSources: | ||
- kind: ethereum/contract | ||
name: Gravity | ||
network: mainnet | ||
network: {{network}} | ||
source: | ||
address: '0x2E645469f354BB4F5c8a05B3b30A929361cf77eC' | ||
address: '{{address}}' | ||
abi: Gravity | ||
mapping: | ||
kind: ethereum/events | ||
``` | ||
|
||
In order to generate a manifest to either network, you could add two additional commands to `package.json` along with a dependency on `mustache`: | ||
|
||
```json | ||
{ | ||
... | ||
"scripts": { | ||
... | ||
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml", | ||
"prepare:sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml" | ||
}, | ||
"devDependencies": { | ||
... | ||
"mustache": "^3.1.0" | ||
} | ||
} | ||
``` | ||
|
||
To deploy this subgraph for mainnet or Sepolia you would now simply run one of the two following commands: | ||
|
||
```sh | ||
# Mainnet: | ||
yarn prepare:mainnet && yarn deploy | ||
# Sepolia: | ||
yarn prepare:sepolia && yarn deploy | ||
``` | ||
|
||
A working example of this can be found [here](https://github.com/graphprotocol/example-subgraph/tree/371232cf68e6d814facf5e5413ad0fef65144759). | ||
|
||
**Note:** This approach can also be applied to more complex situations, where it is necessary to substitute more than contract addresses and network names or where generating mappings or ABIs from templates as well. | ||
|
||
This will give you the `chainHeadBlock` which you can compare with the `latestBlock` on your subgraph to check if it is running behind. `synced` informs if the subgraph has ever caught up to the chain. `health` can currently take the values of `healthy` if no errors occurred, or `failed` if there was an error which halted the progress of the subgraph. In this case, you can check the `fatalError` field for details on this error. | ||
|
||
## Subgraph Studio subgraph archive policy | ||
|
||
A subgraph version in Studio is archived if and only if it meets the following criteria: | ||
|
||
- The version is not published to the network (or pending publish) | ||
- The version was created 45 or more days ago | ||
- The subgraph hasn't been queried in 30 days | ||
|
||
In addition, when a new version is deployed, if the subgraph has not been published, then the N-2 version of the subgraph is archived. | ||
|
||
Every subgraph affected with this policy has an option to bring the version in question back. | ||
|
||
## Checking subgraph health | ||
|
||
If a subgraph syncs successfully, that is a good sign that it will continue to run well forever. However, new triggers on the network might cause your subgraph to hit an untested error condition or it may start to fall behind due to performance issues or issues with the node operators. | ||
|
||
Graph Node exposes a GraphQL endpoint which you can query to check the status of your subgraph. On the hosted service, it is available at `https://api.thegraph.com/index-node/graphql`. On a local node, it is available on port `8030/graphql` by default. The full schema for this endpoint can be found [here](https://github.com/graphprotocol/graph-node/blob/master/server/index-node/src/schema.graphql). Here is an example query that checks the status of the current version of a subgraph: | ||
|
||
```graphql | ||
{ | ||
indexingStatusForCurrentVersion(subgraphName: "org/subgraph") { | ||
synced | ||
health | ||
fatalError { | ||
message | ||
block { | ||
number | ||
hash | ||
} | ||
handler | ||
} | ||
chains { | ||
chainHeadBlock { | ||
number | ||
} | ||
latestBlock { | ||
number | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
This will give you the `chainHeadBlock` which you can compare with the `latestBlock` on your subgraph to check if it is running behind. `synced` informs if the subgraph has ever caught up to the chain. `health` can currently take the values of `healthy` if no errors occurred, or `failed` if there was an error which halted the progress of the subgraph. In this case, you can check the `fatalError` field for details on this error. |
Oops, something went wrong.