@graphprotocol/graph-cli 0.81.0 → 0.82.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.82.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1726](https://github.com/graphprotocol/graph-tooling/pull/1726)
|
|
8
|
+
[`81afd9b`](https://github.com/graphprotocol/graph-tooling/commit/81afd9b6edd09fa2df0d3ed7ae43b894472fca98)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add chiliz rpc and api
|
|
10
|
+
|
|
3
11
|
## 0.81.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -259,6 +259,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
259
259
|
return 'https://api-nova.arbiscan.io/api';
|
|
260
260
|
case 'soneium-testnet':
|
|
261
261
|
return 'https://explorer-testnet.soneium.org/api';
|
|
262
|
+
case 'chiliz':
|
|
263
|
+
return 'https://scan.chiliz.com/api';
|
|
262
264
|
default:
|
|
263
265
|
return `https://api-${network}.etherscan.io/api`;
|
|
264
266
|
}
|
|
@@ -393,6 +395,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
393
395
|
return 'https://nova.arbitrum.io/rpc';
|
|
394
396
|
case 'soneium-testnet':
|
|
395
397
|
return 'https://rpc.minato.soneium.org/';
|
|
398
|
+
case 'chiliz':
|
|
399
|
+
return 'https://rpc.ankr.com/chiliz';
|
|
396
400
|
default:
|
|
397
401
|
throw new Error(`Unknown network: ${network}`);
|
|
398
402
|
}
|
package/oclif.manifest.json
CHANGED