@subql/node-ethereum 3.3.6 → 3.4.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 -2
- 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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.4.0] - 2023-11-27
|
|
10
|
+
### Added
|
|
11
|
+
- Update `@subql/node-core` with bug fixes
|
|
12
|
+
- Different method for detecting block forks for chains with probabalistic finalization (#217)
|
|
13
|
+
|
|
9
14
|
## [3.3.6] - 2023-11-23
|
|
10
15
|
### Fixed
|
|
11
16
|
- Ensure that the best block updates correctly when `unfinalized-blocks` is enabled. The issue was caused by using `getBestBlockHeight` with the wrong tag.(#215)
|
|
@@ -20,7 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
20
25
|
|
|
21
26
|
## [3.3.3] - 2023-11-13
|
|
22
27
|
### Changed
|
|
23
|
-
- Updates to match changes in
|
|
28
|
+
- Updates to match changes in
|
|
24
29
|
- Dictionary service to use dictionary registry
|
|
25
30
|
- Use yargs from node core
|
|
26
31
|
|
|
@@ -338,7 +343,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
338
343
|
### Added
|
|
339
344
|
- Init release
|
|
340
345
|
|
|
341
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
346
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.4.0...HEAD
|
|
347
|
+
[3.4.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.6...node-ethereum/3.4.0
|
|
342
348
|
[3.3.6]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.5...node-ethereum/3.3.6
|
|
343
349
|
[3.3.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.4...node-ethereum/3.3.5
|
|
344
350
|
[3.3.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.3.3...node-ethereum/3.3.4
|