@subql/node-ethereum 5.1.1 → 5.1.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.ethereum.test.js +2 -1
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/block.ethereum.js +2 -2
- package/dist/ethereum/block.ethereum.js.map +1 -1
- package/dist/indexer/dictionary/v1/ethDictionaryV1.js +2 -1
- package/dist/indexer/dictionary/v1/ethDictionaryV1.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js +2 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +3 -2
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -1
- package/package.json +2 -2
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
|
+
## [5.1.2] - 2024-08-27
|
|
10
|
+
### Changed
|
|
11
|
+
- Use constant for filter `!null` value (#341)
|
|
12
|
+
|
|
9
13
|
## [5.1.1] - 2024-08-16
|
|
10
14
|
### Fixed
|
|
11
15
|
- Empty dictionary v2 response resulting in all blocks within that range being indexed (#336)
|
|
@@ -543,7 +547,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
543
547
|
### Added
|
|
544
548
|
- Init release
|
|
545
549
|
|
|
546
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.
|
|
550
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.2...HEAD
|
|
551
|
+
[5.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.1...node-ethereum/5.1.2
|
|
547
552
|
[5.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.0...node-ethereum/5.1.1
|
|
548
553
|
[5.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.1...node-ethereum/5.1.0
|
|
549
554
|
[5.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.0...node-ethereum/5.0.1
|