@subql/node-ethereum 5.2.1 → 5.3.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 +6 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/ethers/celo/celo-provider.d.ts +3 -3
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +1 -0
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +4 -0
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/types.d.ts +1 -0
- package/dist/indexer/types.js +4 -0
- package/dist/indexer/types.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +1 -0
- package/dist/indexer/worker/worker.service.js +4 -0
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [5.3.0] - 2024-12-17
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` and `@subql/common` dependencies
|
|
12
|
+
|
|
9
13
|
## [5.2.1] - 2024-12-06
|
|
10
14
|
### Fixed
|
|
11
15
|
- Missing API dependency when using reindex
|
|
@@ -577,7 +581,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
577
581
|
### Added
|
|
578
582
|
- Init release
|
|
579
583
|
|
|
580
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.
|
|
584
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.3.0...HEAD
|
|
585
|
+
[5.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.2.1...node-ethereum/5.3.0
|
|
581
586
|
[5.2.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.2.0...node-ethereum/5.2.1
|
|
582
587
|
[5.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.7...node-ethereum/5.2.0
|
|
583
588
|
[5.1.7]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.6...node-ethereum/5.1.7
|