@graphprotocol/graph-cli 0.45.2 → 0.46.0-alpha-20230411130300-82a2768

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.46.0-alpha-20230411130300-82a2768
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1275](https://github.com/graphprotocol/graph-tooling/pull/1275)
8
+ [`75b34e7`](https://github.com/graphprotocol/graph-tooling/commit/75b34e768c3187893782c6e0897451a8503ff5c6)
9
+ Thanks [@pranavdaa](https://github.com/pranavdaa)! - Adding sepolia testnet to the graph-cli
10
+
3
11
  ## 0.45.2
4
12
 
5
13
  ### Patch Changes
@@ -152,6 +152,8 @@ const getEtherscanLikeAPIUrl = (network) => {
152
152
  return `https://testnet-zkevm.polygonscan.com/api`;
153
153
  case 'polygon-zkevm':
154
154
  return `https://zkevm.polygonscan.com/api`;
155
+ case 'sepolia':
156
+ return `https://api-sepolia.etherscan.io/api`;
155
157
  default:
156
158
  return `https://api-${network}.etherscan.io/api`;
157
159
  }
@@ -220,6 +222,8 @@ const getPublicRPCEndpoint = (network) => {
220
222
  return 'https://rpc.ankr.com/eth_rinkeby';
221
223
  case 'zksync-era':
222
224
  return 'https://zksync2-mainnet.zksync.io';
225
+ case 'sepolia':
226
+ return 'https://rpc.ankr.com/eth_sepolia';
223
227
  default:
224
228
  throw new Error(`Unknown network: ${network}`);
225
229
  }
@@ -23,6 +23,7 @@ exports.allowedStudioNetworks = [
23
23
  'arbitrum-one',
24
24
  'avalanche',
25
25
  'zksync-era',
26
+ 'sepolia',
26
27
  'polygon-zkevm-testnet',
27
28
  'polygon-zkevm',
28
29
  ];
@@ -120,6 +120,7 @@ class Protocol {
120
120
  'aurora-testnet',
121
121
  'base-testnet',
122
122
  'zksync-era',
123
+ 'sepolia',
123
124
  'polygon-zkevm-testnet',
124
125
  'polygon-zkevm',
125
126
  ],
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.45.2",
2
+ "version": "0.46.0-alpha-20230411130300-82a2768",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
@@ -576,6 +576,7 @@
576
576
  "aurora-testnet",
577
577
  "base-testnet",
578
578
  "zksync-era",
579
+ "sepolia",
579
580
  "polygon-zkevm-testnet",
580
581
  "polygon-zkevm",
581
582
  "near-mainnet",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.45.2",
3
+ "version": "0.46.0-alpha-20230411130300-82a2768",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {