@graphprotocol/graph-cli 0.77.0-alpha-20240625202441-2b2bc94 → 0.78.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,14 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.77.0-alpha-20240625202441-2b2bc94
3
+ ## 0.78.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1692](https://github.com/graphprotocol/graph-tooling/pull/1692)
8
+ [`6f84e7a`](https://github.com/graphprotocol/graph-tooling/commit/6f84e7ade5c51232abefcb9a6fb7406e375ad125)
9
+ Thanks [@yash251](https://github.com/yash251)! - add iotex urls
10
+
11
+ ## 0.77.0
4
12
 
5
13
  ### Minor Changes
6
14
 
@@ -239,6 +239,8 @@ const getEtherscanLikeAPIUrl = (network) => {
239
239
  return `https://seitrace.com/pacific-1/api`;
240
240
  case 'rootstock':
241
241
  return 'https://rootstock.blockscout.com/api';
242
+ case 'iotex':
243
+ return 'https://index.iotexscan.io/api';
242
244
  default:
243
245
  return `https://api-${network}.etherscan.io/api`;
244
246
  }
@@ -353,6 +355,8 @@ const getPublicRPCEndpoint = (network) => {
353
355
  return `https://evm-rpc.sei-apis.com`;
354
356
  case 'rootstock':
355
357
  return 'https://public-node.rsk.co';
358
+ case 'iotex':
359
+ return 'https://iotexrpc.com';
356
360
  default:
357
361
  throw new Error(`Unknown network: ${network}`);
358
362
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.77.0-alpha-20240625202441-2b2bc94",
2
+ "version": "0.78.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.77.0-alpha-20240625202441-2b2bc94",
3
+ "version": "0.78.0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {