@subql/node-ethereum 4.0.1-1 → 4.1.1-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 -3
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.connection.d.ts +1 -1
- package/dist/ethereum/api.connection.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.js +1 -6
- package/dist/ethereum/api.service.ethereum.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +3 -13
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -1
- package/dist/indexer/dictionary/v2/types.d.ts +1 -1
- package/dist/indexer/dictionary/v2/types.js.map +1 -1
- package/dist/indexer/dynamic-ds.service.d.ts +1 -2
- package/dist/indexer/dynamic-ds.service.js +2 -9
- package/dist/indexer/dynamic-ds.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +0 -1
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +1 -1
- package/dist/indexer/fetch.service.js +2 -2
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/indexer.manager.d.ts +0 -2
- package/dist/indexer/indexer.manager.js +1 -7
- package/dist/indexer/indexer.manager.js.map +1 -1
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/dist/indexer/worker-fetch.module.js +1 -2
- package/dist/indexer/worker-fetch.module.js.map +1 -1
- package/package.json +3 -3
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.d.ts +0 -12
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.js +0 -50
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
### Fixed
|
|
9
|
+
- Dictionary v2 query filter with transactions (#278)
|
|
10
|
+
|
|
11
|
+
## [4.1.0] - 2024-04-05
|
|
12
|
+
### Changed
|
|
13
|
+
- update modulos to match changes with node core (#276)
|
|
8
14
|
|
|
9
15
|
### Fixed
|
|
10
|
-
- Now when `workers` set to 0, it will use block dispatcher instead of throw and exit
|
|
11
|
-
- Fixed workers failed to start due to missing apiService, also fix `fetchChainBlock`
|
|
16
|
+
- Now when `workers` set to 0, it will use block dispatcher instead of throw and exit (#273)
|
|
17
|
+
- Fixed workers failed to start due to missing apiService, also fix `fetchChainBlock` (#275)
|
|
12
18
|
|
|
13
19
|
## [4.0.0] - 2024-04-03
|
|
14
20
|
### Added
|
|
@@ -442,7 +448,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
442
448
|
### Added
|
|
443
449
|
- Init release
|
|
444
450
|
|
|
445
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.
|
|
451
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.1.0...HEAD
|
|
452
|
+
[4.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.0.0...node-ethereum/4.1.0
|
|
446
453
|
[4.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.11.0...node-ethereum/4.0.0
|
|
447
454
|
[3.11.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.1...node-ethereum/3.11.0
|
|
448
455
|
[3.10.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.0...node-ethereum/3.10.1
|