@subql/node-ethereum 3.3.5 → 3.3.6
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.connection.d.ts +1 -1
- package/dist/ethereum/api.connection.js +2 -2
- package/dist/ethereum/api.connection.js.map +1 -1
- package/dist/ethereum/api.ethereum.d.ts +2 -1
- package/dist/ethereum/api.ethereum.js +7 -2
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.js +1 -1
- package/dist/ethereum/api.service.ethereum.js.map +1 -1
- package/package.json +1 -1
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
|
|
|
9
|
+
## [3.3.6] - 2023-11-23
|
|
10
|
+
### Fixed
|
|
11
|
+
- Ensure that the best block updates correctly when `unfinalized-blocks` is enabled. The issue was caused by using `getBestBlockHeight` with the wrong tag.(#215)
|
|
12
|
+
|
|
9
13
|
## [3.3.5] - 2023-11-17
|
|
10
14
|
### Fixed
|
|
11
15
|
- `block-confirmations` arg being removed in recent sync with main SDK (#213)
|
|
@@ -334,7 +338,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
334
338
|
### Added
|
|
335
339
|
- Init release
|
|
336
340
|
|
|
337
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.
|
|
341
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.6...HEAD
|
|
342
|
+
[3.3.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.5...node-ethereum/3.3.6
|
|
338
343
|
[3.3.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.4...node-ethereum/3.3.5
|
|
339
344
|
[3.3.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.3...node-ethereum/3.3.4
|
|
340
345
|
[3.3.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.2...node-ethereum/3.3.3
|