@graphprotocol/graph-cli 0.61.0-alpha-20231107191435-8a5baf1 → 0.61.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,6 +1,6 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.61.0-alpha-20231107191435-8a5baf1
3
+ ## 0.61.0
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,6 +9,10 @@
9
9
  Thanks [@YaroShkvorets](https://github.com/YaroShkvorets)! - add etherscan api retries to
10
10
  `graph init` wizard
11
11
 
12
+ - [#1489](https://github.com/graphprotocol/graph-tooling/pull/1489)
13
+ [`031fca8`](https://github.com/graphprotocol/graph-tooling/commit/031fca87fb163a69a06653f7822f4738452a91aa)
14
+ Thanks [@saihaj](https://github.com/saihaj)! - Arbitrum Sepolia support
15
+
12
16
  - [#1493](https://github.com/graphprotocol/graph-tooling/pull/1493)
13
17
  [`f5f974d`](https://github.com/graphprotocol/graph-tooling/commit/f5f974d63416ba845c45c50b2931c9beffcca3a1)
14
18
  Thanks [@incrypto32](https://github.com/incrypto32)! - Fix codegen issues when using derived
@@ -171,10 +171,10 @@ const getPublicRPCEndpoint = (network) => {
171
171
  switch (network) {
172
172
  case 'arbitrum-goerli':
173
173
  return 'https://goerli-rollup.arbitrum.io/rpc';
174
- case 'arbitrum-sepolia':
175
- return 'https://sepolia-rollup.arbitrum.io/rpc';
176
174
  case 'arbitrum-one':
177
175
  return 'https://arb1.arbitrum.io/rpc';
176
+ case 'arbitrum-sepolia':
177
+ return `https://sepolia-rollup.arbitrum.io/rpc`;
178
178
  case 'aurora':
179
179
  return 'https://rpc.mainnet.aurora.dev';
180
180
  case 'aurora-testnet':
@@ -1,4 +1,4 @@
1
- export declare const allowedStudioNetworks: readonly ["mainnet", "rinkeby", "goerli", "gnosis", "chapel", "optimism-goerli", "clover", "fantom", "matic", "fantom-testnet", "arbitrum-goerli", "arbitrum-sepolia", "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", "scroll-sepolia", "scroll"];
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", "arbitrum-sepolia", "avalanche", "zksync-era", "zksync-era-testnet", "sepolia", "polygon-zkevm-testnet", "polygon-zkevm", "scroll-sepolia", "scroll"];
2
2
  export declare const validateStudioNetwork: ({ studio, product, network, }: {
3
3
  studio?: string | boolean | undefined;
4
4
  product?: string | undefined;
@@ -13,7 +13,6 @@ exports.allowedStudioNetworks = [
13
13
  'matic',
14
14
  'fantom-testnet',
15
15
  'arbitrum-goerli',
16
- 'arbitrum-sepolia',
17
16
  'fuji',
18
17
  'celo-alfajores',
19
18
  'mumbai',
@@ -27,6 +26,7 @@ exports.allowedStudioNetworks = [
27
26
  'base',
28
27
  'celo',
29
28
  'arbitrum-one',
29
+ 'arbitrum-sepolia',
30
30
  'avalanche',
31
31
  'zksync-era',
32
32
  'zksync-era-testnet',
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.61.0-alpha-20231107191435-8a5baf1",
2
+ "version": "0.61.0",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.61.0-alpha-20231107191435-8a5baf1",
3
+ "version": "0.61.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {