@subql/node 6.4.1-0 → 6.4.3
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 +11 -1
- package/dist/.tsbuildinfo +1 -0
- package/dist/app.module.d.ts +2 -0
- package/dist/app.module.js +42 -0
- package/dist/app.module.js.map +1 -0
- package/dist/blockchain.service.d.ts +31 -0
- package/dist/blockchain.service.js +146 -0
- package/dist/blockchain.service.js.map +1 -0
- package/dist/configure/NodeConfig.d.ts +19 -0
- package/dist/configure/NodeConfig.js +28 -0
- package/dist/configure/NodeConfig.js.map +1 -0
- package/dist/configure/SubqueryProject.d.ts +13 -0
- package/dist/configure/SubqueryProject.js +29 -0
- package/dist/configure/SubqueryProject.js.map +1 -0
- package/dist/configure/configure.module.d.ts +11 -0
- package/dist/configure/configure.module.js +63 -0
- package/dist/configure/configure.module.js.map +1 -0
- package/dist/indexer/api.service.d.ts +36 -0
- package/dist/indexer/api.service.js +315 -0
- package/dist/indexer/api.service.js.map +1 -0
- package/dist/indexer/apiPromise.connection.d.ts +24 -0
- package/dist/indexer/apiPromise.connection.js +106 -0
- package/dist/indexer/apiPromise.connection.js.map +1 -0
- package/dist/indexer/dictionary/index.d.ts +2 -0
- package/dist/indexer/dictionary/index.js +21 -0
- package/dist/indexer/dictionary/index.js.map +1 -0
- package/dist/indexer/dictionary/substrateDictionary.service.d.ts +13 -0
- package/dist/indexer/dictionary/substrateDictionary.service.js +93 -0
- package/dist/indexer/dictionary/substrateDictionary.service.js.map +1 -0
- package/dist/indexer/dictionary/types.d.ts +10 -0
- package/dist/indexer/dictionary/types.js +5 -0
- package/dist/indexer/dictionary/types.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/substrateDictionaryV1.d.ts +19 -0
- package/dist/indexer/dictionary/v1/substrateDictionaryV1.js +223 -0
- package/dist/indexer/dictionary/v1/substrateDictionaryV1.js.map +1 -0
- package/dist/indexer/dictionary/v2/index.d.ts +2 -0
- package/dist/indexer/dictionary/v2/index.js +21 -0
- package/dist/indexer/dictionary/v2/index.js.map +1 -0
- package/dist/indexer/dictionary/v2/substrateDictionaryV2.d.ts +20 -0
- package/dist/indexer/dictionary/v2/substrateDictionaryV2.js +46 -0
- package/dist/indexer/dictionary/v2/substrateDictionaryV2.js.map +1 -0
- package/dist/indexer/dictionary/v2/types.d.ts +5 -0
- package/dist/indexer/dictionary/v2/types.js +5 -0
- package/dist/indexer/dictionary/v2/types.js.map +1 -0
- package/dist/indexer/fetch.module.d.ts +2 -0
- package/dist/indexer/fetch.module.js +94 -0
- package/dist/indexer/fetch.module.js.map +1 -0
- package/dist/indexer/indexer.manager.d.ts +27 -0
- package/dist/indexer/indexer.manager.js +153 -0
- package/dist/indexer/indexer.manager.js.map +1 -0
- package/dist/indexer/runtime/base-runtime.service.d.ts +24 -0
- package/dist/indexer/runtime/base-runtime.service.js +136 -0
- package/dist/indexer/runtime/base-runtime.service.js.map +1 -0
- package/dist/indexer/runtime/runtimeService.d.ts +15 -0
- package/dist/indexer/runtime/runtimeService.js +94 -0
- package/dist/indexer/runtime/runtimeService.js.map +1 -0
- package/dist/indexer/runtime/workerRuntimeService.d.ts +9 -0
- package/dist/indexer/runtime/workerRuntimeService.js +43 -0
- package/dist/indexer/runtime/workerRuntimeService.js.map +1 -0
- package/dist/indexer/types.d.ts +20 -0
- package/dist/indexer/types.js +13 -0
- package/dist/indexer/types.js.map +1 -0
- package/dist/indexer/worker/worker-fetch.module.d.ts +5 -0
- package/dist/indexer/worker/worker-fetch.module.js +60 -0
- package/dist/indexer/worker/worker-fetch.module.js.map +1 -0
- package/dist/indexer/worker/worker.d.ts +9 -0
- package/dist/indexer/worker/worker.js +48 -0
- package/dist/indexer/worker/worker.js.map +1 -0
- package/dist/indexer/worker/worker.module.d.ts +2 -0
- package/dist/indexer/worker/worker.module.js +33 -0
- package/dist/indexer/worker/worker.module.js.map +1 -0
- package/dist/indexer/worker/worker.service.d.ts +26 -0
- package/dist/indexer/worker/worker.service.js +71 -0
- package/dist/indexer/worker/worker.service.js.map +1 -0
- package/dist/indexer/x-provider/cachedProvider.d.ts +2 -0
- package/dist/indexer/x-provider/cachedProvider.js +40 -0
- package/dist/indexer/x-provider/cachedProvider.js.map +1 -0
- package/dist/indexer/x-provider/http.d.ts +75 -0
- package/dist/indexer/x-provider/http.js +198 -0
- package/dist/indexer/x-provider/http.js.map +1 -0
- package/dist/init.d.ts +1 -0
- package/dist/init.js +41 -0
- package/dist/init.js.map +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +19 -0
- package/dist/main.js.map +1 -0
- package/dist/subcommands/forceClean.init.d.ts +1 -0
- package/dist/subcommands/forceClean.init.js +10 -0
- package/dist/subcommands/forceClean.init.js.map +1 -0
- package/dist/subcommands/forceClean.module.d.ts +2 -0
- package/dist/subcommands/forceClean.module.js +28 -0
- package/dist/subcommands/forceClean.module.js.map +1 -0
- package/dist/subcommands/reindex.init.d.ts +3 -0
- package/dist/subcommands/reindex.init.js +33 -0
- package/dist/subcommands/reindex.init.js.map +1 -0
- package/dist/subcommands/reindex.module.d.ts +2 -0
- package/dist/subcommands/reindex.module.js +69 -0
- package/dist/subcommands/reindex.module.js.map +1 -0
- package/dist/subcommands/testing.init.d.ts +1 -0
- package/dist/subcommands/testing.init.js +21 -0
- package/dist/subcommands/testing.init.js.map +1 -0
- package/dist/subcommands/testing.module.d.ts +2 -0
- package/dist/subcommands/testing.module.js +65 -0
- package/dist/subcommands/testing.module.js.map +1 -0
- package/dist/subcommands/testing.service.d.ts +14 -0
- package/dist/subcommands/testing.service.js +60 -0
- package/dist/subcommands/testing.service.js.map +1 -0
- package/dist/utils/project.d.ts +9 -0
- package/dist/utils/project.js +116 -0
- package/dist/utils/project.js.map +1 -0
- package/dist/utils/substrate.d.ts +41 -0
- package/dist/utils/substrate.js +348 -0
- package/dist/utils/substrate.js.map +1 -0
- package/dist/utils/test.utils.d.ts +2 -0
- package/dist/utils/test.utils.js +70 -0
- package/dist/utils/test.utils.js.map +1 -0
- package/dist/yargs.d.ts +276 -0
- package/dist/yargs.js +27 -0
- package/dist/yargs.js.map +1 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [6.4.3] - 2025-11-05
|
|
10
|
+
### Fixed
|
|
11
|
+
- Lock down VM2 version to avoid a breaking change (#2959)
|
|
12
|
+
|
|
13
|
+
## [6.4.2] - 2025-10-22
|
|
14
|
+
### Changed
|
|
15
|
+
- Update `@subql/common-substrate`
|
|
16
|
+
|
|
9
17
|
## [6.4.0] - 2025-10-15
|
|
10
18
|
### Changed
|
|
11
19
|
- Minor improvements and fixes from upgrading to eslint 9 with stricter settings (#2929)
|
|
@@ -1472,7 +1480,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1472
1480
|
### Changed
|
|
1473
1481
|
- bump @polkadot/api to 3.1.1
|
|
1474
1482
|
|
|
1475
|
-
[Unreleased]: https://github.com/subquery/subql/compare/node/6.4.
|
|
1483
|
+
[Unreleased]: https://github.com/subquery/subql/compare/node/6.4.3...HEAD
|
|
1484
|
+
[6.4.3]: https://github.com/subquery/subql/compare/node/6.4.2...node/6.4.3
|
|
1485
|
+
[6.4.2]: https://github.com/subquery/subql/compare/node/6.4.0...node/6.4.2
|
|
1476
1486
|
[6.4.0]: https://github.com/subquery/subql/compare/node/6.3.5...node/6.4.0
|
|
1477
1487
|
[6.3.5]: https://github.com/subquery/subql/compare/node/6.3.4...node/6.3.5
|
|
1478
1488
|
[6.3.4]: https://github.com/subquery/subql/compare/node/6.3.3...node/6.3.4
|