@subql/node-ethereum 4.7.0 → 4.7.2-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 +9 -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 +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
### Fixed
|
|
10
|
+
- Update with `node-core`, change `getFinalizedHeight` to `getFinalizedHeader`. Fix indexer could stall due to rpc finalized height could be smaller than previous result. (#2487)
|
|
11
|
+
|
|
12
|
+
## [4.7.1] - 2024-07-10
|
|
13
|
+
### Fixed
|
|
14
|
+
- Bump `@subql/common-ethereum` and `@subql/types-ethereum`, update `@subql/node-core` to fix admin api `dbSize` issue (#326)
|
|
15
|
+
|
|
9
16
|
## [4.7.0] - 2024-07-03
|
|
10
17
|
### Changed
|
|
11
18
|
- bump with `@subql/common-ethereum` and `@subql/types-ethereum`
|
|
@@ -506,7 +513,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
506
513
|
### Added
|
|
507
514
|
- Init release
|
|
508
515
|
|
|
509
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.
|
|
516
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.1...HEAD
|
|
517
|
+
[4.7.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.0...node-ethereum/4.7.1
|
|
510
518
|
[4.7.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.6.0...node-ethereum/4.7.0
|
|
511
519
|
[4.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.5.2...node-ethereum/4.6.0
|
|
512
520
|
[4.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.5.1...node-ethereum/4.5.2
|