Skip to content

Commit

Permalink
Update sdk-nstjs version
Browse files Browse the repository at this point in the history
  • Loading branch information
danielailie committed Mar 6, 2023
1 parent 561c8e0 commit 1bff459
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 13 deletions.
71 changes: 63 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@golevelup/nestjs-rabbitmq": "3.4.0",
"@multiversx/sdk-core": "11.2.0",
"@multiversx/sdk-native-auth-server": "1.0.5",
"@multiversx/sdk-nestjs": "0.3.14",
"@multiversx/sdk-nestjs": "0.4.4",
"@multiversx/sdk-network-providers": "^1.2.1",
"@nestjs/apollo": "^10.1.7",
"@nestjs/common": "9.3.9",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class MxExtrasApiService {
) {
this.url = this.apiConfigService.getExtrasApiUrl();
this.nativeAuthSigner = new NativeAuthSigner({
host: 'NftService',
origin: 'NftService',
apiUrl: this.apiConfigService.getApiUrl(),
signerPrivateKeyPath: getFilePathFromDist(mxConfig.pemFileName),
});
Expand Down
2 changes: 1 addition & 1 deletion src/common/services/mx-communication/mx-tools.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class MxToolsService {
) {
this.url = this.apiConfigService.getToolsUrl();
this.nativeAuthSigner = new NativeAuthSigner({
host: 'NftService',
origin: 'NftService',
apiUrl: this.apiConfigService.getApiUrl(),
signerPrivateKeyPath: getFilePathFromDist(mxConfig.pemFileName),
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CpuProfiler } from '@elrondnetwork/erdnest';
import { CpuProfiler } from '@multiversx/sdk-nestjs';
import { Injectable, Logger } from '@nestjs/common';
import { AssetsRedisHandler } from 'src/modules/assets';
import { AssetsCollectionsForOwnerRedisHandler } from 'src/modules/assets/loaders/assets-collection-for-owner.redis-handler';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class CommonRabbitModule {
},
}),
],
providers: [Logger, RabbitPublisherService],
providers: [RabbitPublisherService],
exports: [RabbitPublisherService],
};
}
Expand Down

0 comments on commit 1bff459

Please sign in to comment.