@graphprotocol/graph-cli 0.85.0 → 0.86.0-alpha-20241009182544-9a33a18
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.86.0-alpha-20241009182544-9a33a18
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1740](https://github.com/graphprotocol/graph-tooling/pull/1740)
|
|
8
|
+
[`804b9c2`](https://github.com/graphprotocol/graph-tooling/commit/804b9c22aa647270d0a46d8eed007dbb6473ee6b)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - added new chain
|
|
10
|
+
|
|
3
11
|
## 0.85.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -275,6 +275,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
275
275
|
return 'https://explorer.fusespark.io/api';
|
|
276
276
|
case 'rootstock-testnet':
|
|
277
277
|
return 'https://rootstock-testnet.blockscout.com/api';
|
|
278
|
+
case 'unichain-testnet':
|
|
279
|
+
return 'https://unichain-sepolia.blockscout.com/api';
|
|
278
280
|
default:
|
|
279
281
|
return `https://api-${network}.etherscan.io/api`;
|
|
280
282
|
}
|
|
@@ -429,6 +431,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
429
431
|
return 'https://public-en.node.kaia.io';
|
|
430
432
|
case 'kaia-testnet':
|
|
431
433
|
return 'https://public-en.kairos.node.kaia.io';
|
|
434
|
+
case 'unichain-testnet':
|
|
435
|
+
return 'http://beta-u-Proxy-9QsHxlNJa4es-1179015898.us-east-2.elb.amazonaws.com:8545';
|
|
432
436
|
default:
|
|
433
437
|
throw new Error(`Unknown network: ${network}`);
|
|
434
438
|
}
|
package/oclif.manifest.json
CHANGED