@graphprotocol/graph-cli 0.75.0 → 0.76.0-alpha-20240701071517-2cc35db
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 +13 -0
- package/dist/command-helpers/abi.js +8 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.76.0-alpha-20240701071517-2cc35db
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1692](https://github.com/graphprotocol/graph-tooling/pull/1692)
|
|
8
|
+
[`2cc35db`](https://github.com/graphprotocol/graph-tooling/commit/2cc35db135d18841c4d4ccf931529f75d8047b54)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add iotex urls
|
|
10
|
+
|
|
11
|
+
- [#1688](https://github.com/graphprotocol/graph-tooling/pull/1688)
|
|
12
|
+
[`3a96771`](https://github.com/graphprotocol/graph-tooling/commit/3a9677113a4282cd4f91adadfa4b4b1d00f6e035)
|
|
13
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rootstock blockexplorer api and
|
|
14
|
+
public rpc url
|
|
15
|
+
|
|
3
16
|
## 0.75.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -237,6 +237,10 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
237
237
|
return `https://api-cardona-zkevm.polygonscan.com/api`;
|
|
238
238
|
case 'sei-mainnet':
|
|
239
239
|
return `https://seitrace.com/pacific-1/api`;
|
|
240
|
+
case 'rootstock':
|
|
241
|
+
return 'https://rootstock.blockscout.com/api';
|
|
242
|
+
case 'iotex':
|
|
243
|
+
return 'https://index.iotexscan.io/api';
|
|
240
244
|
default:
|
|
241
245
|
return `https://api-${network}.etherscan.io/api`;
|
|
242
246
|
}
|
|
@@ -349,6 +353,10 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
349
353
|
return `https://rpc.cardona.zkevm-rpc.com`;
|
|
350
354
|
case 'sei-mainnet':
|
|
351
355
|
return `https://evm-rpc.sei-apis.com`;
|
|
356
|
+
case 'rootstock':
|
|
357
|
+
return 'https://public-node.rsk.co';
|
|
358
|
+
case 'iotex':
|
|
359
|
+
return 'https://iotexrpc.com';
|
|
352
360
|
default:
|
|
353
361
|
throw new Error(`Unknown network: ${network}`);
|
|
354
362
|
}
|
package/oclif.manifest.json
CHANGED