@subql/node-ethereum 4.1.1-0 → 4.1.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 +6 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/dictionary/ethDictionary.service.js +2 -1
- package/dist/indexer/dictionary/ethDictionary.service.js.map +1 -1
- package/dist/indexer/dictionary/v1/ethDictionaryV1.js +1 -1
- package/dist/indexer/dictionary/v1/ethDictionaryV1.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js +15 -9
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +33 -0
- 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
|
### Fixed
|
|
9
|
+
- Dictionary v2 transactions query not including address (#281)
|
|
10
|
+
|
|
11
|
+
## [4.1.1] - 2024-04-16
|
|
12
|
+
### Fixed
|
|
9
13
|
- Dictionary v2 query filter with transactions (#278)
|
|
10
14
|
|
|
11
15
|
## [4.1.0] - 2024-04-05
|
|
@@ -448,7 +452,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
448
452
|
### Added
|
|
449
453
|
- Init release
|
|
450
454
|
|
|
451
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.1.
|
|
455
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.1.1...HEAD
|
|
456
|
+
[4.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.1.0...node-ethereum/4.1.1
|
|
452
457
|
[4.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.0.0...node-ethereum/4.1.0
|
|
453
458
|
[4.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.11.0...node-ethereum/4.0.0
|
|
454
459
|
[3.11.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.1...node-ethereum/3.11.0
|