@subql/node-ethereum 5.6.2 → 6.0.1-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 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/blockchain.service.d.ts +1 -1
- package/dist/blockchain.service.js.map +1 -1
- package/dist/ethereum/ethers/web/index.js +2 -1
- package/dist/ethereum/ethers/web/index.js.map +1 -1
- package/dist/indexer/fetch.module.js +3 -3
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/subcommands/reindex.module.js +1 -0
- package/dist/subcommands/reindex.module.js.map +1 -1
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
### Fixed
|
|
9
|
+
- OOM issue with large RPC responses (#375)
|
|
10
|
+
|
|
11
|
+
## [6.0.0] - 2025-04-24
|
|
12
|
+
### Changed
|
|
13
|
+
- Update @subql/node-core dependencies
|
|
8
14
|
|
|
9
15
|
## [5.6.2] - 2025-04-08
|
|
10
16
|
### Changed
|
|
@@ -608,7 +614,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
608
614
|
### Added
|
|
609
615
|
- Init release
|
|
610
616
|
|
|
611
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/
|
|
617
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.0.0...HEAD
|
|
618
|
+
[6.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.6.2...node-ethereum/6.0.0
|
|
612
619
|
[5.6.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.6.1...node-ethereum/5.6.2
|
|
613
620
|
[5.6.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.6.0...node-ethereum/5.6.1
|
|
614
621
|
[5.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.5.0...node-ethereum/5.6.0
|