@subql/node-stellar 3.9.2-0 → 3.9.2-1
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 +9 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -2
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/stellar-block-dispatcher.d.ts +2 -1
- package/dist/indexer/blockDispatcher/stellar-block-dispatcher.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/dictionary/index.d.ts +1 -0
- package/dist/indexer/dictionary/index.js +20 -0
- package/dist/indexer/dictionary/index.js.map +1 -0
- package/dist/indexer/dictionary/stellarDictionary.service.d.ts +13 -0
- package/dist/indexer/dictionary/stellarDictionary.service.js +69 -0
- package/dist/indexer/dictionary/stellarDictionary.service.js.map +1 -0
- package/dist/indexer/dictionary/v1/index.d.ts +1 -0
- package/dist/indexer/dictionary/v1/index.js +20 -0
- package/dist/indexer/dictionary/v1/index.js.map +1 -0
- package/dist/indexer/dictionary/v1/stellarDictionaryV1.d.ts +16 -0
- package/dist/indexer/dictionary/v1/stellarDictionaryV1.js +210 -0
- package/dist/indexer/dictionary/v1/stellarDictionaryV1.js.map +1 -0
- package/dist/indexer/{fetch.service.spec.js → dictionary/v1/stellarDictionaryV1.spec.js} +51 -6
- package/dist/indexer/dictionary/v1/stellarDictionaryV1.spec.js.map +1 -0
- package/dist/indexer/dynamic-ds.service.js +3 -2
- package/dist/indexer/dynamic-ds.service.js.map +1 -1
- package/dist/indexer/fetch.module.js +3 -10
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +4 -14
- package/dist/indexer/fetch.service.js +5 -192
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/indexer.manager.d.ts +2 -2
- package/dist/indexer/indexer.manager.js +1 -1
- package/dist/indexer/indexer.manager.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.d.ts +0 -2
- package/dist/indexer/unfinalizedBlocks.service.js +4 -20
- package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +3 -3
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.d.ts +2 -2
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.js +2 -2
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.js.map +1 -1
- package/dist/stellar/api.connection.d.ts +4 -4
- package/dist/stellar/api.connection.js.map +1 -1
- package/dist/stellar/api.service.stellar.d.ts +2 -2
- package/dist/stellar/api.service.stellar.js +0 -1
- package/dist/stellar/api.service.stellar.js.map +1 -1
- package/dist/stellar/api.service.stellar.spec.js +2 -3
- package/dist/stellar/api.service.stellar.spec.js.map +1 -1
- package/dist/stellar/api.stellar.d.ts +3 -2
- package/dist/stellar/api.stellar.js +2 -1
- package/dist/stellar/api.stellar.js.map +1 -1
- package/dist/stellar/api.stellar.spec.js +2 -2
- package/dist/stellar/api.stellar.spec.js.map +1 -1
- package/dist/stellar/utils.stellar.d.ts +4 -1
- package/dist/stellar/utils.stellar.js +16 -1
- package/dist/stellar/utils.stellar.js.map +1 -1
- package/package.json +6 -6
- package/dist/indexer/dictionary.service.d.ts +0 -8
- package/dist/indexer/dictionary.service.js +0 -46
- package/dist/indexer/dictionary.service.js.map +0 -1
- package/dist/indexer/fetch.service.spec.js.map +0 -1
- /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
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Updated with node-core. Now dictionary supports multiple endpoints, indexer will fetch and switch dictionaries based on available blocks
|
|
12
|
+
### Fixed
|
|
13
|
+
- Updated with node-core ,also fixed:
|
|
14
|
+
- Fix modulo block didn't apply correctly with multiple dataSources
|
|
15
|
+
- Now when `workers` set to 0, it will use block dispatcher instead of throw and exit
|
|
16
|
+
|
|
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
|