@subql/node-ethereum 4.7.1 → 4.7.2
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/api.service.ethereum.test.js +1 -1
- package/dist/ethereum/api.service.ethereum.test.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +2 -3
- package/dist/indexer/fetch.service.js +3 -7
- package/dist/indexer/fetch.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
|
+
## [4.7.2] - 2024-07-11
|
|
10
|
+
### Fixed
|
|
11
|
+
- Update with `node-core`, change `getFinalizedHeight` to `getFinalizedHeader`. Fix indexer could stall due to rpc finalized height could be smaller than previous result. (#2487)
|
|
12
|
+
|
|
9
13
|
## [4.7.1] - 2024-07-10
|
|
10
14
|
### Fixed
|
|
11
15
|
- Bump `@subql/common-ethereum` and `@subql/types-ethereum`, update `@subql/node-core` to fix admin api `dbSize` issue (#326)
|
|
@@ -510,7 +514,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
510
514
|
### Added
|
|
511
515
|
- Init release
|
|
512
516
|
|
|
513
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.
|
|
517
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.2...HEAD
|
|
518
|
+
[4.7.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.1...node-ethereum/4.7.2
|
|
514
519
|
[4.7.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.0...node-ethereum/4.7.1
|
|
515
520
|
[4.7.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.6.0...node-ethereum/4.7.0
|
|
516
521
|
[4.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.5.2...node-ethereum/4.6.0
|