@subql/node-ethereum 5.1.7-0 → 5.1.8-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/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.test.js +9 -14
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/ethers/celo/celo-provider.d.ts +3 -3
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +4 -5
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +3 -3
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +5 -6
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +4 -4
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +2 -2
- package/dist/indexer/fetch.service.js +4 -4
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/project.service.d.ts +2 -2
- package/dist/indexer/project.service.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.d.ts +5 -5
- package/dist/indexer/unfinalizedBlocks.service.js +16 -11
- package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.spec.js +13 -5
- package/dist/indexer/unfinalizedBlocks.service.spec.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +3 -7
- package/dist/indexer/worker/worker.service.js +2 -0
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/dist/subcommands/reindex.module.js +6 -1
- package/dist/subcommands/reindex.module.js.map +1 -1
- package/dist/subcommands/testing.module.js +6 -1
- package/dist/subcommands/testing.module.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
### Added
|
|
10
|
+
- Support for historical indexing by timestamp as well as block height
|
|
11
|
+
- Add an `--enable-cache` flag, allowing you to choose between DB or cache for IO operations.
|
|
12
|
+
|
|
13
|
+
## [5.1.7] - 2024-10-24
|
|
9
14
|
### Fixed
|
|
10
15
|
- When there is no log data for fullBlock, it is determined as lightBlock. (#350)
|
|
11
16
|
|
|
@@ -567,7 +572,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
567
572
|
### Added
|
|
568
573
|
- Init release
|
|
569
574
|
|
|
570
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.
|
|
575
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.7...HEAD
|
|
576
|
+
[5.1.7]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.6...node-ethereum/5.1.7
|
|
571
577
|
[5.1.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.5...node-ethereum/5.1.6
|
|
572
578
|
[5.1.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.4...node-ethereum/5.1.5
|
|
573
579
|
[5.1.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.3...node-ethereum/5.1.4
|