@graphprotocol/graph-cli 0.80.1 → 0.81.0-alpha-20240828085211-2bec7d0

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.81.0-alpha-20240828085211-2bec7d0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1719](https://github.com/graphprotocol/graph-tooling/pull/1719)
8
+ [`2bec7d0`](https://github.com/graphprotocol/graph-tooling/commit/2bec7d0c019f6004c345267ae4323794af3edddb)
9
+ Thanks [@yash251](https://github.com/yash251)! - add soneium api and rpc
10
+
3
11
  ## 0.80.1
4
12
 
5
13
  ### Patch Changes
@@ -257,6 +257,8 @@ const getEtherscanLikeAPIUrl = (network) => {
257
257
  return 'https://xt4scan.ngd.network/api/ngd/api';
258
258
  case 'arbitrum-nova':
259
259
  return 'https://api-nova.arbiscan.io/api';
260
+ case 'soneium-testnet':
261
+ return 'https://explorer-testnet.soneium.org/api';
260
262
  default:
261
263
  return `https://api-${network}.etherscan.io/api`;
262
264
  }
@@ -389,6 +391,8 @@ const getPublicRPCEndpoint = (network) => {
389
391
  return 'https://neoxt4seed1.ngd.network';
390
392
  case 'arbitrum-nova':
391
393
  return 'https://nova.arbitrum.io/rpc';
394
+ case 'soneium-testnet':
395
+ return 'https://rpc.minato.soneium.org/';
392
396
  default:
393
397
  throw new Error(`Unknown network: ${network}`);
394
398
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.80.1",
2
+ "version": "0.81.0-alpha-20240828085211-2bec7d0",
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.80.1",
3
+ "version": "0.81.0-alpha-20240828085211-2bec7d0",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {