@graphprotocol/graph-cli 0.88.0 → 0.89.0-alpha-20241107203204-e816fce
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 +14 -0
- package/dist/command-helpers/abi.js +5 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.89.0-alpha-20241107203204-e816fce
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1763](https://github.com/graphprotocol/graph-tooling/pull/1763)
|
|
8
|
+
[`e816fce`](https://github.com/graphprotocol/graph-tooling/commit/e816fceaffd8432dacbbbd7e2b1a2d2fddbf0cdd)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - new chain urls
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#1761](https://github.com/graphprotocol/graph-tooling/pull/1761)
|
|
14
|
+
[`baf36b4`](https://github.com/graphprotocol/graph-tooling/commit/baf36b42bc531f3aee2709c2f55682a7ec44e5ac)
|
|
15
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - update soneium-testnet blockexplorer url
|
|
16
|
+
|
|
3
17
|
## 0.88.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -258,7 +258,7 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
258
258
|
case 'arbitrum-nova':
|
|
259
259
|
return 'https://arbitrum-nova.abi.pinax.network/api';
|
|
260
260
|
case 'soneium-testnet':
|
|
261
|
-
return 'https://
|
|
261
|
+
return 'https://soneium-minato.blockscout.com/api';
|
|
262
262
|
case 'chiliz':
|
|
263
263
|
return 'https://scan.chiliz.com/api';
|
|
264
264
|
case 'chiliz-testnet':
|
|
@@ -277,6 +277,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
277
277
|
return 'https://rootstock-testnet.blockscout.com/api';
|
|
278
278
|
case 'unichain-testnet':
|
|
279
279
|
return 'https://unichain-sepolia.blockscout.com/api';
|
|
280
|
+
case 'lens-testnet':
|
|
281
|
+
return 'https://block-explorer-api.testnet.lens.dev/api';
|
|
280
282
|
default:
|
|
281
283
|
return `https://api-${network}.etherscan.io/api`;
|
|
282
284
|
}
|
|
@@ -433,6 +435,8 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
433
435
|
return 'https://public-en.kairos.node.kaia.io';
|
|
434
436
|
case 'unichain-testnet':
|
|
435
437
|
return 'https://sepolia.unichain.org';
|
|
438
|
+
case 'lens-testnet':
|
|
439
|
+
return 'https://api.staging.lens.zksync.dev';
|
|
436
440
|
default:
|
|
437
441
|
throw new Error(`Unknown network: ${network}`);
|
|
438
442
|
}
|
package/oclif.manifest.json
CHANGED