Last active
December 9, 2021 15:35
-
-
Save erin-koen/acf6d8e0423007dd19d599de55ee9010 to your computer and use it in GitHub Desktop.
How to run a local fork of mainnet along with the associated subgraphs
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
### PROTOCOL | |
- confirm node url: | |
ETHEREUM_NODE_MAINNET=https://eth-mainnet.alchemyapi.io/v2/ALxM6coYqWo1MUS12C4vQGTRVD0JfvYx | |
- `yarn`, `yarn compile`, `yarn build` | |
- `yarn hardhat node --export ../subgraphs/deployments/local/v4.json --hostname 0.0.0.0` | |
### SUBGRAPHS | |
- `yarn` in parent dir | |
- subgraphs/.env: | |
``` | |
ETHEREUM_NETWORK=local | |
JSONRPC_ENDPOINT=http://host.docker.internal:8545 | |
``` | |
- docker-compose up -d | |
- in subgraphs/subgraphs/asset-universe `yarn deploy local` | |
- in subgraphs/subgraphs/enzyme-core `yarn deploy local` | |
### BACKEND | |
- change `asset-universe` and `enzyme-core` subgraph url env variables to `http://localhost:8000/{subgraph-url}` | |
- change ENZYME_ETHEREUM_NODE_MAINNET=http://localhost:8545 | |
- from subgraphs dir, copy `../subgrahs/deployments/local/v4.json` to `../backend/src/graphql/release/data/json/mainnet/v4.json` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment