@graphprotocol/graph-cli 0.68.0 → 0.68.1
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 +4 -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.68.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1589](https://github.com/graphprotocol/graph-tooling/pull/1589)
|
|
8
|
+
[`7f0e8ab`](https://github.com/graphprotocol/graph-tooling/commit/7f0e8ab70bcd2279b54a040031de2795e7346b1a)
|
|
9
|
+
Thanks [@saihaj](https://github.com/saihaj)! - fix optimism sepolia url
|
|
10
|
+
|
|
3
11
|
## 0.68.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -176,6 +176,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
176
176
|
return `https://api-sepolia.etherscan.io/api`;
|
|
177
177
|
case 'scroll-sepolia':
|
|
178
178
|
return `https://api-sepolia.scrollscan.dev/api`;
|
|
179
|
+
case 'optimism-sepolia':
|
|
180
|
+
return `https://sepolia-optimism.etherscan.io/api`;
|
|
179
181
|
case 'scroll':
|
|
180
182
|
return `https://blockscout.scroll.io/api`;
|
|
181
183
|
case 'linea':
|
|
@@ -272,6 +274,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
272
274
|
return 'https://linea-goerli.public.blastapi.io';
|
|
273
275
|
case 'blast-testnet':
|
|
274
276
|
return 'https://sepolia.blast.io';
|
|
277
|
+
case 'optimism-sepolia':
|
|
278
|
+
return 'https://sepolia.optimism.io';
|
|
275
279
|
default:
|
|
276
280
|
throw new Error(`Unknown network: ${network}`);
|
|
277
281
|
}
|
package/oclif.manifest.json
CHANGED