@graphprotocol/graph-cli 0.83.0 → 0.84.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 +20 -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.84.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1730](https://github.com/graphprotocol/graph-tooling/pull/1730)
|
|
8
|
+
[`e39279b`](https://github.com/graphprotocol/graph-tooling/commit/e39279be9d61a97e79ea18e558bd73795e25dbe0)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added boba, fuse blockexplorer
|
|
10
|
+
|
|
3
11
|
## 0.83.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -263,6 +263,16 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
263
263
|
return 'https://scan.chiliz.com/api';
|
|
264
264
|
case 'chiliz-testnet':
|
|
265
265
|
return 'https://spicy-explorer.chiliz.com/api';
|
|
266
|
+
case 'boba':
|
|
267
|
+
return 'https://api.routescan.io/v2/network/mainnet/evm/288/etherscan/api';
|
|
268
|
+
case 'boba-testnet':
|
|
269
|
+
return 'https://api.routescan.io/v2/network/testnet/evm/28882/etherscan/api';
|
|
270
|
+
case 'boba-bnb':
|
|
271
|
+
return 'https://api.routescan.io/v2/network/mainnet/evm/56288/etherscan/api';
|
|
272
|
+
case 'boba-bnb-testnet':
|
|
273
|
+
return 'https://api.routescan.io/v2/network/testnet/evm/9728/etherscan/api';
|
|
274
|
+
case 'fuse-testnet':
|
|
275
|
+
return 'https://explorer.fusespark.io/api';
|
|
266
276
|
default:
|
|
267
277
|
return `https://api-${network}.etherscan.io/api`;
|
|
268
278
|
}
|
|
@@ -401,6 +411,16 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
401
411
|
return 'https://rpc.ankr.com/chiliz';
|
|
402
412
|
case 'chiliz-testnet':
|
|
403
413
|
return 'https://spicy-rpc.chiliz.com';
|
|
414
|
+
case 'boba':
|
|
415
|
+
return 'https://boba-eth.drpc.org';
|
|
416
|
+
case 'boba-testnet':
|
|
417
|
+
return 'https://sepolia.boba.network';
|
|
418
|
+
case 'boba-bnb':
|
|
419
|
+
return 'https://bnb.boba.network';
|
|
420
|
+
case 'boba-bnb-testnet':
|
|
421
|
+
return 'https://testnet.bnb.boba.network';
|
|
422
|
+
case 'fuse-testnet':
|
|
423
|
+
return 'https://rpc.fusespark.io';
|
|
404
424
|
default:
|
|
405
425
|
throw new Error(`Unknown network: ${network}`);
|
|
406
426
|
}
|
package/oclif.manifest.json
CHANGED