@graphprotocol/graph-cli 0.45.2 → 0.46.0-rc-20230411131212-0780eef
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-rc-20230411131212-0780eef
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1275](https://github.com/graphprotocol/graph-tooling/pull/1275)
|
|
8
|
+
[`0264c5d`](https://github.com/graphprotocol/graph-tooling/commit/0264c5da27ef3b01008f749f8ccbf19f1cfe4f7d)
|
|
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
|
}
|
package/dist/protocols/index.js
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.46.0-rc-20230411131212-0780eef",
|
|
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",
|