Skip to content

Commit

Permalink
Merge branch 'development' into SERVICES-2084-remove-support-for-nft-…
Browse files Browse the repository at this point in the history
…collection-scam-from-plugins
  • Loading branch information
tanghel committed Feb 26, 2024
2 parents b8605af + 3efb2dc commit 726a7c9
Show file tree
Hide file tree
Showing 31 changed files with 449 additions and 148 deletions.
16 changes: 10 additions & 6 deletions config/config.devnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ api:
public: true
private: true
cron:
transactionProcessor: true
transactionProcessorMaxLookBehind: 100
transactionCompleted: false
transactionCompletedMaxLookBehind: 100
transactionBatch: false
transactionBatchMaxLookBehind: 100
cacheWarmer: true
fastWarm: true
queueWorker: true
Expand Down Expand Up @@ -60,6 +54,16 @@ features:
admins:
- ''
jwtSecret: ''
transactionProcessor:
enabled: false
maxLookBehind: 100
transactionCompleted:
enabled: false
maxLookBehind: 100
logLevel: 'Error'
transactionBatch:
enabled: true
maxLookBehind: 100
image:
width: 600
height: 600
Expand Down
3 changes: 3 additions & 0 deletions config/config.e2e.mainnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ features:
maxExpirySeconds: 86400
acceptedOrigins:
- ''
deepHistory:
enabled: false
url: ''
cron:
transactionProcessor: false
transactionProcessorMaxLookBehind: 1000
Expand Down
19 changes: 13 additions & 6 deletions config/config.mainnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ api:
public: true
private: true
cron:
transactionProcessor: true
transactionProcessorMaxLookBehind: 1000
transactionCompleted: false
transactionCompletedMaxLookBehind: 100
transactionBatch: true
transactionBatchMaxLookBehind: 100
cacheWarmer: true
fastWarm: false
queueWorker: true
Expand Down Expand Up @@ -60,6 +54,19 @@ features:
admins:
- ''
jwtSecret: ''
transactionProcessor:
enabled: false
maxLookBehind: 1000
transactionCompleted:
enabled: false
maxLookBehind: 1000
logLevel: 'Error'
transactionBatch:
enabled: false
maxLookBehind: 1000
deepHistory:
enabled: false
url: ''
image:
width: 600
height: 600
Expand Down
19 changes: 13 additions & 6 deletions config/config.testnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ api:
public: true
private: true
cron:
transactionProcessor: true
transactionProcessorMaxLookBehind: 100
transactionCompleted: false
transactionCompletedMaxLookBehind: 100
transactionBatch: false
transactionBatchMaxLookBehind: 100
cacheWarmer: true
fastWarm: true
queueWorker: true
Expand Down Expand Up @@ -60,6 +54,19 @@ features:
admins:
- ''
jwtSecret: ''
transactionProcessor:
enabled: false
maxLookBehind: 100
transactionCompleted:
enabled: false
maxLookBehind: 100
logLevel: 'Error'
transactionBatch:
enabled: true
maxLookBehind: 100
deepHistory:
enabled: false
url: ''
image:
width: 600
height: 600
Expand Down
136 changes: 73 additions & 63 deletions package-lock.json

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

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@
"@golevelup/nestjs-rabbitmq": "^4.0.0",
"@multiversx/sdk-core": "^12.2.1",
"@multiversx/sdk-data-api-client": "^0.7.0",
"@multiversx/sdk-nestjs-auth": "^3.1.2",
"@multiversx/sdk-nestjs-cache": "^3.1.2",
"@multiversx/sdk-nestjs-common": "^3.1.2",
"@multiversx/sdk-nestjs-elastic": "^3.1.2",
"@multiversx/sdk-nestjs-http": "^3.1.2",
"@multiversx/sdk-nestjs-monitoring": "^3.1.2",
"@multiversx/sdk-nestjs-rabbitmq": "^3.1.2",
"@multiversx/sdk-nestjs-redis": "^3.1.2",
"@multiversx/sdk-nestjs-auth": "^3.1.6",
"@multiversx/sdk-nestjs-cache": "^3.1.6",
"@multiversx/sdk-nestjs-common": "^3.1.6",
"@multiversx/sdk-nestjs-elastic": "^3.1.6",
"@multiversx/sdk-nestjs-http": "^3.1.6",
"@multiversx/sdk-nestjs-monitoring": "^3.1.6",
"@multiversx/sdk-nestjs-rabbitmq": "^3.1.6",
"@multiversx/sdk-nestjs-redis": "^3.1.6",
"@multiversx/sdk-wallet": "^4.0.0",
"@nestjs/apollo": "12.0.11",
"@nestjs/common": "10.2.0",
Expand Down
Loading

0 comments on commit 726a7c9

Please sign in to comment.