@subql/node-ethereum 3.4.3 → 3.4.5-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 +8 -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/dist/yargs.js +5 -0
- package/dist/yargs.js.map +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
- Timestamp filters not working (#229)
|
|
10
|
+
|
|
11
|
+
## [3.4.4] - 2023-12-20
|
|
12
|
+
### Fixed
|
|
13
|
+
- Metadata lastProcessedHeight undefined issue via `@subql/node-core`
|
|
8
14
|
|
|
9
15
|
## [3.4.3] - 2023-12-04
|
|
10
16
|
### Fixed
|
|
@@ -356,7 +362,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
356
362
|
### Added
|
|
357
363
|
- Init release
|
|
358
364
|
|
|
359
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.
|
|
365
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.4...HEAD
|
|
366
|
+
[3.4.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.3...node-ethereum/3.4.4
|
|
360
367
|
[3.4.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.2...node-ethereum/3.4.3
|
|
361
368
|
[3.4.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.1...node-ethereum/3.4.2
|
|
362
369
|
[3.4.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.0...node-ethereum/3.4.1
|