@graphprotocol/graph-cli 0.77.0-alpha-20240625202441-2b2bc94 → 0.78.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 +9 -1
- package/dist/command-helpers/abi.js +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.78.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1692](https://github.com/graphprotocol/graph-tooling/pull/1692)
|
|
8
|
+
[`6f84e7a`](https://github.com/graphprotocol/graph-tooling/commit/6f84e7ade5c51232abefcb9a6fb7406e375ad125)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add iotex urls
|
|
10
|
+
|
|
11
|
+
## 0.77.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
6
14
|
|
|
@@ -239,6 +239,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
239
239
|
return `https://seitrace.com/pacific-1/api`;
|
|
240
240
|
case 'rootstock':
|
|
241
241
|
return 'https://rootstock.blockscout.com/api';
|
|
242
|
+
case 'iotex':
|
|
243
|
+
return 'https://index.iotexscan.io/api';
|
|
242
244
|
default:
|
|
243
245
|
return `https://api-${network}.etherscan.io/api`;
|
|
244
246
|
}
|
|
@@ -353,6 +355,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
353
355
|
return `https://evm-rpc.sei-apis.com`;
|
|
354
356
|
case 'rootstock':
|
|
355
357
|
return 'https://public-node.rsk.co';
|
|
358
|
+
case 'iotex':
|
|
359
|
+
return 'https://iotexrpc.com';
|
|
356
360
|
default:
|
|
357
361
|
throw new Error(`Unknown network: ${network}`);
|
|
358
362
|
}
|
package/oclif.manifest.json
CHANGED