@graphprotocol/graph-cli 0.67.2 → 0.67.3-alpha-20240202155343-c40dbbc
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 +8 -0
- package/dist/command-helpers/abi.js +8 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.67.3-alpha-20240202155343-c40dbbc
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1579](https://github.com/graphprotocol/graph-tooling/pull/1579)
|
|
8
|
+
[`c40dbbc`](https://github.com/graphprotocol/graph-tooling/commit/c40dbbc8f78e9bab8b910de261b8c898c8d456c7)
|
|
9
|
+
Thanks [@saihaj](https://github.com/saihaj)! - fix line and linea-goerli API URLs
|
|
10
|
+
|
|
3
11
|
## 0.67.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -178,6 +178,10 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
178
178
|
return `https://api-sepolia.scrollscan.dev/api`;
|
|
179
179
|
case 'scroll':
|
|
180
180
|
return `https://blockscout.scroll.io/api`;
|
|
181
|
+
case 'linea':
|
|
182
|
+
return `https://api.lineascan.build/api`;
|
|
183
|
+
case 'linea-goerli':
|
|
184
|
+
return `https://api.linea-goerli.build/api`;
|
|
181
185
|
default:
|
|
182
186
|
return `https://api-${network}.etherscan.io/api`;
|
|
183
187
|
}
|
|
@@ -260,6 +264,10 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
260
264
|
return 'https://rpc.ankr.com/scroll_sepolia_testnet';
|
|
261
265
|
case 'scroll':
|
|
262
266
|
return 'https://rpc.ankr.com/scroll';
|
|
267
|
+
case 'linea':
|
|
268
|
+
return 'https://linea-mainnet.public.blastapi.io';
|
|
269
|
+
case 'linea-goerli':
|
|
270
|
+
return 'https://linea-goerli.public.blastapi.io';
|
|
263
271
|
default:
|
|
264
272
|
throw new Error(`Unknown network: ${network}`);
|
|
265
273
|
}
|
package/oclif.manifest.json
CHANGED