@subql/node-ethereum 3.3.6-0 → 3.3.7-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 +8 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/configure/NodeConfig.d.ts +2 -0
- package/dist/configure/NodeConfig.js +3 -0
- package/dist/configure/NodeConfig.js.map +1 -1
- package/dist/ethereum/api.ethereum.d.ts +2 -1
- package/dist/ethereum/api.ethereum.js +5 -2
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js +1 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js.map +1 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js +1 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js.map +1 -1
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js +1 -1
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js.map +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +3 -4
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +3 -4
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +3 -4
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/project.service.d.ts +2 -1
- package/dist/indexer/project.service.js +3 -0
- package/dist/indexer/project.service.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.d.ts +19 -1
- package/dist/indexer/unfinalizedBlocks.service.js +84 -1
- package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.spec.d.ts +1 -0
- package/dist/indexer/unfinalizedBlocks.service.spec.js +151 -0
- package/dist/indexer/unfinalizedBlocks.service.spec.js.map +1 -0
- package/dist/yargs.js +8 -2
- package/dist/yargs.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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
|
+
- Different method for detecting block forks for chains with probabalistic finalization (#217)
|
|
10
|
+
|
|
11
|
+
## [3.3.6] - 2023-11-23
|
|
12
|
+
### Fixed
|
|
13
|
+
- Ensure that the best block updates correctly when `unfinalized-blocks` is enabled. The issue was caused by using `getBestBlockHeight` with the wrong tag.(#215)
|
|
8
14
|
|
|
9
15
|
## [3.3.5] - 2023-11-17
|
|
10
16
|
### Fixed
|
|
@@ -334,7 +340,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
334
340
|
### Added
|
|
335
341
|
- Init release
|
|
336
342
|
|
|
337
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.
|
|
343
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.6...HEAD
|
|
344
|
+
[3.3.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.5...node-ethereum/3.3.6
|
|
338
345
|
[3.3.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.4...node-ethereum/3.3.5
|
|
339
346
|
[3.3.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.3...node-ethereum/3.3.4
|
|
340
347
|
[3.3.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.2...node-ethereum/3.3.3
|