@subql/node-ethereum 3.7.1 → 3.8.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 +0 -1
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/indexer/project.service.d.ts +1 -0
- package/dist/indexer/project.service.js +9 -0
- package/dist/indexer/project.service.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.8.0] - 2024-02-23
|
|
10
|
+
### Fixed
|
|
11
|
+
- Remove unnecessary logging relating to light blocks (#249)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Updates to match changes in `@subql/node-core` to 7.3.0
|
|
15
|
+
|
|
9
16
|
## [3.7.1] - 2024-02-07
|
|
10
17
|
### Added
|
|
11
18
|
- The ability to filter transactions with no input data (#243)
|
|
@@ -398,7 +405,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
398
405
|
### Added
|
|
399
406
|
- Init release
|
|
400
407
|
|
|
401
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
408
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.8.0...HEAD
|
|
409
|
+
[3.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.7.1...node-ethereum/3.8.0
|
|
402
410
|
[3.7.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.7.0...node-ethereum/3.7.1
|
|
403
411
|
[3.7.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.6.0...node-ethereum/3.7.0
|
|
404
412
|
[3.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.2...node-ethereum/3.6.0
|