@subql/node-ethereum 3.1.3-0 → 3.3.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 +11 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.js +3 -5
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.ethereum.test.js +5 -0
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/utils.ethereum.js +10 -8
- package/dist/ethereum/utils.ethereum.js.map +1 -1
- package/dist/yargs.d.ts +6 -1
- package/dist/yargs.js +5 -0
- package/dist/yargs.js.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +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
|
+
### Fixed
|
|
9
|
+
- Getting transaction receipts when accessing via a log handler
|
|
10
|
+
|
|
11
|
+
## [3.3.0] - 2023-11-06
|
|
12
|
+
### Added
|
|
13
|
+
- With `dictionary-query-size` now dictionary can config the query block range
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- Sync with node-core 6.3.0 with various fixes
|
|
8
17
|
|
|
9
18
|
## [3.1.2] - 2023-11-01
|
|
10
19
|
### Fixed
|
|
@@ -304,7 +313,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
304
313
|
### Added
|
|
305
314
|
- Init release
|
|
306
315
|
|
|
307
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
316
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.0...HEAD
|
|
317
|
+
[3.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.2...node-ethereum/3.3.0
|
|
308
318
|
[3.1.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.1...node-ethereum/3.1.2
|
|
309
319
|
[3.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.1.0...node-ethereum/3.1.1
|
|
310
320
|
[3.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.6...node-ethereum/3.1.0
|