@graphprotocol/graph-cli 0.79.2 → 0.80.0-alpha-20240802071928-d9a8c4c
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.80.0-alpha-20240802071928-d9a8c4c
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1710](https://github.com/graphprotocol/graph-tooling/pull/1710)
|
|
8
|
+
[`687bbd0`](https://github.com/graphprotocol/graph-tooling/commit/687bbd054265243d7f00376c69dd2a11cbb14116)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add iotex testnet rpc and api url
|
|
10
|
+
|
|
3
11
|
## 0.79.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -249,6 +249,12 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
249
249
|
return 'https://explorer-sepolia.gravity.xyz/api';
|
|
250
250
|
case 'etherlink-mainnet':
|
|
251
251
|
return 'https://explorer.etherlink.com/api';
|
|
252
|
+
case 'iotex-testnet':
|
|
253
|
+
return 'https://testnet.index.iotexscan.io/api';
|
|
254
|
+
case 'neox':
|
|
255
|
+
return 'https://xexplorer.neo.org/api';
|
|
256
|
+
case 'neox-testnet':
|
|
257
|
+
return 'https://xt4scan.ngd.network/api';
|
|
252
258
|
default:
|
|
253
259
|
return `https://api-${network}.etherscan.io/api`;
|
|
254
260
|
}
|
|
@@ -373,6 +379,12 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
373
379
|
return 'https://rpc-sepolia.gravity.xyz';
|
|
374
380
|
case 'etherlink-mainnet':
|
|
375
381
|
return 'https://node.mainnet.etherlink.com';
|
|
382
|
+
case 'iotex-testnet':
|
|
383
|
+
return 'https://babel-api.testnet.iotex.io';
|
|
384
|
+
case 'neox':
|
|
385
|
+
return 'https://mainnet-1.rpc.banelabs.org';
|
|
386
|
+
case 'neox-testnet':
|
|
387
|
+
return 'https://neoxt4seed1.ngd.network';
|
|
376
388
|
default:
|
|
377
389
|
throw new Error(`Unknown network: ${network}`);
|
|
378
390
|
}
|
|
@@ -38,7 +38,7 @@ const TEST_CONTRACT_START_BLOCKS = {
|
|
|
38
38
|
'0xc35DADB65012eC5796536bD9864eD8773aBc74C4': 7019815,
|
|
39
39
|
},
|
|
40
40
|
// Skipping these networks for now because they do not support the latest etherscan contracts API or is blockScout based
|
|
41
|
-
// Chains that
|
|
41
|
+
// Chains that doesn't support the latest etherscan contracts API
|
|
42
42
|
// mumbai: {
|
|
43
43
|
// '0x73bDCeC61b7b4707Baa4775c06A438A903065a17': 29_110_890,
|
|
44
44
|
// },
|
|
@@ -36,7 +36,7 @@ const updateSubgraphNetwork = async (manifest, network, networksFile, identifier
|
|
|
36
36
|
}
|
|
37
37
|
return source;
|
|
38
38
|
});
|
|
39
|
-
// All data sources
|
|
39
|
+
// All data sources should be on the same network,
|
|
40
40
|
// so we have to update the network of all templates too.
|
|
41
41
|
// eslint-disable-next-line -- prettier has problems with &&=
|
|
42
42
|
subgraph.templates &&
|
package/oclif.manifest.json
CHANGED