@graphprotocol/graph-cli 0.41.1 → 0.42.0-rc-20230222192329-05e8d44

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.42.0-rc-20230222192329-05e8d44
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1079](https://github.com/graphprotocol/graph-tooling/pull/1079)
8
+ [`570eb22`](https://github.com/graphprotocol/graph-tooling/commit/570eb225fad705998cca3998879a6a1140a73143)
9
+ Thanks [@incrypto32](https://github.com/incrypto32)! - Remove optimism-kovan, Add optimism-goerli
10
+
3
11
  ## 0.41.1
4
12
 
5
13
  ### Patch Changes
@@ -120,8 +120,8 @@ const getEtherscanLikeAPIUrl = (network) => {
120
120
  return `https://api.aurorascan.dev/api`;
121
121
  case 'aurora-testnet':
122
122
  return `https://api-testnet.aurorascan.dev/api`;
123
- case 'optimism-kovan':
124
- return `https://api-kovan-optimistic.etherscan.io/api`;
123
+ case 'optimism-goerli':
124
+ return `https://api-goerli-optimistic.etherscan.io/api`;
125
125
  case 'optimism':
126
126
  return `https://api-optimistic.etherscan.io/api`;
127
127
  case 'moonbeam':
@@ -196,8 +196,8 @@ const getPublicRPCEndpoint = (network) => {
196
196
  return 'https://moonriver.public.blastapi.io';
197
197
  case 'optimism':
198
198
  return 'https://mainnet.optimism.io';
199
- case 'optimism-kovan':
200
- return 'https://kovan.optimism.io';
199
+ case 'optimism-goerli':
200
+ return 'https://goerli.optimism.io';
201
201
  case 'poa-core':
202
202
  return 'https://core.poa.network';
203
203
  case 'poa-sokol':
@@ -115,7 +115,7 @@ class Protocol {
115
115
  'arbitrum-one',
116
116
  'arbitrum-goerli',
117
117
  'optimism',
118
- 'optimism-kovan',
118
+ 'optimism-goerli',
119
119
  'aurora',
120
120
  'aurora-testnet',
121
121
  'base-testnet',
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.41.1",
2
+ "version": "0.42.0-rc-20230222192329-05e8d44",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
@@ -566,7 +566,7 @@
566
566
  "arbitrum-one",
567
567
  "arbitrum-goerli",
568
568
  "optimism",
569
- "optimism-kovan",
569
+ "optimism-goerli",
570
570
  "aurora",
571
571
  "aurora-testnet",
572
572
  "base-testnet",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.41.1",
3
+ "version": "0.42.0-rc-20230222192329-05e8d44",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {