@subql/node-ethereum 3.4.4 → 3.4.5
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/configure/SubqueryProject.d.ts +8 -1
- package/dist/configure/SubqueryProject.js.map +1 -1
- package/dist/ethereum/block.ethereum.d.ts +2 -0
- package/dist/ethereum/block.ethereum.js +20 -1
- package/dist/ethereum/block.ethereum.js.map +1 -1
- package/package.json +3 -3
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.4.5] - 2024-01-04
|
|
10
|
+
### Fixed
|
|
11
|
+
- Timestamp filters not working (#229)
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Update node-core with DB query fix
|
|
15
|
+
|
|
9
16
|
## [3.4.4] - 2023-12-20
|
|
10
17
|
### Fixed
|
|
11
18
|
- Metadata lastProcessedHeight undefined issue via `@subql/node-core`
|
|
@@ -360,7 +367,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
360
367
|
### Added
|
|
361
368
|
- Init release
|
|
362
369
|
|
|
363
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.
|
|
370
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.5...HEAD
|
|
371
|
+
[3.4.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.4...node-ethereum/3.4.5
|
|
364
372
|
[3.4.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.3...node-ethereum/3.4.4
|
|
365
373
|
[3.4.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.2...node-ethereum/3.4.3
|
|
366
374
|
[3.4.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.1...node-ethereum/3.4.2
|