@subql/node-ethereum 5.0.2-0 → 5.1.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 +6 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js +4 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +28 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ 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
|
+
- Empty dictionary v2 response resulting in all blocks within that range being indexed (#336)
|
|
10
|
+
|
|
11
|
+
## [5.1.0] - 2024-08-02
|
|
8
12
|
### Added
|
|
9
13
|
- Suport for network endpoint config providing the ability to set headers and rpc batch sizes (#334)
|
|
10
14
|
|
|
@@ -534,7 +538,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
534
538
|
### Added
|
|
535
539
|
- Init release
|
|
536
540
|
|
|
537
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0
|
|
541
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.0...HEAD
|
|
542
|
+
[5.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.1...node-ethereum/5.1.0
|
|
538
543
|
[5.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.0...node-ethereum/5.0.1
|
|
539
544
|
[5.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.3...node-ethereum/5.0.0
|
|
540
545
|
[4.7.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.2...node-ethereum/4.7.3
|