@graphprotocol/graph-cli 0.81.0-alpha-20240812043853-2a68423 → 0.81.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 +10 -2
- package/dist/command-helpers/abi.js +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.81.0
|
|
3
|
+
## 0.81.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
+
- [#1719](https://github.com/graphprotocol/graph-tooling/pull/1719)
|
|
8
|
+
[`2141242`](https://github.com/graphprotocol/graph-tooling/commit/21412420ad87579a1b884e17c190fc701f220623)
|
|
9
|
+
Thanks [@yash251](https://github.com/yash251)! - add soneium api and rpc
|
|
10
|
+
|
|
11
|
+
## 0.80.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
7
15
|
- [#1715](https://github.com/graphprotocol/graph-tooling/pull/1715)
|
|
8
|
-
[`
|
|
16
|
+
[`4cfef44`](https://github.com/graphprotocol/graph-tooling/commit/4cfef44d991de6f9bbb802eb8956de5d63b2c2a3)
|
|
9
17
|
Thanks [@Shiyasmohd](https://github.com/Shiyasmohd)! - fix: getcontractcreation support on neox
|
|
10
18
|
etherscan api
|
|
11
19
|
|
|
@@ -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
|
}
|
package/oclif.manifest.json
CHANGED