@subql/node-stellar 3.9.2-0 → 3.10.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 (62) hide show
  1. package/CHANGELOG.md +11 -1
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
  4. package/dist/indexer/blockDispatcher/block-dispatcher.service.js +1 -1
  5. package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
  6. package/dist/indexer/blockDispatcher/stellar-block-dispatcher.d.ts +2 -1
  7. package/dist/indexer/blockDispatcher/stellar-block-dispatcher.js.map +1 -1
  8. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -1
  9. package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
  10. package/dist/indexer/dictionary/index.d.ts +1 -0
  11. package/dist/indexer/dictionary/index.js +20 -0
  12. package/dist/indexer/dictionary/index.js.map +1 -0
  13. package/dist/indexer/dictionary/stellarDictionary.service.d.ts +13 -0
  14. package/dist/indexer/dictionary/stellarDictionary.service.js +69 -0
  15. package/dist/indexer/dictionary/stellarDictionary.service.js.map +1 -0
  16. package/dist/indexer/dictionary/v1/index.d.ts +1 -0
  17. package/dist/indexer/dictionary/v1/index.js +20 -0
  18. package/dist/indexer/dictionary/v1/index.js.map +1 -0
  19. package/dist/indexer/dictionary/v1/stellarDictionaryV1.d.ts +16 -0
  20. package/dist/indexer/dictionary/v1/stellarDictionaryV1.js +210 -0
  21. package/dist/indexer/dictionary/v1/stellarDictionaryV1.js.map +1 -0
  22. package/dist/indexer/{fetch.service.spec.js → dictionary/v1/stellarDictionaryV1.spec.js} +51 -6
  23. package/dist/indexer/dictionary/v1/stellarDictionaryV1.spec.js.map +1 -0
  24. package/dist/indexer/dynamic-ds.service.js +3 -2
  25. package/dist/indexer/dynamic-ds.service.js.map +1 -1
  26. package/dist/indexer/fetch.module.js +3 -10
  27. package/dist/indexer/fetch.module.js.map +1 -1
  28. package/dist/indexer/fetch.service.d.ts +4 -14
  29. package/dist/indexer/fetch.service.js +5 -192
  30. package/dist/indexer/fetch.service.js.map +1 -1
  31. package/dist/indexer/indexer.manager.d.ts +2 -2
  32. package/dist/indexer/indexer.manager.js +1 -1
  33. package/dist/indexer/indexer.manager.js.map +1 -1
  34. package/dist/indexer/unfinalizedBlocks.service.d.ts +0 -2
  35. package/dist/indexer/unfinalizedBlocks.service.js +4 -20
  36. package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
  37. package/dist/indexer/worker/worker.service.d.ts +3 -3
  38. package/dist/indexer/worker/worker.service.js.map +1 -1
  39. package/dist/indexer/worker/worker.unfinalizedBlocks.service.d.ts +2 -2
  40. package/dist/indexer/worker/worker.unfinalizedBlocks.service.js +2 -2
  41. package/dist/indexer/worker/worker.unfinalizedBlocks.service.js.map +1 -1
  42. package/dist/stellar/api.connection.d.ts +4 -4
  43. package/dist/stellar/api.connection.js.map +1 -1
  44. package/dist/stellar/api.service.stellar.d.ts +2 -2
  45. package/dist/stellar/api.service.stellar.js +0 -1
  46. package/dist/stellar/api.service.stellar.js.map +1 -1
  47. package/dist/stellar/api.service.stellar.spec.js +2 -3
  48. package/dist/stellar/api.service.stellar.spec.js.map +1 -1
  49. package/dist/stellar/api.stellar.d.ts +3 -2
  50. package/dist/stellar/api.stellar.js +2 -1
  51. package/dist/stellar/api.stellar.js.map +1 -1
  52. package/dist/stellar/api.stellar.spec.js +2 -2
  53. package/dist/stellar/api.stellar.spec.js.map +1 -1
  54. package/dist/stellar/utils.stellar.d.ts +4 -1
  55. package/dist/stellar/utils.stellar.js +16 -1
  56. package/dist/stellar/utils.stellar.js.map +1 -1
  57. package/package.json +6 -6
  58. package/dist/indexer/dictionary.service.d.ts +0 -8
  59. package/dist/indexer/dictionary.service.js +0 -46
  60. package/dist/indexer/dictionary.service.js.map +0 -1
  61. package/dist/indexer/fetch.service.spec.js.map +0 -1
  62. /package/dist/indexer/{fetch.service.spec.d.ts → dictionary/v1/stellarDictionaryV1.spec.d.ts} +0 -0
package/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [3.10.0] - 2024-04-10
10
+ ### Changed
11
+ - Updated with node-core. Now dictionary supports multiple endpoints, indexer will fetch and switch dictionaries based on available blocks
12
+
13
+ ### Fixed
14
+ - Updated with node-core ,also fixed:
15
+ - Fix modulo block didn't apply correctly with multiple dataSources
16
+ - Now when `workers` set to 0, it will use block dispatcher instead of throw and exit
17
+
9
18
  ## [3.9.1] - 2024-03-14
10
19
  ### Changed
11
20
  - Update `@subql/node-core` to 4.7.2 with graphql comments escaping fix
@@ -102,7 +111,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
102
111
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
103
112
 
104
113
  ## [2.12.0] - 2023-09-12
105
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...HEAD
114
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.0...HEAD
115
+ [3.10.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...node-stellar/3.10.0
106
116
  [3.9.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.0...node-stellar/3.9.1
107
117
  [3.9.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.1...node-stellar/3.9.0
108
118
  [3.8.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.0...node-stellar/3.8.1