@graphprotocol/graph-cli 0.90.0 → 0.90.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 +9 -0
- package/dist/command-helpers/abi.js +4 -4
- 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.90.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1776](https://github.com/graphprotocol/graph-tooling/pull/1776)
|
|
8
|
+
[`c4c0590`](https://github.com/graphprotocol/graph-tooling/commit/c4c059029c391dd6e256a56b3b90bcf20b86680c)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - Fix testnet names for `abstract` and
|
|
10
|
+
`corn`
|
|
11
|
+
|
|
3
12
|
## 0.90.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -276,11 +276,11 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
276
276
|
return 'https://unichain-sepolia.blockscout.com/api';
|
|
277
277
|
case 'lens-testnet':
|
|
278
278
|
return 'https://block-explorer-api.testnet.lens.dev/api';
|
|
279
|
-
case 'abstract-
|
|
279
|
+
case 'abstract-testnet':
|
|
280
280
|
return 'https://block-explorer-api.testnet.abs.xyz/api';
|
|
281
281
|
case 'corn':
|
|
282
282
|
return 'https://maizenet-explorer.usecorn.com/api';
|
|
283
|
-
case 'corn-
|
|
283
|
+
case 'corn-testnet':
|
|
284
284
|
return 'https://testnet-explorer.usecorn.com/api';
|
|
285
285
|
default:
|
|
286
286
|
return `https://api-${network}.etherscan.io/api`;
|
|
@@ -440,11 +440,11 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
440
440
|
return 'https://sepolia.unichain.org';
|
|
441
441
|
case 'lens-testnet':
|
|
442
442
|
return 'https://api.staging.lens.zksync.dev';
|
|
443
|
-
case 'abstract-
|
|
443
|
+
case 'abstract-testnet':
|
|
444
444
|
return 'https://api.testnet.abs.xyz';
|
|
445
445
|
case 'corn':
|
|
446
446
|
return 'https://maizenet-rpc.usecorn.com';
|
|
447
|
-
case 'corn-
|
|
447
|
+
case 'corn-testnet':
|
|
448
448
|
return 'https://testnet-rpc.usecorn.com';
|
|
449
449
|
default:
|
|
450
450
|
throw new Error(`Unknown network: ${network}`);
|
package/oclif.manifest.json
CHANGED