@graphprotocol/graph-cli 0.39.0-alpha-20230213170230-d219303 → 0.39.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 +7 -1
- package/dist/command-helpers/abi.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.39.0
|
|
3
|
+
## 0.39.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -8,6 +8,12 @@
|
|
|
8
8
|
[`7ffaf0c`](https://github.com/graphprotocol/graph-tooling/commit/7ffaf0ce9532011ae458abff4cf425328aa5c40f)
|
|
9
9
|
Thanks [@incrypto32](https://github.com/incrypto32)! - Auto fetch startBlock
|
|
10
10
|
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#968](https://github.com/graphprotocol/graph-tooling/pull/968)
|
|
14
|
+
[`bf4f541`](https://github.com/graphprotocol/graph-tooling/commit/bf4f5417beca4714792321b271d25fe754350fa3)
|
|
15
|
+
Thanks [@kosecki123](https://github.com/kosecki123)! - fix cleoscan explorer URLs
|
|
16
|
+
|
|
11
17
|
## 0.38.0
|
|
12
18
|
|
|
13
19
|
### Minor Changes
|
|
@@ -134,6 +134,10 @@ const getEtherscanLikeAPIUrl = (network) => {
|
|
|
134
134
|
return `https://api.snowtrace.io/api`;
|
|
135
135
|
case 'fuji':
|
|
136
136
|
return `https://api-testnet.snowtrace.io/api`;
|
|
137
|
+
case 'celo':
|
|
138
|
+
return `https://api.celoscan.io/api`;
|
|
139
|
+
case 'celo-alfajores':
|
|
140
|
+
return `https://alfajores.celoscan.io/api`;
|
|
137
141
|
case 'gnosis':
|
|
138
142
|
return `https://api.gnosisscan.io/api`;
|
|
139
143
|
case 'fantom':
|