@subql/node-ethereum 3.5.3-0 → 3.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 +10 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.d.ts +1 -0
- package/dist/ethereum/api.ethereum.js +13 -1
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.ethereum.test.js +3 -3
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,8 +5,15 @@ 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
|
+
### Added
|
|
9
|
+
- Special support for BEVM Canary (#241)
|
|
10
|
+
|
|
11
|
+
## [3.6.0] - 2024-01-25
|
|
8
12
|
### Changed
|
|
9
|
-
- Update
|
|
13
|
+
- Update @subql/node-core with
|
|
14
|
+
- a performance fix when using modulo filters with other datasources
|
|
15
|
+
- support for CSV exports
|
|
16
|
+
- support for schema migrations
|
|
10
17
|
|
|
11
18
|
## [3.5.2] - 2024-01-18
|
|
12
19
|
### Fixed
|
|
@@ -381,7 +388,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
381
388
|
### Added
|
|
382
389
|
- Init release
|
|
383
390
|
|
|
384
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
391
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.6.0...HEAD
|
|
392
|
+
[3.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.2...node-ethereum/3.6.0
|
|
385
393
|
[3.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.1...node-ethereum/3.5.2
|
|
386
394
|
[3.5.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.5.0...node-ethereum/3.5.1
|
|
387
395
|
[3.5.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.5...node-ethereum/3.5.0
|