@graphprotocol/graph-cli 0.75.0 → 0.76.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,5 +1,14 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.76.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1688](https://github.com/graphprotocol/graph-tooling/pull/1688)
8
+ [`3a96771`](https://github.com/graphprotocol/graph-tooling/commit/3a9677113a4282cd4f91adadfa4b4b1d00f6e035)
9
+ Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rootstock blockexplorer api and
10
+ public rpc url
11
+
3
12
  ## 0.75.0
4
13
 
5
14
  ### Minor Changes
@@ -237,6 +237,8 @@ const getEtherscanLikeAPIUrl = (network) => {
237
237
  return `https://api-cardona-zkevm.polygonscan.com/api`;
238
238
  case 'sei-mainnet':
239
239
  return `https://seitrace.com/pacific-1/api`;
240
+ case 'rootstock':
241
+ return 'https://rootstock.blockscout.com/api';
240
242
  default:
241
243
  return `https://api-${network}.etherscan.io/api`;
242
244
  }
@@ -349,6 +351,8 @@ const getPublicRPCEndpoint = (network) => {
349
351
  return `https://rpc.cardona.zkevm-rpc.com`;
350
352
  case 'sei-mainnet':
351
353
  return `https://evm-rpc.sei-apis.com`;
354
+ case 'rootstock':
355
+ return 'https://public-node.rsk.co';
352
356
  default:
353
357
  throw new Error(`Unknown network: ${network}`);
354
358
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.75.0",
2
+ "version": "0.76.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.75.0",
3
+ "version": "0.76.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {