@graphprotocol/graph-cli 0.79.2 → 0.80.0-alpha-20240801095233-6ef5596
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.80.0-alpha-20240801095233-6ef5596
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1710](https://github.com/graphprotocol/graph-tooling/pull/1710)
|
|
8
|
+
[`6ef5596`](https://github.com/graphprotocol/graph-tooling/commit/6ef559628596faba2ea02989a535e0301608beee)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add iotex testnet rpc and api url
|
|
10
|
+
|
|
3
11
|
## 0.79.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -249,6 +249,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
249
249
|
return 'https://explorer-sepolia.gravity.xyz/api';
|
|
250
250
|
case 'etherlink-mainnet':
|
|
251
251
|
return 'https://explorer.etherlink.com/api';
|
|
252
|
+
case 'iotex-testnet':
|
|
253
|
+
return 'https://testnet.index.iotexscan.io/api';
|
|
252
254
|
default:
|
|
253
255
|
return `https://api-${network}.etherscan.io/api`;
|
|
254
256
|
}
|
|
@@ -373,6 +375,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
373
375
|
return 'https://rpc-sepolia.gravity.xyz';
|
|
374
376
|
case 'etherlink-mainnet':
|
|
375
377
|
return 'https://node.mainnet.etherlink.com';
|
|
378
|
+
case 'iotex-testnet':
|
|
379
|
+
return 'https://babel-api.testnet.iotex.io';
|
|
376
380
|
default:
|
|
377
381
|
throw new Error(`Unknown network: ${network}`);
|
|
378
382
|
}
|
package/oclif.manifest.json
CHANGED