@subql/node-ethereum 6.0.5 → 6.1.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.test.js +33 -15
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.test.js +1 -2
- package/dist/ethereum/api.service.ethereum.test.js.map +1 -1
- package/dist/ethereum/block.ethereum.js +5 -0
- package/dist/ethereum/block.ethereum.js.map +1 -1
- package/dist/ethereum/utils.ethereum.js +10 -1
- package/dist/ethereum/utils.ethereum.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.d.ts +2 -2
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js +26 -15
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +14 -3
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -1
- package/dist/indexer/dictionary/v2/types.d.ts +1 -0
- package/dist/indexer/dictionary/v2/types.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
|
+
## [6.1.0] - 2025-06-18
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` (#383)
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- Support for ERC-4844 fields and added transaction type filter (#383)
|
|
15
|
+
|
|
9
16
|
## [6.0.5] - 2025-05-08
|
|
10
17
|
### Changed
|
|
11
18
|
- Update `@subql/node-core` with fix for worker queues
|
|
@@ -632,7 +639,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
632
639
|
### Added
|
|
633
640
|
- Init release
|
|
634
641
|
|
|
635
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.0
|
|
642
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.1.0...HEAD
|
|
643
|
+
[6.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.0.5...node-ethereum/6.1.0
|
|
636
644
|
[6.0.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.0.4...node-ethereum/6.0.5
|
|
637
645
|
[6.0.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.0.3...node-ethereum/6.0.4
|
|
638
646
|
[6.0.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.0.2...node-ethereum/6.0.3
|