@graphprotocol/graph-cli 0.37.7 → 0.38.0-alpha-20230130220109-900737f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.38.0-alpha-20230130220109-900737f
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1053](https://github.com/graphprotocol/graph-tooling/pull/1053)
8
+ [`19058e1`](https://github.com/graphprotocol/graph-tooling/commit/19058e1ce87b12b179d0642d1d3748c72727c301)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - Remove arbitrum-rinkeby to add arbitrum-goerli
10
+
3
11
  ## 0.37.7
4
12
 
5
13
  ### Patch Changes
@@ -38,6 +38,8 @@ const getEtherscanLikeAPIUrl = (network) => {
38
38
  return `https://api.etherscan.io/api`;
39
39
  case 'arbitrum-one':
40
40
  return `https://api.arbiscan.io/api`;
41
+ case 'arbitrum-goerli':
42
+ return `https://api-goerli.arbiscan.io/api`;
41
43
  case 'bsc':
42
44
  return `https://api.bscscan.com/api`;
43
45
  case 'chapel':
@@ -113,7 +113,7 @@ class Protocol {
113
113
  'moonriver',
114
114
  'mbase',
115
115
  'arbitrum-one',
116
- 'arbitrum-rinkeby',
116
+ 'arbitrum-goerli',
117
117
  'optimism',
118
118
  'optimism-kovan',
119
119
  'aurora',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.37.7",
3
+ "version": "0.38.0-alpha-20230130220109-900737f",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {