@graphprotocol/graph-cli 0.69.1 → 0.69.2

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,14 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.69.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1623](https://github.com/graphprotocol/graph-tooling/pull/1623)
8
+ [`121843e`](https://github.com/graphprotocol/graph-tooling/commit/121843e982c69ffb31aae911431a68a2349ea062)
9
+ Thanks [@Shiyasmohd](https://github.com/Shiyasmohd)! - cli: added etherscan API URL & public RPC
10
+ endpoint for etherlink-testnet
11
+
3
12
  ## 0.69.1
4
13
 
5
14
  ### Patch Changes
@@ -190,6 +190,8 @@ const getEtherscanLikeAPIUrl = (network) => {
190
190
  return `https://api.routescan.io/v2/network/testnet/evm/168587773/etherscan/api`;
191
191
  case 'blast-mainnet':
192
192
  return `https://api.routescan.io/v2/network/mainnet/evm/81457/etherscan/api`;
193
+ case 'etherlink-testnet':
194
+ return `https://testnet-explorer.etherlink.com/api`;
193
195
  default:
194
196
  return `https://api-${network}.etherscan.io/api`;
195
197
  }
@@ -284,6 +286,8 @@ const getPublicRPCEndpoint = (network) => {
284
286
  return 'https://rpc.blast.io';
285
287
  case 'optimism-sepolia':
286
288
  return 'https://sepolia.optimism.io';
289
+ case 'etherlink-testnet':
290
+ return `https://node.ghostnet.etherlink.com`;
287
291
  default:
288
292
  throw new Error(`Unknown network: ${network}`);
289
293
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.69.1",
2
+ "version": "0.69.2",
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.69.1",
3
+ "version": "0.69.2",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {