@graphprotocol/graph-cli 0.55.0-alpha-20230810204930-d2e4934 → 0.55.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
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.55.0
|
|
3
|
+
## 0.55.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- [#1419](https://github.com/graphprotocol/graph-tooling/pull/1419)
|
|
8
|
-
[`
|
|
8
|
+
[`e88ff02`](https://github.com/graphprotocol/graph-tooling/commit/e88ff02cd236f6c556afd99cecb00b6cffd738ed)
|
|
9
9
|
Thanks [@saihaj](https://github.com/saihaj)! - Introduce `--from-hosted-service` flag which will
|
|
10
10
|
make it easier to deploy subgraphs from hosted service to Studio.
|
|
11
11
|
|
|
12
|
+
- [#1418](https://github.com/graphprotocol/graph-tooling/pull/1418)
|
|
13
|
+
[`38c16be`](https://github.com/graphprotocol/graph-tooling/commit/38c16be4ed865bec12a4db63b219dba058f06e72)
|
|
14
|
+
Thanks [@uF4No](https://github.com/uF4No)! - feat: adds zksync era testnet
|
|
15
|
+
|
|
12
16
|
## 0.54.0
|
|
13
17
|
|
|
14
18
|
### Minor Changes
|
|
@@ -150,6 +150,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
150
150
|
return `https://api-testnet.ftmscan.com/api`;
|
|
151
151
|
case 'zksync-era':
|
|
152
152
|
return `https://block-explorer-api.mainnet.zksync.io/api`;
|
|
153
|
+
case 'zksync-era-testnet':
|
|
154
|
+
return `https://block-explorer-api.testnets.zksync.dev/api`;
|
|
153
155
|
case 'polygon-zkevm-testnet':
|
|
154
156
|
return `https://testnet-zkevm.polygonscan.com/api`;
|
|
155
157
|
case 'polygon-zkevm':
|
|
@@ -225,7 +227,9 @@ const getPublicRPCEndpoint = (network) => {
|
|
|
225
227
|
case 'rinkeby':
|
|
226
228
|
return 'https://rpc.ankr.com/eth_rinkeby';
|
|
227
229
|
case 'zksync-era':
|
|
228
|
-
return 'https://
|
|
230
|
+
return 'https://mainnet.era.zksync.io';
|
|
231
|
+
case 'zksync-era-testnet':
|
|
232
|
+
return 'https://testnet.era.zksync.dev';
|
|
229
233
|
case 'sepolia':
|
|
230
234
|
return 'https://rpc.ankr.com/eth_sepolia';
|
|
231
235
|
default:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const allowedStudioNetworks: readonly ["mainnet", "rinkeby", "goerli", "gnosis", "chapel", "optimism-goerli", "clover", "fantom", "matic", "fantom-testnet", "arbitrum-goerli", "fuji", "celo-alfajores", "mumbai", "aurora-testnet", "near-testnet", "optimism", "optimism-goerli", "theta-testnet-001", "osmo-test-4", "base-testnet", "base", "celo", "arbitrum-one", "avalanche", "zksync-era", "sepolia", "polygon-zkevm-testnet", "polygon-zkevm"];
|
|
1
|
+
export declare const allowedStudioNetworks: readonly ["mainnet", "rinkeby", "goerli", "gnosis", "chapel", "optimism-goerli", "clover", "fantom", "matic", "fantom-testnet", "arbitrum-goerli", "fuji", "celo-alfajores", "mumbai", "aurora-testnet", "near-testnet", "optimism", "optimism-goerli", "theta-testnet-001", "osmo-test-4", "base-testnet", "base", "celo", "arbitrum-one", "avalanche", "zksync-era", "zksync-era-testnet", "sepolia", "polygon-zkevm-testnet", "polygon-zkevm"];
|
|
2
2
|
export declare const validateStudioNetwork: ({ studio, product, network, }: {
|
|
3
3
|
studio?: string | boolean | undefined;
|
|
4
4
|
product?: string | undefined;
|
package/dist/protocols/index.js
CHANGED
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.55.0
|
|
2
|
+
"version": "0.55.0",
|
|
3
3
|
"commands": {
|
|
4
4
|
"add": {
|
|
5
5
|
"id": "add",
|
|
@@ -634,6 +634,7 @@
|
|
|
634
634
|
"base-testnet",
|
|
635
635
|
"base",
|
|
636
636
|
"zksync-era",
|
|
637
|
+
"zksync-era-testnet",
|
|
637
638
|
"sepolia",
|
|
638
639
|
"polygon-zkevm-testnet",
|
|
639
640
|
"polygon-zkevm",
|