@graphprotocol/graph-cli 0.74.1 → 0.75.0-alpha-20240617155519-07dba27
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 +9 -0
- package/dist/command-helpers/abi.js +2 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.75.0-alpha-20240617155519-07dba27
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#1685](https://github.com/graphprotocol/graph-tooling/pull/1685)
|
|
8
|
+
[`07dba27`](https://github.com/graphprotocol/graph-tooling/commit/07dba27b04afcc19c26cb3bd5772ac9a5d525591)
|
|
9
|
+
Thanks [@alinobrasil](https://github.com/alinobrasil)! - getEtherscanLikeAPIUrl: added for sei
|
|
10
|
+
mainnet (to be able to obtain contract ABI)
|
|
11
|
+
|
|
3
12
|
## 0.74.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -235,6 +235,8 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
235
235
|
return `https://astar-zkevm.explorer.startale.com/api`;
|
|
236
236
|
case 'polygon-zkevm-cardona':
|
|
237
237
|
return `https://api-cardona-zkevm.polygonscan.com/api`;
|
|
238
|
+
case 'sei-mainnet':
|
|
239
|
+
return `https://setrace.com/pacific-1/api`;
|
|
238
240
|
default:
|
|
239
241
|
return `https://api-${network}.etherscan.io/api`;
|
|
240
242
|
}
|
package/oclif.manifest.json
CHANGED