@subql/node-algorand 3.14.5-0 → 3.15.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.
|
@@ -34,10 +34,12 @@ ReindexFeatureModule = __decorate([
|
|
|
34
34
|
dynamic_ds_service_1.DynamicDsService,
|
|
35
35
|
node_core_1.PoiService,
|
|
36
36
|
ds_processor_service_1.DsProcessorService,
|
|
37
|
+
node_core_1.ConnectionPoolStateManager,
|
|
38
|
+
node_core_1.ConnectionPoolService,
|
|
37
39
|
{
|
|
38
|
-
// Used to work with DI for unfinalizedBlocksService but not used with reindex
|
|
39
40
|
provide: algorand_1.AlgorandApiService,
|
|
40
|
-
useFactory:
|
|
41
|
+
useFactory: algorand_1.AlgorandApiService.init,
|
|
42
|
+
inject: ['ISubqueryProject', node_core_1.ConnectionPoolService, event_emitter_1.EventEmitter2],
|
|
41
43
|
},
|
|
42
44
|
schedule_1.SchedulerRegistry,
|
|
43
45
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reindex.module.js","sourceRoot":"","sources":["../../src/subcommands/reindex.module.ts"],"names":[],"mappings":";AAAA,8DAA8D;AAC9D,mCAAmC;;;;;;;;;AAEnC,2CAAwC;AACxC,yDAA0E;AAC1E,+CAAqD;AACrD,
|
|
1
|
+
{"version":3,"file":"reindex.module.js","sourceRoot":"","sources":["../../src/subcommands/reindex.module.ts"],"names":[],"mappings":";AAAA,8DAA8D;AAC9D,mCAAmC;;;;;;;;;AAEnC,2CAAwC;AACxC,yDAA0E;AAC1E,+CAAqD;AACrD,gDAU0B;AAC1B,oDAA+C;AAC/C,0CAAiD;AACjD,oEAAgE;AAChE,0EAAqE;AACrE,sEAAiE;AA0B1D,IAAM,oBAAoB,GAA1B,MAAM,oBAAoB;CAAG,CAAA;AAAvB,oBAAoB;IAxBhC,IAAA,eAAM,EAAC;QACN,SAAS,EAAE;YACT;gBACE,OAAO,EAAE,qBAAqB;gBAC9B,UAAU,EAAE,6BAAiB;gBAC7B,MAAM,EAAE,CAAC,sBAAU,EAAE,6BAAa,EAAE,4BAAiB,EAAE,uBAAS,CAAC;aAClE;YACD,wBAAY;YACZ,0BAAc;YACd,6BAAiB;YACjB,qCAAgB;YAChB,sBAAU;YACV,yCAAkB;YAClB,sCAA0B;YAC1B,iCAAqB;YACrB;gBACE,OAAO,EAAE,6BAAkB;gBAC3B,UAAU,EAAE,6BAAkB,CAAC,IAAI;gBACnC,MAAM,EAAE,CAAC,kBAAkB,EAAE,iCAAqB,EAAE,6BAAa,CAAC;aACnE;YACD,4BAAiB;SAClB;QACD,WAAW,EAAE,EAAE;KAChB,CAAC;GACW,oBAAoB,CAAG;AAAvB,oDAAoB;AAW1B,IAAM,aAAa,GAAnB,MAAM,aAAa;CAAG,CAAA;AAAhB,aAAa;IATzB,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,oBAAQ,CAAC,OAAO,EAAE;YAClB,kCAAe,CAAC,QAAQ,EAAE;YAC1B,oBAAoB;YACpB,kCAAkB,CAAC,OAAO,EAAE;SAC7B;QACD,WAAW,EAAE,EAAE;KAChB,CAAC;GACW,aAAa,CAAG;AAAhB,sCAAa","sourcesContent":["// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors\n// SPDX-License-Identifier: GPL-3.0\n\nimport { Module } from '@nestjs/common';\nimport { EventEmitter2, EventEmitterModule } from '@nestjs/event-emitter';\nimport { SchedulerRegistry } from '@nestjs/schedule';\nimport {\n ConnectionPoolService,\n ConnectionPoolStateManager,\n DbModule,\n ForceCleanService,\n NodeConfig,\n PoiService,\n ReindexService,\n storeModelFactory,\n StoreService,\n} from '@subql/node-core';\nimport { Sequelize } from '@subql/x-sequelize';\nimport { AlgorandApiService } from '../algorand';\nimport { ConfigureModule } from '../configure/configure.module';\nimport { DsProcessorService } from '../indexer/ds-processor.service';\nimport { DynamicDsService } from '../indexer/dynamic-ds.service';\n\n@Module({\n providers: [\n {\n provide: 'IStoreModelProvider',\n useFactory: storeModelFactory,\n inject: [NodeConfig, EventEmitter2, SchedulerRegistry, Sequelize],\n },\n StoreService,\n ReindexService,\n ForceCleanService,\n DynamicDsService,\n PoiService,\n DsProcessorService,\n ConnectionPoolStateManager,\n ConnectionPoolService,\n {\n provide: AlgorandApiService,\n useFactory: AlgorandApiService.init,\n inject: ['ISubqueryProject', ConnectionPoolService, EventEmitter2],\n },\n SchedulerRegistry,\n ],\n controllers: [],\n})\nexport class ReindexFeatureModule {}\n\n@Module({\n imports: [\n DbModule.forRoot(),\n ConfigureModule.register(),\n ReindexFeatureModule,\n EventEmitterModule.forRoot(),\n ],\n controllers: [],\n})\nexport class ReindexModule {}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-algorand",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.15.1-0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Ian He",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@nestjs/platform-express": "^9.4.0",
|
|
26
26
|
"@nestjs/schedule": "^3.0.1",
|
|
27
27
|
"@subql/common": "^5.2.1",
|
|
28
|
-
"@subql/common-algorand": "4.2.5
|
|
28
|
+
"@subql/common-algorand": "4.2.5",
|
|
29
29
|
"@subql/node-core": "^15.0.3",
|
|
30
30
|
"@subql/types-algorand": "4.0.1",
|
|
31
31
|
"algosdk": "^2.8.0",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"/dist",
|
|
54
54
|
"/bin"
|
|
55
55
|
],
|
|
56
|
-
"stableVersion": "3.
|
|
56
|
+
"stableVersion": "3.15.0"
|
|
57
57
|
}
|