@subql/node-ethereum 3.6.1-0 → 3.7.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 +6 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.js +3 -1
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.ethereum.test.js +21 -0
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/block.ethereum.js +6 -1
- package/dist/ethereum/block.ethereum.js.map +1 -1
- package/dist/indexer/fetch.service.js +9 -2
- package/dist/indexer/fetch.service.js.map +1 -1
- package/package.json +4 -4
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
|
### Added
|
|
9
|
+
- The ability to filter transactions with no input data (#243)
|
|
10
|
+
|
|
11
|
+
## [3.7.0] - 2024-01-30
|
|
12
|
+
### Added
|
|
9
13
|
- Special support for BEVM Canary (#241)
|
|
10
14
|
|
|
11
15
|
## [3.6.0] - 2024-01-25
|
|
@@ -388,7 +392,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
388
392
|
### Added
|
|
389
393
|
- Init release
|
|
390
394
|
|
|
391
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
395
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.7.0...HEAD
|
|
396
|
+
[3.7.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.6.0...node-ethereum/3.7.0
|
|
392
397
|
[3.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.2...node-ethereum/3.6.0
|
|
393
398
|
[3.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.1...node-ethereum/3.5.2
|
|
394
399
|
[3.5.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.0...node-ethereum/3.5.1
|