@subql/node-ethereum 3.3.3-poi-logs → 3.3.4
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 +383 -0
- package/dist/.tsbuildinfo +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
|
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [3.3.4] - 2023-11-16
|
|
10
|
+
### Fixed
|
|
11
|
+
- Sync with `node-core` 6.4.2, Fix incorrect enqueuedBlocks, dictionaries timing out by updating `@subql/apollo-links` (#212)
|
|
12
|
+
|
|
13
|
+
## [3.3.3] - 2023-11-13
|
|
14
|
+
### Changed
|
|
15
|
+
- Updates to match changes in
|
|
16
|
+
- Dictionary service to use dictionary registry
|
|
17
|
+
- Use yargs from node core
|
|
18
|
+
|
|
19
|
+
## [3.3.2] - 2023-11-08
|
|
20
|
+
### Fixed
|
|
21
|
+
- Fixed docker build pipeline, release to re-publish docker image(#207)
|
|
22
|
+
|
|
23
|
+
## [3.3.1] - 2023-11-08
|
|
24
|
+
### Fixed
|
|
25
|
+
- Getting transaction receipts when accessing via a log handler
|
|
26
|
+
- transaction missing from log (#202)
|
|
27
|
+
|
|
28
|
+
## [3.3.0] - 2023-11-06
|
|
29
|
+
### Added
|
|
30
|
+
- With `dictionary-query-size` now dictionary can config the query block range
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- Sync with node-core 6.3.0 with various fixes
|
|
34
|
+
|
|
35
|
+
## [3.1.2] - 2023-11-01
|
|
36
|
+
### Fixed
|
|
37
|
+
- Unfinalized blocks not working with Cronos (#193)
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
- Update `@subql/node-core` with fixes and support for endBlock feature (#195)
|
|
41
|
+
|
|
42
|
+
## [3.1.1] - 2023-10-25
|
|
43
|
+
### Fixed
|
|
44
|
+
- Fix crash when creating new dynamic datasources
|
|
45
|
+
|
|
46
|
+
## [3.1.0] - 2023-10-20
|
|
47
|
+
### Added
|
|
48
|
+
- Inject in-memory cache to sandbox
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
- Bump with `@subq/node-core` 3.1.0 , fixed poi migration init check, and improve logging
|
|
52
|
+
|
|
53
|
+
## [3.0.6] - 2023-10-18
|
|
54
|
+
### Fixed
|
|
55
|
+
- Update node-core, additional fix for store bulk methods failing with workers
|
|
56
|
+
|
|
57
|
+
## [3.0.5] - 2023-10-17
|
|
58
|
+
### Fixed
|
|
59
|
+
- Update
|
|
60
|
+
- Dictionary validation error causing application exit (#2101)
|
|
61
|
+
- Auto queue flush getting the queue into a bad state (#2103)
|
|
62
|
+
- Fix getCache could not been cleared after reindex, and could have been re-used and lead to error, such as syncPoi
|
|
63
|
+
|
|
64
|
+
## [3.0.4] - 2023-10-12
|
|
65
|
+
### Changed
|
|
66
|
+
- debug has changed from a boolean to a string to allow scoping debug log level (#2077)
|
|
67
|
+
|
|
68
|
+
### Fixed
|
|
69
|
+
- Sync with node-core.
|
|
70
|
+
- Fix issues with using object destructing for store interface and workers
|
|
71
|
+
- Fixed Poi migration performance issue.
|
|
72
|
+
- Fixed AutoQueue timeout issue.
|
|
73
|
+
- Fixed Poi sync could block DB IO and drop connection issue.
|
|
74
|
+
|
|
75
|
+
## [3.0.3] - 2023-10-05
|
|
76
|
+
### Changed
|
|
77
|
+
- Version bump with `@subql/types-ethereum` 3.0.2
|
|
78
|
+
|
|
79
|
+
## [3.0.2] - 2023-10-04
|
|
80
|
+
### Fixed
|
|
81
|
+
- Fix reindex service without poi feature with `node-core`
|
|
82
|
+
|
|
83
|
+
### Changed
|
|
84
|
+
- Version bump with `types-ethereum` and `common-ethereum`
|
|
85
|
+
|
|
86
|
+
## [3.0.1] - 2023-10-03
|
|
87
|
+
### Fixed
|
|
88
|
+
- Empty string causing main command to not run, this happened with the default docker compose in starters
|
|
89
|
+
|
|
90
|
+
## [3.0.0] - 2023-10-03
|
|
91
|
+
### Fixed
|
|
92
|
+
- Fix dictionary metadata validation failed
|
|
93
|
+
- Improve get finalized block error logging
|
|
94
|
+
- Fix reindex also start index service (#155)
|
|
95
|
+
- Fix warning for filter address (#154)
|
|
96
|
+
- Fetching logs via block height resulting in invalid results. Block hash is now used to ensure
|
|
97
|
+
correct results. (#156)
|
|
98
|
+
- Node runner options being overwritten by yargs defaults (#148)
|
|
99
|
+
- Fix yargs default override runner nodeOptions (#166)
|
|
100
|
+
|
|
101
|
+
### Added
|
|
102
|
+
- skipTransactions feature to avoid fetching transactions (#170)
|
|
103
|
+
|
|
104
|
+
## [2.12.5] - 2023-09-12
|
|
105
|
+
### Fixed
|
|
106
|
+
- Fix nestjs-prometheus dependency issue (#163)
|
|
107
|
+
- Sync with node-core 4.2.8, fix NodeConfig scaleBatchSize call itself
|
|
108
|
+
|
|
109
|
+
## [2.12.4] - 2023-09-12
|
|
110
|
+
### Fixed
|
|
111
|
+
- Fetching logs via block height resulting in invalid results. Block hash is now used to ensure correct results. (#156)
|
|
112
|
+
- Fix reindex also start index service (#155)
|
|
113
|
+
- Fix warning for filter address (#154)
|
|
114
|
+
- Update to node-core 4.2.7, fix set and remove in same block height causing empty in block range issue
|
|
115
|
+
|
|
116
|
+
## [2.12.3] - 2023-09-04
|
|
117
|
+
### Fixed
|
|
118
|
+
- lock to `@subql/common` 2.6.0, in order to fix unknown reader issue. (#152)
|
|
119
|
+
|
|
120
|
+
## [2.12.2] - 2023-09-04
|
|
121
|
+
### Fixed
|
|
122
|
+
- Previous failed release
|
|
123
|
+
|
|
124
|
+
## [2.12.1] - 2023-09-01
|
|
125
|
+
### Fixed
|
|
126
|
+
- Update `node-core` to 4.2.6, fix timeout issue for unavailable networks in dictionary resolver.
|
|
127
|
+
|
|
128
|
+
## [2.12.0] - 2023-09-01
|
|
129
|
+
### Fixed
|
|
130
|
+
- Fallback to singular provider if batch provider is not supported (#144)
|
|
131
|
+
- Fix missing ds option for event in dictionary query entries (#145)
|
|
132
|
+
- Update `node-core` to 4.2.5, fix dictionary failed to get token issue.
|
|
133
|
+
|
|
134
|
+
### Added
|
|
135
|
+
- Custom provider for Celo (#147)
|
|
136
|
+
|
|
137
|
+
### Changed
|
|
138
|
+
- Update node-core and add support for project upgrades feature (#148)
|
|
139
|
+
|
|
140
|
+
## [2.11.1] - 2023-08-14
|
|
141
|
+
### Changed
|
|
142
|
+
- Synced with main sdk:
|
|
143
|
+
- add `--primary-network-endpoint` cli option
|
|
144
|
+
- Support for update availability logs
|
|
145
|
+
|
|
146
|
+
## [2.10.0] - 2023-07-31
|
|
147
|
+
### Added
|
|
148
|
+
- Added `!null` filter for logs (#135)
|
|
149
|
+
|
|
150
|
+
### Changed
|
|
151
|
+
- Update license to GPL-3.0 (#137)
|
|
152
|
+
- Updated retry logic for eth requests (#134)
|
|
153
|
+
- Adjust batch size for `JsonRpcBatchProvider` dynamically (#121)
|
|
154
|
+
- Sync with node-core :
|
|
155
|
+
- init db schema manually during test run
|
|
156
|
+
- fix retry logic for workers in connection pool
|
|
157
|
+
- Performance scoring fix
|
|
158
|
+
|
|
159
|
+
### Fixed
|
|
160
|
+
- Fixed missing mmrQueryService in indexer module
|
|
161
|
+
|
|
162
|
+
## [2.9.2] - 2023-07-12
|
|
163
|
+
### Fixed
|
|
164
|
+
- Sync with @subql/node-core@3.1.2 (#130)
|
|
165
|
+
- Various improvements for POI feature
|
|
166
|
+
- Handle RPC error for oversize block responses
|
|
167
|
+
- Missing format transaction in log (#128)
|
|
168
|
+
|
|
169
|
+
## [2.9.1] - 2023-07-07
|
|
170
|
+
### Fixed
|
|
171
|
+
- Sync with @subql/node-core@3.1.1, fixed Poi table missing mmr issue
|
|
172
|
+
- Finalization check with BSC and improved rate limit handling (#126)
|
|
173
|
+
|
|
174
|
+
## [2.9.0] - 2023-07-05
|
|
175
|
+
### Fixed
|
|
176
|
+
- Limit the number of calls to eth_chainId (#123)
|
|
177
|
+
|
|
178
|
+
### Added
|
|
179
|
+
- `store-cache-upper-limit` flag to limit the max size of the store cache. (#124)
|
|
180
|
+
|
|
181
|
+
## [2.8.0] - 2023-06-27
|
|
182
|
+
### Changed
|
|
183
|
+
- Update dependencies and sync with changes from main sdk (#118)
|
|
184
|
+
|
|
185
|
+
### Added
|
|
186
|
+
- Custom Error for `api.ethereum`, expose error code. (#115)
|
|
187
|
+
- Add flag `query-address-limit` for dictionary queries (#111)
|
|
188
|
+
|
|
189
|
+
### Fixed
|
|
190
|
+
- Fix dictionary queries when using `dynamic-datasources` (#116)
|
|
191
|
+
|
|
192
|
+
## [2.6.1] - 2023-06-19
|
|
193
|
+
### Added
|
|
194
|
+
- Support for transaction filter `to: null` (#108)
|
|
195
|
+
|
|
196
|
+
### Fixed
|
|
197
|
+
- Fixed an issue where Node was not working with workers turned on (#106)
|
|
198
|
+
|
|
199
|
+
## [2.6.0] - 2023-06-15
|
|
200
|
+
### Added
|
|
201
|
+
- Implement multiple-endpoint improvements from node-core (#102)
|
|
202
|
+
|
|
203
|
+
### Fixed
|
|
204
|
+
- Dictionary queries not including null filters (#104)
|
|
205
|
+
|
|
206
|
+
## [2.5.3] - 2023-06-13
|
|
207
|
+
### Fixed
|
|
208
|
+
- Fix module missing sequelize, use subql/x-sequelize (#101)
|
|
209
|
+
|
|
210
|
+
## [2.5.2] - 2023-06-07
|
|
211
|
+
### Fixed
|
|
212
|
+
- Sync with node-core 2.4.4, fixed various issue for mmr
|
|
213
|
+
|
|
214
|
+
## [2.5.1] - 2023-06-02
|
|
215
|
+
### Fixed
|
|
216
|
+
- Sync with node-core 2.4.3, fixed mmr missing node due to cache lock
|
|
217
|
+
|
|
218
|
+
### Added
|
|
219
|
+
- Added parsed tx logs and decode (#97)
|
|
220
|
+
|
|
221
|
+
## [2.5.0] - 2023-06-01
|
|
222
|
+
### Added
|
|
223
|
+
- add timestamp to ethTransaction (#93)
|
|
224
|
+
|
|
225
|
+
### Fixed
|
|
226
|
+
- Running projects from IPFS with workers. Update node-core, apply fixes from main sdk (#94)
|
|
227
|
+
|
|
228
|
+
## [2.2.2] - 2023-05-22
|
|
229
|
+
### Changed
|
|
230
|
+
- Update to latest `@subql/node-core`
|
|
231
|
+
- Update to Node 18 (#88)
|
|
232
|
+
|
|
233
|
+
### Fixed
|
|
234
|
+
- Fix multiple graphql dependencies due to multiple versions @subql/util (#90)
|
|
235
|
+
|
|
236
|
+
## [2.2.0] - 2023-05-17
|
|
237
|
+
### Changed
|
|
238
|
+
- Update to latest node-core
|
|
239
|
+
- New method of resolving chain alises (#82)
|
|
240
|
+
- dict use equalTo for address (#81)
|
|
241
|
+
- Add `chainId` to sandbox global types (#77)
|
|
242
|
+
|
|
243
|
+
### Fixed
|
|
244
|
+
- Fix `ds.options.address` not being used (#79)
|
|
245
|
+
|
|
246
|
+
## [2.1.2] - 2023-05-12
|
|
247
|
+
### Changed
|
|
248
|
+
- Sync fix with
|
|
249
|
+
- Fix app could fail to start, due to flush before metadata repo been set (#73)
|
|
250
|
+
|
|
251
|
+
## [2.1.0] - 2023-05-11
|
|
252
|
+
### Changed
|
|
253
|
+
- Sync with Main SDK (#70)
|
|
254
|
+
- Updated node core and changes to match
|
|
255
|
+
- Expose `chainId` to sandbox
|
|
256
|
+
- `bulkRemove` method on the store.
|
|
257
|
+
- Ability to regenerate MMR
|
|
258
|
+
- Ability to migrade MMR from file based db to postgres db and vice versa
|
|
259
|
+
|
|
260
|
+
### Fixed
|
|
261
|
+
- Dictionary meta error log (#69)
|
|
262
|
+
- Runtime chain name (#71)
|
|
263
|
+
|
|
264
|
+
## [2.0.1] - 2023-05-09
|
|
265
|
+
### Fixed
|
|
266
|
+
- Error message when failing to fetch block (#67)
|
|
267
|
+
|
|
268
|
+
## [2.0.0] - 2023-05-01
|
|
269
|
+
### Added
|
|
270
|
+
- Added Database cache feature, this significantly improve indexing performance
|
|
271
|
+
- Data flush to database when number of records reaches `--store-cache-threshold` value (default is 1000), this reduces number of transactions to database in order to save time.
|
|
272
|
+
- Direct get data from the cache rather than wait to retrieve it from database, with flag `--store-get-cache-size` user could decide how many records for **each** entity they want to keep in the cache (default is 500)
|
|
273
|
+
- If enabled `--store-cache-async` writing data to the store is asynchronous with regard to block processing (default is enabled)
|
|
274
|
+
- Testing Framework, allow users to test their projects filters and handler functions without having to index the project
|
|
275
|
+
- Create test files with the naming convention `*.test.ts` and place them in the `src/tests` or `src/test` folder. Each test file should contain test cases for specific mapping handlers.
|
|
276
|
+
- Run the testing service using the command: `subql-node-ethereum test`.
|
|
277
|
+
|
|
278
|
+
## [1.0.2] - 2023-04-12
|
|
279
|
+
### Fixed
|
|
280
|
+
- Improve error handling with 429 errors (#53)
|
|
281
|
+
- Check result from json-rpc-batch request is array (#54)
|
|
282
|
+
|
|
283
|
+
### Changed
|
|
284
|
+
- Update node-core, update logic for cockroach db (#55)
|
|
285
|
+
|
|
286
|
+
## [1.0.1] - 2023-04-05
|
|
287
|
+
### Fixed
|
|
288
|
+
- Various minor fiexes for dynamic datasources (#51)
|
|
289
|
+
|
|
290
|
+
### Removed
|
|
291
|
+
- Remove `count` method from the store (#51)
|
|
292
|
+
|
|
293
|
+
## [1.0.0] - 2023-04-03
|
|
294
|
+
### Changed
|
|
295
|
+
- Initial full release
|
|
296
|
+
|
|
297
|
+
## [0.4.0] - 2023-02-03
|
|
298
|
+
### Changed
|
|
299
|
+
- Use `eth_getBlockReceipts` RPC method when available to improve performance (#23)
|
|
300
|
+
|
|
301
|
+
## [0.3.0] - 2022-11-24
|
|
302
|
+
### Added
|
|
303
|
+
- Support for dictionaries on with `evmChainId` (#17)
|
|
304
|
+
- Convert query params to headers for api key support (##16)
|
|
305
|
+
|
|
306
|
+
### Fixed
|
|
307
|
+
- Binary name
|
|
308
|
+
|
|
309
|
+
## [0.2.3] - 2022-11-22
|
|
310
|
+
### Fixed
|
|
311
|
+
- Call and Block filters not working (#d0028a5cd56b7d5505d5d59ba997a55971335d96)
|
|
312
|
+
|
|
313
|
+
## [0.2.2] - 2022-11-18
|
|
314
|
+
### Fixed
|
|
315
|
+
- Fix error from sync
|
|
316
|
+
|
|
317
|
+
## [0.2.1] - 2022-11-18
|
|
318
|
+
### Fixed
|
|
319
|
+
- Rerelease 0.2.0
|
|
320
|
+
|
|
321
|
+
## [0.2.0] - 2022-11-17
|
|
322
|
+
### Changed
|
|
323
|
+
- Sync with main sdk (#14)
|
|
324
|
+
|
|
325
|
+
## [0.1.1] - 2022-11-10
|
|
326
|
+
### Added
|
|
327
|
+
- Retry request when encouraging timeout/rate limit behaviours (#9)
|
|
328
|
+
|
|
329
|
+
## [0.1.0] - 2022-10-31
|
|
330
|
+
### Added
|
|
331
|
+
- Init release
|
|
332
|
+
|
|
333
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.4...HEAD
|
|
334
|
+
[3.3.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.3...node-ethereum/3.3.4
|
|
335
|
+
[3.3.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.2...node-ethereum/3.3.3
|
|
336
|
+
[3.3.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.1...node-ethereum/3.3.2
|
|
337
|
+
[3.3.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.0...node-ethereum/3.3.1
|
|
338
|
+
[3.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.2...node-ethereum/3.3.0
|
|
339
|
+
[3.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.1...node-ethereum/3.1.2
|
|
340
|
+
[3.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.0...node-ethereum/3.1.1
|
|
341
|
+
[3.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.6...node-ethereum/3.1.0
|
|
342
|
+
[3.0.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.5...node-ethereum/3.0.6
|
|
343
|
+
[3.0.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.4...node-ethereum/3.0.5
|
|
344
|
+
[3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
|
|
345
|
+
[3.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.2...node-ethereum/3.0.3
|
|
346
|
+
[3.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.1...node-ethereum/3.0.2
|
|
347
|
+
[3.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.0...node-ethereum/3.0.1
|
|
348
|
+
[3.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.5...node-ethereum/3.0.0
|
|
349
|
+
[2.12.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.4...node-ethereum/2.12.5
|
|
350
|
+
[2.12.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.3...node-ethereum/2.12.4
|
|
351
|
+
[2.12.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.2...node-ethereum/2.12.3
|
|
352
|
+
[2.12.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.1...node-ethereum/2.12.2
|
|
353
|
+
[2.12.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.0...node-ethereum/2.12.1
|
|
354
|
+
[2.12.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.11.1...node-ethereum/2.12.0
|
|
355
|
+
[2.11.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...node-ethereum/2.11.1
|
|
356
|
+
[2.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...node-ethereum/2.10.0
|
|
357
|
+
[2.9.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...node-ethereum/2.9.2
|
|
358
|
+
[2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
|
|
359
|
+
[2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0
|
|
360
|
+
[2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
|
|
361
|
+
[2.6.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum//2.6.0...node-ethereum/2.6.1
|
|
362
|
+
[2.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.3...node-ethereum/2.6.0
|
|
363
|
+
[2.5.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.2...node-ethereum/2.5.3
|
|
364
|
+
[2.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.1...node-ethereum/2.5.2
|
|
365
|
+
[2.5.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.0...node-ethereum/2.5.1
|
|
366
|
+
[2.5.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.2.2...node-ethereum/2.5.0
|
|
367
|
+
[2.2.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.2.0.../node-ethereum/2.2.2
|
|
368
|
+
[2.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.1.2.../node-ethereum/2.2.0
|
|
369
|
+
[2.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.1.0.../node-ethereum/2.1.2
|
|
370
|
+
[2.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.0.1.../node-ethereum/2.1.0
|
|
371
|
+
[2.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.0.0.../node-ethereum/2.0.1
|
|
372
|
+
[2.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/1.0.2.../node-ethereum/2.0.0
|
|
373
|
+
[1.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/1.0.1.../node-ethereum/1.0.2
|
|
374
|
+
[1.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/1.0.0.../node-ethereum/1.0.1
|
|
375
|
+
[1.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.4.0.../node-ethereum/1.0.0
|
|
376
|
+
[0.4.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.3.0.../node-ethereum/0.4.0
|
|
377
|
+
[0.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.3.../node-ethereum/0.3.0
|
|
378
|
+
[0.2.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.2.../node-ethereum/0.2.3
|
|
379
|
+
[0.2.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.1.../node-ethereum/0.2.2
|
|
380
|
+
[0.2.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.0.../node-ethereum/0.2.1
|
|
381
|
+
[0.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.1.1.../node-ethereum/0.2.0
|
|
382
|
+
[0.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.1.0.../node-ethereum/0.1.1
|
|
383
|
+
[0.1.0]: https://github.com/subquery/subql-ethereum/tags/node-ethereum/0.1.0
|