@subql/node-ethereum 3.0.5-0 → 3.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-ethereum",
3
- "version": "3.0.5-0",
3
+ "version": "3.0.5",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -10,7 +10,8 @@
10
10
  "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
11
11
  "start": "nest start",
12
12
  "start:dev": "nodemon",
13
- "start:prod": "node dist/main"
13
+ "start:prod": "node dist/main",
14
+ "changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-ethereum\" --release-prefix=\"node-ethereum/\""
14
15
  },
15
16
  "homepage": "https://github.com/subquery/subql",
16
17
  "repository": "github:subquery/subql",
@@ -25,10 +26,10 @@
25
26
  "@nestjs/platform-express": "^9.4.0",
26
27
  "@nestjs/schedule": "^3.0.1",
27
28
  "@subql/common": "3.1.2",
28
- "@subql/common-ethereum": "3.0.3",
29
- "@subql/node-core": "^6.0.2",
29
+ "@subql/common-ethereum": "^3.0.3",
30
+ "@subql/node-core": "^6.0.3",
30
31
  "@subql/testing": "^2.0.2",
31
- "@subql/types-ethereum": "3.0.2",
32
+ "@subql/types-ethereum": "^3.0.2",
32
33
  "cacheable-lookup": "6",
33
34
  "cron-converter": "^1.0.2",
34
35
  "ethers": "^5.7.0",
@@ -64,6 +65,5 @@
64
65
  "files": [
65
66
  "/dist",
66
67
  "/bin"
67
- ],
68
- "stableVersion": "3.0.4"
69
- }
68
+ ]
69
+ }
package/CHANGELOG.md DELETED
@@ -1,321 +0,0 @@
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.0.4] - 2023-10-12
10
- ### Fixed
11
- - Update `@subql/node-core` to fix issues with using object destructing for store interface and workers
12
-
13
- ## [3.0.4] - 2023-10-12
14
- ### Changed
15
- - debug has changed from a boolean to a string to allow scoping debug log level (#2077)
16
-
17
- ### Fixed
18
- - Sync with node-core.
19
- - Fixed Poi migration performance issue.
20
- - Fixed AutoQueue timeout issue.
21
- - Fixed Poi sync could block DB IO and drop connection issue.
22
-
23
- ## [3.0.3] - 2023-10-05
24
- ### Changed
25
- - Version bump with `@subql/types-ethereum` 3.0.2
26
-
27
- ## [3.0.2] - 2023-10-04
28
- ### Fixed
29
- - Fix reindex service without poi feature with `node-core`
30
-
31
- ### Changed
32
- - Version bump with `types-ethereum` and `common-ethereum`
33
-
34
- ## [3.0.1] - 2023-10-03
35
- ### Fixed
36
- - Empty string causing main command to not run, this happened with the default docker compose in starters
37
-
38
- ## [3.0.0] - 2023-10-03
39
- ### Fixed
40
- - Fix dictionary metadata validation failed
41
- - Improve get finalized block error logging
42
- - Fix reindex also start index service (#155)
43
- - Fix warning for filter address (#154)
44
- - Fetching logs via block height resulting in invalid results. Block hash is now used to ensure
45
- correct results. (#156)
46
- - Node runner options being overwritten by yargs defaults (#148)
47
- - Fix yargs default override runner nodeOptions (#166)
48
-
49
- ### Added
50
- - skipTransactions feature to avoid fetching transactions (#170)
51
-
52
- ## [2.12.5] - 2023-09-12
53
- ### Fixed
54
- - Fix nestjs-prometheus dependency issue (#163)
55
- - Sync with node-core 4.2.8, fix NodeConfig scaleBatchSize call itself
56
-
57
- ## [2.12.4] - 2023-09-12
58
- ### Fixed
59
- - Fetching logs via block height resulting in invalid results. Block hash is now used to ensure correct results. (#156)
60
- - Fix reindex also start index service (#155)
61
- - Fix warning for filter address (#154)
62
- - Update to node-core 4.2.7, fix set and remove in same block height causing empty in block range issue
63
-
64
- ## [2.12.3] - 2023-09-04
65
- ### Fixed
66
- - lock to `@subql/common` 2.6.0, in order to fix unknown reader issue. (#152)
67
-
68
- ## [2.12.2] - 2023-09-04
69
- ### Fixed
70
- - Previous failed release
71
-
72
- ## [2.12.1] - 2023-09-01
73
- ### Fixed
74
- - Update `node-core` to 4.2.6, fix timeout issue for unavailable networks in dictionary resolver.
75
-
76
- ## [2.12.0] - 2023-09-01
77
- ### Fixed
78
- - Fallback to singular provider if batch provider is not supported (#144)
79
- - Fix missing ds option for event in dictionary query entries (#145)
80
- - Update `node-core` to 4.2.5, fix dictionary failed to get token issue.
81
-
82
- ### Added
83
- - Custom provider for Celo (#147)
84
-
85
- ### Changed
86
- - Update node-core and add support for project upgrades feature (#148)
87
-
88
- ## [2.11.1] - 2023-08-14
89
- ### Changed
90
- - Synced with main sdk:
91
- - add `--primary-network-endpoint` cli option
92
- - Support for update availability logs
93
-
94
- ## [2.10.0] - 2023-07-31
95
- ### Added
96
- - Added `!null` filter for logs (#135)
97
-
98
- ### Changed
99
- - Update license to GPL-3.0 (#137)
100
- - Updated retry logic for eth requests (#134)
101
- - Adjust batch size for `JsonRpcBatchProvider` dynamically (#121)
102
- - Sync with node-core :
103
- - init db schema manually during test run
104
- - fix retry logic for workers in connection pool
105
- - Performance scoring fix
106
-
107
- ### Fixed
108
- - Fixed missing mmrQueryService in indexer module
109
-
110
- ## [2.9.2] - 2023-07-12
111
- ### Fixed
112
- - Sync with @subql/node-core@3.1.2 (#130)
113
- - Various improvements for POI feature
114
- - Handle RPC error for oversize block responses
115
- - Missing format transaction in log (#128)
116
-
117
- ## [2.9.1] - 2023-07-07
118
- ### Fixed
119
- - Sync with @subql/node-core@3.1.1, fixed Poi table missing mmr issue
120
- - Finalization check with BSC and improved rate limit handling (#126)
121
-
122
- ## [2.9.0] - 2023-07-05
123
- ### Fixed
124
- - Limit the number of calls to eth_chainId (#123)
125
-
126
- ### Added
127
- - `store-cache-upper-limit` flag to limit the max size of the store cache. (#124)
128
-
129
- ## [2.8.0] - 2023-06-27
130
- ### Changed
131
- - Update dependencies and sync with changes from main sdk (#118)
132
-
133
- ### Added
134
- - Custom Error for `api.ethereum`, expose error code. (#115)
135
- - Add flag `query-address-limit` for dictionary queries (#111)
136
-
137
- ### Fixed
138
- - Fix dictionary queries when using `dynamic-datasources` (#116)
139
-
140
- ## [2.6.1] - 2023-06-19
141
- ### Added
142
- - Support for transaction filter `to: null` (#108)
143
-
144
- ### Fixed
145
- - Fixed an issue where Node was not working with workers turned on (#106)
146
-
147
- ## [2.6.0] - 2023-06-15
148
- ### Added
149
- - Implement multiple-endpoint improvements from node-core (#102)
150
-
151
- ### Fixed
152
- - Dictionary queries not including null filters (#104)
153
-
154
- ## [2.5.3] - 2023-06-13
155
- ### Fixed
156
- - Fix module missing sequelize, use subql/x-sequelize (#101)
157
-
158
- ## [2.5.2] - 2023-06-07
159
- ### Fixed
160
- - Sync with node-core 2.4.4, fixed various issue for mmr
161
-
162
- ## [2.5.1] - 2023-06-02
163
- ### Fixed
164
- - Sync with node-core 2.4.3, fixed mmr missing node due to cache lock
165
-
166
- ### Added
167
- - Added parsed tx logs and decode (#97)
168
-
169
- ## [2.5.0] - 2023-06-01
170
- ### Added
171
- - add timestamp to ethTransaction (#93)
172
-
173
- ### Fixed
174
- - Running projects from IPFS with workers. Update node-core, apply fixes from main sdk (#94)
175
-
176
- ## [2.2.2] - 2023-05-22
177
- ### Changed
178
- - Update to latest `@subql/node-core`
179
- - Update to Node 18 (#88)
180
-
181
- ### Fixed
182
- - Fix multiple graphql dependencies due to multiple versions @subql/util (#90)
183
-
184
- ## [2.2.0] - 2023-05-17
185
- ### Changed
186
- - Update to latest node-core
187
- - New method of resolving chain alises (#82)
188
- - dict use equalTo for address (#81)
189
- - Add `chainId` to sandbox global types (#77)
190
-
191
- ### Fixed
192
- - Fix `ds.options.address` not being used (#79)
193
-
194
- ## [2.1.2] - 2023-05-12
195
- ### Changed
196
- - Sync fix with
197
- - Fix app could fail to start, due to flush before metadata repo been set (#73)
198
-
199
- ## [2.1.0] - 2023-05-11
200
- ### Changed
201
- - Sync with Main SDK (#70)
202
- - Updated node core and changes to match
203
- - Expose `chainId` to sandbox
204
- - `bulkRemove` method on the store.
205
- - Ability to regenerate MMR
206
- - Ability to migrade MMR from file based db to postgres db and vice versa
207
-
208
- ### Fixed
209
- - Dictionary meta error log (#69)
210
- - Runtime chain name (#71)
211
-
212
- ## [2.0.1] - 2023-05-09
213
- ### Fixed
214
- - Error message when failing to fetch block (#67)
215
-
216
- ## [2.0.0] - 2023-05-01
217
- ### Added
218
- - Added Database cache feature, this significantly improve indexing performance
219
- - 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.
220
- - 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)
221
- - If enabled `--store-cache-async` writing data to the store is asynchronous with regard to block processing (default is enabled)
222
- - Testing Framework, allow users to test their projects filters and handler functions without having to index the project
223
- - 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.
224
- - Run the testing service using the command: `subql-node-ethereum test`.
225
-
226
- ## [1.0.2] - 2023-04-12
227
- ### Fixed
228
- - Improve error handling with 429 errors (#53)
229
- - Check result from json-rpc-batch request is array (#54)
230
-
231
- ### Changed
232
- - Update node-core, update logic for cockroach db (#55)
233
-
234
- ## [1.0.1] - 2023-04-05
235
- ### Fixed
236
- - Various minor fiexes for dynamic datasources (#51)
237
-
238
- ### Removed
239
- - Remove `count` method from the store (#51)
240
-
241
- ## [1.0.0] - 2023-04-03
242
- ### Changed
243
- - Initial full release
244
-
245
- ## [0.4.0] - 2023-02-03
246
- ### Changed
247
- - Use `eth_getBlockReceipts` RPC method when available to improve performance (#23)
248
-
249
- ## [0.3.0] - 2022-11-24
250
- ### Added
251
- - Support for dictionaries on with `evmChainId` (#17)
252
- - Convert query params to headers for api key support (##16)
253
-
254
- ### Fixed
255
- - Binary name
256
-
257
- ## [0.2.3] - 2022-11-22
258
- ### Fixed
259
- - Call and Block filters not working (#d0028a5cd56b7d5505d5d59ba997a55971335d96)
260
-
261
- ## [0.2.2] - 2022-11-18
262
- ### Fixed
263
- - Fix error from sync
264
-
265
- ## [0.2.1] - 2022-11-18
266
- ### Fixed
267
- - Rerelease 0.2.0
268
-
269
- ## [0.2.0] - 2022-11-17
270
- ### Changed
271
- - Sync with main sdk (#14)
272
-
273
- ## [0.1.1] - 2022-11-10
274
- ### Added
275
- - Retry request when encouraging timeout/rate limit behaviours (#9)
276
-
277
- ## [0.1.0] - 2022-10-31
278
- ### Added
279
- - Init release
280
-
281
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.4...HEAD
282
- [3.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.3...node-ethereum/3.0.4
283
- [3.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.2...node-ethereum/3.0.3
284
- [3.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.1...node-ethereum/3.0.2
285
- [3.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.0...node-ethereum/3.0.1
286
- [3.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.5...node-ethereum/3.0.0
287
- [2.12.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.4...node-ethereum/2.12.5
288
- [2.12.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.3...node-ethereum/2.12.4
289
- [2.12.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.2...node-ethereum/2.12.3
290
- [2.12.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.1...node-ethereum/2.12.2
291
- [2.12.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.0...node-ethereum/2.12.1
292
- [2.12.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.11.1...node-ethereum/2.12.0
293
- [2.11.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...node-ethereum/2.11.1
294
- [2.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...node-ethereum/2.10.0
295
- [2.9.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...node-ethereum/2.9.2
296
- [2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
297
- [2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0
298
- [2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
299
- [2.6.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum//2.6.0...node-ethereum/2.6.1
300
- [2.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.3...node-ethereum/2.6.0
301
- [2.5.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.2...node-ethereum/2.5.3
302
- [2.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.1...node-ethereum/2.5.2
303
- [2.5.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.0...node-ethereum/2.5.1
304
- [2.5.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.2.2...node-ethereum/2.5.0
305
- [2.2.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.2.0.../node-ethereum/2.2.2
306
- [2.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.1.2.../node-ethereum/2.2.0
307
- [2.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.1.0.../node-ethereum/2.1.2
308
- [2.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.0.1.../node-ethereum/2.1.0
309
- [2.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.0.0.../node-ethereum/2.0.1
310
- [2.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/1.0.2.../node-ethereum/2.0.0
311
- [1.0.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/1.0.1.../node-ethereum/1.0.2
312
- [1.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/1.0.0.../node-ethereum/1.0.1
313
- [1.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.4.0.../node-ethereum/1.0.0
314
- [0.4.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.3.0.../node-ethereum/0.4.0
315
- [0.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.3.../node-ethereum/0.3.0
316
- [0.2.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.2.../node-ethereum/0.2.3
317
- [0.2.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.1.../node-ethereum/0.2.2
318
- [0.2.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.2.0.../node-ethereum/0.2.1
319
- [0.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.1.1.../node-ethereum/0.2.0
320
- [0.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/0.1.0.../node-ethereum/0.1.1
321
- [0.1.0]: https://github.com/subquery/subql-ethereum/tags/node-ethereum/0.1.0