@graphprotocol/graph-cli 0.71.2 → 0.71.3-alpha-20240515011623-b550173
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 +9 -0
- package/dist/command-helpers/abi.js +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.71.3-alpha-20240515011623-b550173
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1661](https://github.com/graphprotocol/graph-tooling/pull/1661)
|
|
8
|
+
[`b550173`](https://github.com/graphprotocol/graph-tooling/commit/b5501734d23032aa862565959a5ba0da7d1394ee)
|
|
9
|
+
Thanks [@mitchhs12](https://github.com/mitchhs12)! - add Linea Sepolia RPC and Linea Sepolia
|
|
10
|
+
Etherscan url
|
|
11
|
+
|
|
3
12
|
## 0.71.2
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -184,6 +184,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
184
184
|
return `https://blockscout.scroll.io/api`;
|
|
185
185
|
case 'linea':
|
|
186
186
|
return `https://api.lineascan.build/api`;
|
|
187
|
+
case 'linea-sepolia':
|
|
188
|
+
return 'https://api-sepolia.lineascan.build/api';
|
|
187
189
|
case 'linea-goerli':
|
|
188
190
|
return `https://api.linea-goerli.build/api`;
|
|
189
191
|
case 'blast-testnet':
|
|
@@ -288,6 +290,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
288
290
|
return 'https://rpc.ankr.com/scroll';
|
|
289
291
|
case 'linea':
|
|
290
292
|
return 'https://linea-mainnet.public.blastapi.io';
|
|
293
|
+
case 'linea-sepolia':
|
|
294
|
+
return 'https://linea-sepolia.public.blastapi.io';
|
|
291
295
|
case 'linea-goerli':
|
|
292
296
|
return 'https://linea-goerli.public.blastapi.io';
|
|
293
297
|
case 'blast-testnet':
|
package/oclif.manifest.json
CHANGED