@graphprotocol/graph-cli 0.68.0 → 0.68.1

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.68.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1589](https://github.com/graphprotocol/graph-tooling/pull/1589)
8
+ [`7f0e8ab`](https://github.com/graphprotocol/graph-tooling/commit/7f0e8ab70bcd2279b54a040031de2795e7346b1a)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - fix optimism sepolia url
10
+
3
11
  ## 0.68.0
4
12
 
5
13
  ### Minor Changes
@@ -176,6 +176,8 @@ const getEtherscanLikeAPIUrl = (network) => {
176
176
  return `https://api-sepolia.etherscan.io/api`;
177
177
  case 'scroll-sepolia':
178
178
  return `https://api-sepolia.scrollscan.dev/api`;
179
+ case 'optimism-sepolia':
180
+ return `https://sepolia-optimism.etherscan.io/api`;
179
181
  case 'scroll':
180
182
  return `https://blockscout.scroll.io/api`;
181
183
  case 'linea':
@@ -272,6 +274,8 @@ const getPublicRPCEndpoint = (network) => {
272
274
  return 'https://linea-goerli.public.blastapi.io';
273
275
  case 'blast-testnet':
274
276
  return 'https://sepolia.blast.io';
277
+ case 'optimism-sepolia':
278
+ return 'https://sepolia.optimism.io';
275
279
  default:
276
280
  throw new Error(`Unknown network: ${network}`);
277
281
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.68.0",
2
+ "version": "0.68.1",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.68.0",
3
+ "version": "0.68.1",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {