@graphprotocol/graph-cli 0.67.0-alpha-20240117094658-7a3c277 → 0.67.0

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,14 +1,20 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.67.0-alpha-20240117094658-7a3c277
3
+ ## 0.67.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
7
  - [#1409](https://github.com/graphprotocol/graph-tooling/pull/1409)
8
- [`7a3c277`](https://github.com/graphprotocol/graph-tooling/commit/7a3c2777c32082acbe0ac7ddc4089c3893d8bd39)
8
+ [`e15e036`](https://github.com/graphprotocol/graph-tooling/commit/e15e0361c38348f2ca20a89ab7a49ed2235922e7)
9
9
  Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for endBlock in subgraph
10
10
  manifest
11
11
 
12
+ ### Patch Changes
13
+
14
+ - [#1566](https://github.com/graphprotocol/graph-tooling/pull/1566)
15
+ [`82bca91`](https://github.com/graphprotocol/graph-tooling/commit/82bca91aa0ca12af087f470b4637b92c3ee486c2)
16
+ Thanks [@saihaj](https://github.com/saihaj)! - fix zksync-era-sepolia etherscan url
17
+
12
18
  ## 0.66.0
13
19
 
14
20
  ### Minor Changes
@@ -155,6 +155,8 @@ const getEtherscanLikeAPIUrl = (network) => {
155
155
  return `https://block-explorer-api.mainnet.zksync.io/api`;
156
156
  case 'zksync-era-testnet':
157
157
  return `https://block-explorer-api.testnets.zksync.dev/api`;
158
+ case 'zksync-era-sepolia':
159
+ return 'https://block-explorer-api.sepolia.zksync.dev/api';
158
160
  case 'polygon-zkevm-testnet':
159
161
  return `https://testnet-zkevm.polygonscan.com/api`;
160
162
  case 'polygon-zkevm':
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.67.0-alpha-20240117094658-7a3c277",
2
+ "version": "0.67.0",
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.67.0-alpha-20240117094658-7a3c277",
3
+ "version": "0.67.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {