@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.
Files changed (34) hide show
  1. package/CHANGELOG.md +8 -1
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/configure/NodeConfig.d.ts +2 -0
  4. package/dist/configure/NodeConfig.js +3 -0
  5. package/dist/configure/NodeConfig.js.map +1 -1
  6. package/dist/ethereum/api.ethereum.d.ts +2 -1
  7. package/dist/ethereum/api.ethereum.js +5 -2
  8. package/dist/ethereum/api.ethereum.js.map +1 -1
  9. package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js +1 -1
  10. package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js.map +1 -1
  11. package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js +1 -1
  12. package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js.map +1 -1
  13. package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js +1 -1
  14. package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js.map +1 -1
  15. package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
  16. package/dist/indexer/blockDispatcher/block-dispatcher.service.js +3 -4
  17. package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
  18. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -2
  19. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +3 -4
  20. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
  21. package/dist/indexer/fetch.module.js +3 -4
  22. package/dist/indexer/fetch.module.js.map +1 -1
  23. package/dist/indexer/project.service.d.ts +2 -1
  24. package/dist/indexer/project.service.js +3 -0
  25. package/dist/indexer/project.service.js.map +1 -1
  26. package/dist/indexer/unfinalizedBlocks.service.d.ts +19 -1
  27. package/dist/indexer/unfinalizedBlocks.service.js +84 -1
  28. package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
  29. package/dist/indexer/unfinalizedBlocks.service.spec.d.ts +1 -0
  30. package/dist/indexer/unfinalizedBlocks.service.spec.js +151 -0
  31. package/dist/indexer/unfinalizedBlocks.service.spec.js.map +1 -0
  32. package/dist/yargs.js +8 -2
  33. package/dist/yargs.js.map +1 -1
  34. 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.5...HEAD
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