@subql/node-ethereum 4.7.4-1 → 5.0.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 +8 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/configure/SubqueryProject.d.ts +5 -18
- package/dist/configure/SubqueryProject.js +16 -101
- package/dist/configure/SubqueryProject.js.map +1 -1
- package/dist/configure/configure.module.js +1 -1
- package/dist/configure/configure.module.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.js +1 -3
- package/dist/ethereum/api.service.ethereum.js.map +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +1 -3
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +1 -4
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/dictionary/ethDictionary.service.js +1 -3
- package/dist/indexer/dictionary/ethDictionary.service.js.map +1 -1
- package/dist/indexer/dynamic-ds.service.js +1 -3
- package/dist/indexer/dynamic-ds.service.js.map +1 -1
- package/dist/indexer/fetch.service.js +1 -3
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/project.service.js +1 -3
- package/dist/indexer/project.service.js.map +1 -1
- package/dist/subcommands/testing.service.js +1 -3
- package/dist/subcommands/testing.service.js.map +1 -1
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,14 @@ 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
|
+
|
|
9
|
+
## [5.0.0] - 2024-07-26
|
|
8
10
|
### Changed
|
|
9
11
|
- Enable ts strict mode
|
|
10
|
-
-
|
|
12
|
+
- Use Subquery Project code from node core (#331)
|
|
13
|
+
- Breaking change: Update to latest `@subql/node-core`, require indexing environment timezone set to UTC (#330)
|
|
14
|
+
### Fixed
|
|
15
|
+
- Bump with `@subql/node-core`, fixed various issues causing poi inconsistency (#2497)
|
|
11
16
|
|
|
12
17
|
## [4.7.3] - 2024-07-16
|
|
13
18
|
### Fixed
|
|
@@ -521,7 +526,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
521
526
|
### Added
|
|
522
527
|
- Init release
|
|
523
528
|
|
|
524
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/
|
|
529
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.0...HEAD
|
|
530
|
+
[5.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.3...node-ethereum/5.0.0
|
|
525
531
|
[4.7.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.2...node-ethereum/4.7.3
|
|
526
532
|
[4.7.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.1...node-ethereum/4.7.2
|
|
527
533
|
[4.7.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.0...node-ethereum/4.7.1
|