@graphprotocol/graph-cli 0.82.0 → 0.83.0
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.83.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1728](https://github.com/graphprotocol/graph-tooling/pull/1728)
|
|
8
|
+
[`a05db7b`](https://github.com/graphprotocol/graph-tooling/commit/a05db7bdf1f22f86501d9d59929245ddb7b1abae)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add chiliz testnet rpc and api
|
|
10
|
+
|
|
3
11
|
## 0.82.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -261,6 +261,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
261
261
|
return 'https://explorer-testnet.soneium.org/api';
|
|
262
262
|
case 'chiliz':
|
|
263
263
|
return 'https://scan.chiliz.com/api';
|
|
264
|
+
case 'chiliz-testnet':
|
|
265
|
+
return 'https://spicy-explorer.chiliz.com/api';
|
|
264
266
|
default:
|
|
265
267
|
return `https://api-${network}.etherscan.io/api`;
|
|
266
268
|
}
|
|
@@ -397,6 +399,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
397
399
|
return 'https://rpc.minato.soneium.org/';
|
|
398
400
|
case 'chiliz':
|
|
399
401
|
return 'https://rpc.ankr.com/chiliz';
|
|
402
|
+
case 'chiliz-testnet':
|
|
403
|
+
return 'https://spicy-rpc.chiliz.com';
|
|
400
404
|
default:
|
|
401
405
|
throw new Error(`Unknown network: ${network}`);
|
|
402
406
|
}
|
package/oclif.manifest.json
CHANGED