@graphprotocol/graph-cli 0.84.0 → 0.85.0-alpha-20241002173342-de12cde

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.85.0-alpha-20241002173342-de12cde
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1733](https://github.com/graphprotocol/graph-tooling/pull/1733)
8
+ [`de12cde`](https://github.com/graphprotocol/graph-tooling/commit/de12cde3c7079ff4f4727fd5419e7467447b4ff1)
9
+ Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rootstock
10
+
3
11
  ## 0.84.0
4
12
 
5
13
  ### Minor Changes
@@ -273,6 +273,8 @@ const getEtherscanLikeAPIUrl = (network) => {
273
273
  return 'https://api.routescan.io/v2/network/testnet/evm/9728/etherscan/api';
274
274
  case 'fuse-testnet':
275
275
  return 'https://explorer.fusespark.io/api';
276
+ case 'rootstock-testnet':
277
+ return 'https://rootstock-testnet.blockscout.com/api';
276
278
  default:
277
279
  return `https://api-${network}.etherscan.io/api`;
278
280
  }
@@ -421,6 +423,12 @@ const getPublicRPCEndpoint = (network) => {
421
423
  return 'https://testnet.bnb.boba.network';
422
424
  case 'fuse-testnet':
423
425
  return 'https://rpc.fusespark.io';
426
+ case 'rootstock-testnet':
427
+ return 'https://public-node.testnet.rsk.co';
428
+ case 'kaia':
429
+ return 'https://public-en.node.kaia.io';
430
+ case 'kaia-testnet':
431
+ return 'https://public-en.kairos.node.kaia.io';
424
432
  default:
425
433
  throw new Error(`Unknown network: ${network}`);
426
434
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.84.0",
2
+ "version": "0.85.0-alpha-20241002173342-de12cde",
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.84.0",
3
+ "version": "0.85.0-alpha-20241002173342-de12cde",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {