@graphprotocol/graph-cli 0.67.3-alpha-20240202155343-c40dbbc → 0.67.4

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,11 +1,18 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.67.3-alpha-20240202155343-c40dbbc
3
+ ## 0.67.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f49aab9`](https://github.com/graphprotocol/graph-tooling/commit/f49aab98d643ba6d8c3708772bed8318825effed)
8
+ Thanks [@saihaj](https://github.com/saihaj)! - fix blast testnet etherscan and RPC URL
9
+
10
+ ## 0.67.3
4
11
 
5
12
  ### Patch Changes
6
13
 
7
14
  - [#1579](https://github.com/graphprotocol/graph-tooling/pull/1579)
8
- [`c40dbbc`](https://github.com/graphprotocol/graph-tooling/commit/c40dbbc8f78e9bab8b910de261b8c898c8d456c7)
15
+ [`bc61adb`](https://github.com/graphprotocol/graph-tooling/commit/bc61adb8ae4f6ba8b467e98ed390a96029b702d8)
9
16
  Thanks [@saihaj](https://github.com/saihaj)! - fix line and linea-goerli API URLs
10
17
 
11
18
  ## 0.67.2
@@ -182,6 +182,8 @@ const getEtherscanLikeAPIUrl = (network) => {
182
182
  return `https://api.lineascan.build/api`;
183
183
  case 'linea-goerli':
184
184
  return `https://api.linea-goerli.build/api`;
185
+ case 'blast-testnet':
186
+ return `https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan/api`;
185
187
  default:
186
188
  return `https://api-${network}.etherscan.io/api`;
187
189
  }
@@ -268,6 +270,8 @@ const getPublicRPCEndpoint = (network) => {
268
270
  return 'https://linea-mainnet.public.blastapi.io';
269
271
  case 'linea-goerli':
270
272
  return 'https://linea-goerli.public.blastapi.io';
273
+ case 'blast-testnet':
274
+ return 'https://sepolia.blast.io';
271
275
  default:
272
276
  throw new Error(`Unknown network: ${network}`);
273
277
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.67.3-alpha-20240202155343-c40dbbc",
2
+ "version": "0.67.4",
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.3-alpha-20240202155343-c40dbbc",
3
+ "version": "0.67.4",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {