@subql/node-ethereum 6.3.4-1 → 6.4.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.ethereum.js +2 -14
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/ethers/tron/tron-constants.d.ts +1 -0
- package/dist/ethereum/ethers/tron/tron-constants.js +8 -0
- package/dist/ethereum/ethers/tron/tron-constants.js.map +1 -0
- package/dist/indexer/unfinalizedBlocks.service.d.ts +4 -5
- package/dist/indexer/unfinalizedBlocks.service.js +6 -13
- package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
- package/package.json +4 -4
- package/dist/ethereum/ethers/tron/tron-provider.d.ts +0 -29
- package/dist/ethereum/ethers/tron/tron-provider.js +0 -55
- package/dist/ethereum/ethers/tron/tron-provider.js.map +0 -1
- package/dist/ethereum/ethers/tron/tron-utils.d.ts +0 -10
- package/dist/ethereum/ethers/tron/tron-utils.js +0 -38
- package/dist/ethereum/ethers/tron/tron-utils.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.4.0] - 2026-03-20
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` to 19.2.0 (#416)
|
|
12
|
+
- Refactor block height retrieval with blockchain service (#417)
|
|
13
|
+
- Refine Tron support for invalid state roots handling (#409, #418)
|
|
14
|
+
|
|
9
15
|
## [6.3.3] - 2026-02-23
|
|
10
16
|
### Fixed
|
|
11
17
|
- Handle fork rollback crash when parent block lookup fails by falling back to height-based check
|
|
@@ -670,7 +676,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
670
676
|
### Added
|
|
671
677
|
- Init release
|
|
672
678
|
|
|
673
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.
|
|
679
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.4.0...HEAD
|
|
680
|
+
[6.4.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.3.3...node-ethereum/6.4.0
|
|
681
|
+
[6.3.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.3.1...node-ethereum/6.3.3
|
|
674
682
|
[6.3.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.3.0...node-ethereum/6.3.1
|
|
675
683
|
[6.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.2.1...node-ethereum/6.3.0
|
|
676
684
|
[6.2.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.2.0...node-ethereum/6.2.1
|