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