@graphprotocol/graph-cli 0.86.0 → 0.87.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 +1 -1
- 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.87.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1746](https://github.com/graphprotocol/graph-tooling/pull/1746)
|
|
8
|
+
[`fef2e05`](https://github.com/graphprotocol/graph-tooling/commit/fef2e05c07d5f99f01834c4a6b9e063992d4bc2d)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - updated public rpc
|
|
10
|
+
|
|
3
11
|
## 0.86.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -432,7 +432,7 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
432
432
|
case 'kaia-testnet':
|
|
433
433
|
return 'https://public-en.kairos.node.kaia.io';
|
|
434
434
|
case 'unichain-testnet':
|
|
435
|
-
return '
|
|
435
|
+
return 'https://sepolia.unichain.org';
|
|
436
436
|
default:
|
|
437
437
|
throw new Error(`Unknown network: ${network}`);
|
|
438
438
|
}
|
package/oclif.manifest.json
CHANGED