@graphprotocol/graph-cli 0.84.0 → 0.85.0-alpha-20241002175408-c3f53f6
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 +8 -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.85.0-alpha-20241002175408-c3f53f6
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1733](https://github.com/graphprotocol/graph-tooling/pull/1733)
|
|
8
|
+
[`de12cde`](https://github.com/graphprotocol/graph-tooling/commit/de12cde3c7079ff4f4727fd5419e7467447b4ff1)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rootstock
|
|
10
|
+
|
|
3
11
|
## 0.84.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -273,6 +273,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
273
273
|
return 'https://api.routescan.io/v2/network/testnet/evm/9728/etherscan/api';
|
|
274
274
|
case 'fuse-testnet':
|
|
275
275
|
return 'https://explorer.fusespark.io/api';
|
|
276
|
+
case 'rootstock-testnet':
|
|
277
|
+
return 'https://rootstock-testnet.blockscout.com/api';
|
|
276
278
|
default:
|
|
277
279
|
return `https://api-${network}.etherscan.io/api`;
|
|
278
280
|
}
|
|
@@ -421,6 +423,12 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
421
423
|
return 'https://testnet.bnb.boba.network';
|
|
422
424
|
case 'fuse-testnet':
|
|
423
425
|
return 'https://rpc.fusespark.io';
|
|
426
|
+
case 'rootstock-testnet':
|
|
427
|
+
return 'https://public-node.testnet.rsk.co';
|
|
428
|
+
case 'kaia':
|
|
429
|
+
return 'https://public-en.node.kaia.io';
|
|
430
|
+
case 'kaia-testnet':
|
|
431
|
+
return 'https://public-en.kairos.node.kaia.io';
|
|
424
432
|
default:
|
|
425
433
|
throw new Error(`Unknown network: ${network}`);
|
|
426
434
|
}
|
package/oclif.manifest.json
CHANGED