@subql/node-ethereum 3.10.1 → 3.11.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.
Files changed (86) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/ethereum/api.connection.d.ts +4 -4
  4. package/dist/ethereum/api.connection.js.map +1 -1
  5. package/dist/ethereum/api.ethereum.d.ts +4 -3
  6. package/dist/ethereum/api.ethereum.js +6 -3
  7. package/dist/ethereum/api.ethereum.js.map +1 -1
  8. package/dist/ethereum/api.ethereum.test.js +13 -1
  9. package/dist/ethereum/api.ethereum.test.js.map +1 -1
  10. package/dist/ethereum/api.service.ethereum.d.ts +2 -2
  11. package/dist/ethereum/api.service.ethereum.js.map +1 -1
  12. package/dist/ethereum/block.ethereum.js +6 -2
  13. package/dist/ethereum/block.ethereum.js.map +1 -1
  14. package/dist/ethereum/utils.ethereum.d.ts +8 -1
  15. package/dist/ethereum/utils.ethereum.js +17 -1
  16. package/dist/ethereum/utils.ethereum.js.map +1 -1
  17. package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -3
  18. package/dist/indexer/blockDispatcher/block-dispatcher.service.js +1 -4
  19. package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
  20. package/dist/indexer/blockDispatcher/ethereum-block-dispatcher.d.ts +2 -1
  21. package/dist/indexer/blockDispatcher/ethereum-block-dispatcher.js.map +1 -1
  22. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -1
  23. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +0 -12
  24. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
  25. package/dist/indexer/dictionary/ethDictionary.service.d.ts +9 -0
  26. package/dist/indexer/dictionary/ethDictionary.service.js +59 -0
  27. package/dist/indexer/dictionary/ethDictionary.service.js.map +1 -0
  28. package/dist/indexer/dictionary/utils.d.ts +3 -0
  29. package/dist/indexer/dictionary/utils.js +24 -0
  30. package/dist/indexer/dictionary/utils.js.map +1 -0
  31. package/dist/indexer/dictionary/utils.spec.js +83 -0
  32. package/dist/indexer/dictionary/utils.spec.js.map +1 -0
  33. package/dist/indexer/dictionary/v1/ethDictionaryV1.d.ts +16 -0
  34. package/dist/indexer/dictionary/v1/ethDictionaryV1.js +202 -0
  35. package/dist/indexer/dictionary/v1/ethDictionaryV1.js.map +1 -0
  36. package/dist/indexer/{fetch.service.spec.js → dictionary/v1/ethDictionaryV1.spec.js} +45 -23
  37. package/dist/indexer/dictionary/v1/ethDictionaryV1.spec.js.map +1 -0
  38. package/dist/indexer/dictionary/v1/index.d.ts +1 -0
  39. package/dist/indexer/dictionary/v1/index.js +20 -0
  40. package/dist/indexer/dictionary/v1/index.js.map +1 -0
  41. package/dist/indexer/dictionary/v2/ethDictionaryV2.d.ts +14 -0
  42. package/dist/indexer/dictionary/v2/ethDictionaryV2.js +188 -0
  43. package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -0
  44. package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.d.ts +1 -0
  45. package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +232 -0
  46. package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -0
  47. package/dist/indexer/dictionary/v2/index.d.ts +2 -0
  48. package/dist/indexer/dictionary/v2/index.js +21 -0
  49. package/dist/indexer/dictionary/v2/index.js.map +1 -0
  50. package/dist/indexer/dictionary/v2/types.d.ts +75 -0
  51. package/dist/indexer/dictionary/v2/types.js +5 -0
  52. package/dist/indexer/dictionary/v2/types.js.map +1 -0
  53. package/dist/indexer/dictionary/v2/utils.d.ts +4 -0
  54. package/dist/indexer/dictionary/v2/utils.js +22 -0
  55. package/dist/indexer/dictionary/v2/utils.js.map +1 -0
  56. package/dist/indexer/dictionary/v2/utils.spec.d.ts +1 -0
  57. package/dist/indexer/dictionary/v2/utils.spec.js +98 -0
  58. package/dist/indexer/dictionary/v2/utils.spec.js.map +1 -0
  59. package/dist/indexer/fetch.module.js +4 -3
  60. package/dist/indexer/fetch.module.js.map +1 -1
  61. package/dist/indexer/fetch.service.d.ts +4 -14
  62. package/dist/indexer/fetch.service.js +4 -177
  63. package/dist/indexer/fetch.service.js.map +1 -1
  64. package/dist/indexer/indexer.manager.d.ts +5 -5
  65. package/dist/indexer/indexer.manager.js +3 -3
  66. package/dist/indexer/indexer.manager.js.map +1 -1
  67. package/dist/indexer/unfinalizedBlocks.service.d.ts +1 -5
  68. package/dist/indexer/unfinalizedBlocks.service.js +5 -21
  69. package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
  70. package/dist/indexer/worker/worker.service.d.ts +4 -4
  71. package/dist/indexer/worker/worker.service.js +1 -1
  72. package/dist/indexer/worker/worker.service.js.map +1 -1
  73. package/dist/indexer/worker/worker.unfinalizedBlocks.service.d.ts +2 -2
  74. package/dist/indexer/worker/worker.unfinalizedBlocks.service.js +2 -6
  75. package/dist/indexer/worker/worker.unfinalizedBlocks.service.js.map +1 -1
  76. package/dist/subcommands/testing.service.d.ts +2 -2
  77. package/dist/subcommands/testing.service.js.map +1 -1
  78. package/package.json +8 -7
  79. package/dist/indexer/dictionary.service.d.ts +0 -11
  80. package/dist/indexer/dictionary.service.js +0 -72
  81. package/dist/indexer/dictionary.service.js.map +0 -1
  82. package/dist/indexer/dictionary.service.spec.js +0 -15
  83. package/dist/indexer/dictionary.service.spec.js.map +0 -1
  84. package/dist/indexer/fetch.service.spec.js.map +0 -1
  85. /package/dist/indexer/{dictionary.service.spec.d.ts → dictionary/utils.spec.d.ts} +0 -0
  86. /package/dist/indexer/{fetch.service.spec.d.ts → dictionary/v1/ethDictionaryV1.spec.d.ts} +0 -0
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.11.0] - 2024-03-20
10
+ ### Changed
11
+ - Update `@subql/node-core` with fixes and optimisations
12
+
9
13
  ## [3.10.1] - 2024-03-14
10
14
  ### Changed
11
15
  - Update `@subql/node-core` to 4.7.2 with graphql comments escaping fix
@@ -427,7 +431,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
427
431
  ### Added
428
432
  - Init release
429
433
 
430
- [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.1...HEAD
434
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.11.0...HEAD
435
+ [3.11.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.1...node-ethereum/3.11.0
431
436
  [3.10.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.0...node-ethereum/3.10.1
432
437
  [3.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.9.1...node-ethereum/3.10.0
433
438
  [3.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.9.0...node-ethereum/3.9.1