@graphprotocol/graph-cli 0.66.0 → 0.66.1-alpha-20240117174036-b4955ea

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.66.1-alpha-20240117174036-b4955ea
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1566](https://github.com/graphprotocol/graph-tooling/pull/1566)
8
+ [`b4955ea`](https://github.com/graphprotocol/graph-tooling/commit/b4955ea7791642869e63dab616b3c2185da2499e)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - fix zksync-era-sepolia etherscan url
10
+
3
11
  ## 0.66.0
4
12
 
5
13
  ### 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.66.0",
2
+ "version": "0.66.1-alpha-20240117174036-b4955ea",
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.66.0",
3
+ "version": "0.66.1-alpha-20240117174036-b4955ea",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {