-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(graph): add arbitrum-one flavor (#121)
* feat(graph): add arbitrum-one flavor * fix(graph): use correct gateway url for arb1
- Loading branch information
1 parent
984f071
commit 7e56ade
Showing
5 changed files
with
50 additions
and
4 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
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,17 @@ | ||
# This is a values.yaml override file for https://github.com/graphops/launchpad-charts/tree/main/charts/graph-network-indexer | ||
|
||
indexerDefaults: | ||
config: | ||
ethereum: "http://proxyd-proxyd.arbitrum-one:8545" | ||
ethereum-network: "arbitrum-one" | ||
network-subgraph-endpoint: "https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-arbitrum" | ||
|
||
indexerAgent: | ||
config: | ||
collect-receipts-endpoint: "https://gateway-arbitrum.network.thegraph.com/collect-receipts" | ||
network-subgraph-deployment: "QmcMEEdcVn32kfpkjwmiw5ZADFJdP2JDzm9j56h9iEVrXn" # find at https://github.com/graphprotocol/indexer/blob/main/docs/networks.md | ||
epoch-subgraph-endpoint: "https://api.thegraph.com/subgraphs/name/graphprotocol/arbitrum-epoch-block-oracle" # find at https://github.com/graphprotocol/indexer/blob/main/docs/networks.md | ||
|
||
indexerService: | ||
config: | ||
client-signer-address: "0xc483960d4D58eabc434Dc88a620AdFd883D6Dd4e" # find at https://github.com/graphprotocol/indexer/blob/main/docs/networks.md |
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,18 @@ | ||
# This is a values.yaml override file for https://github.com/graphops/launchpad-charts/tree/main/charts/graph-node | ||
|
||
chains: | ||
mainnet: | ||
enabled: false | ||
shard: primary | ||
provider: | ||
- label: eth-mainnet | ||
url: http://proxyd-proxyd.eth-mainnet:8545 | ||
features: [archive, traces] | ||
|
||
arbitrum-one: | ||
enabled: false | ||
shard: primary | ||
provider: | ||
- label: arbitrum-one | ||
url: http://proxyd-proxyd.arbitrum-one:8545 | ||
features: [archive, traces] |
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
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