Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
41fd3e4
Enhance MexTokenService to calculate and store token volumes for base…
cfaur09 May 7, 2025
7ab7f7c
extend aws s3 config
gabrielmatei May 19, 2025
a354d97
update configs
gabrielmatei May 19, 2025
859df5f
update s3 configs
gabrielmatei May 19, 2025
3cc0a8a
add support for new NFT events
cfaur09 May 23, 2025
cb81ea2
add maximum process retries
cfaur09 May 23, 2025
4086661
add unit tests
cfaur09 May 23, 2025
40c5430
ferch token price from highest liquidity pool
cfaur09 May 26, 2025
0c8058c
Merge pull request #1497 from multiversx/extend-aws-s3-config
dragos-rebegea Jun 2, 2025
b956bbf
Merge pull request #1493 from multiversx/API-590-fix-mex-token-previo…
dragos-rebegea Jun 2, 2025
8eed916
Merge pull request #1500 from multiversx/API-610-fetch-token-price-fr…
dragos-rebegea Jun 3, 2025
9a55c0b
Merge branch 'development' into API-603-add-new-nfts-events
cfaur09 Jun 3, 2025
b9871fa
emit also deleteCacheKeys
cfaur09 Jun 3, 2025
e991056
undo process reries
cfaur09 Jun 3, 2025
0ce343c
fix tests
cfaur09 Jun 3, 2025
b0d6b36
Merge pull request #1499 from multiversx/API-603-add-new-nfts-events
dragos-rebegea Jun 3, 2025
342940b
Proposer fix (#1498)
dragos-rebegea Jun 3, 2025
cbed389
add execution order sorting using miniBlocksDetails from Elasticsearc…
cfaur09 Jun 3, 2025
0e009a0
fix userUndelegatedList field (#1507)
cfaur09 Jun 4, 2025
ccf1712
collections count subType required false fix (#1509)
cfaur09 Jun 4, 2025
87a4c5a
tokens supply format from plugin (#1505)
bogdan-rosianu Jun 4, 2025
a3c8ddf
fix collection set fields (#1510)
cfaur09 Jun 6, 2025
d3776fc
add configurable response compression with gzip deflate support + up…
cfaur09 Jun 18, 2025
35debe5
Integrate last sdk nestjs (#1516)
stefangutica Jul 1, 2025
918e8de
Packages security issues 2 (#1517)
stefangutica Jul 2, 2025
b12917e
Api 672 add timestampMs field into transaction response (#1518)
cfaur09 Jul 11, 2025
a8dafce
Add normalizeTimestampMs method for timestamp conversion (#1519)
cfaur09 Jul 14, 2025
26038f1
Enhance account filtering by adding 'withBalance' query option to acc…
cfaur09 Jul 23, 2025
abd2efd
add events filtered by order (#1523)
cfaur09 Jul 23, 2025
8cbb2d7
Refactor content type validation in NftMediaService to handle media t…
cfaur09 Aug 11, 2025
70ffe7e
use events index instead of logs (#1514)
bogdan-rosianu Aug 13, 2025
56416f5
Merge branch 'development' into merge-dev-feat-sov-aug22
bogdan-rosianu Aug 22, 2025
2e02ca6
fixes after merge + new sdknestjs versions
bogdan-rosianu Aug 22, 2025
f571c5f
remove test file
bogdan-rosianu Aug 22, 2025
48b84d0
fix tx value parsing
bogdan-rosianu Aug 25, 2025
5227208
treat missing receiver
bogdan-rosianu Aug 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
1 change: 1 addition & 0 deletions config/config.devnet-old.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ aws:
s3Secret: ''
s3Bucket: 'devnet-old-media.elrond.com'
s3Region: ''
s3Endpoint: ''
urls:
self: 'https://devnet-old-api.multiversx.com'
elastic:
Expand Down
8 changes: 8 additions & 0 deletions config/config.devnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ features:
durationThresholdMs: 5000
failureCountThreshold: 5
resetTimeoutMs: 30000
elasticMigratedIndices:
logs: 'events'
statusChecker:
enabled: false
thresholds:
Expand Down Expand Up @@ -127,6 +129,7 @@ aws:
s3Secret: ''
s3Bucket: 'devnet-media.elrond.com'
s3Region: ''
s3Endpoint: ''
urls:
self: 'https://devnet-api.multiversx.com'
elastic:
Expand Down Expand Up @@ -183,3 +186,8 @@ chainSettings:
nftProcess:
parallelism: 1
maxRetries: 3
compression:
enabled: true
level: 6
threshold: 1024
chunkSize: 16384
3 changes: 3 additions & 0 deletions config/config.e2e.mainnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ features:
durationThresholdMs: 5000
failureCountThreshold: 5
resetTimeoutMs: 30000
elasticMigratedIndices:
logs: 'events'
statusChecker:
enabled: false
thresholds:
Expand Down Expand Up @@ -127,6 +129,7 @@ aws:
s3Secret: ''
s3Bucket: 'media.elrond.com'
s3Region: ''
s3Endpoint: ''
urls:
self: 'http://localhost:3001'
elastic:
Expand Down
8 changes: 8 additions & 0 deletions config/config.mainnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ features:
durationThresholdMs: 5000
failureCountThreshold: 5
resetTimeoutMs: 30000
elasticMigratedIndices:
logs: 'events'
statusChecker:
enabled: false
thresholds:
Expand Down Expand Up @@ -131,6 +133,7 @@ aws:
s3Secret: ''
s3Bucket: 'media.elrond.com'
s3Region: ''
s3Endpoint: ''
urls:
self: 'https://api.multiversx.com'
elastic:
Expand Down Expand Up @@ -187,3 +190,8 @@ chainSettings:
nftProcess:
parallelism: 1
maxRetries: 3
compression:
enabled: true
level: 6
threshold: 1024
chunkSize: 16384
8 changes: 8 additions & 0 deletions config/config.testnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ features:
durationThresholdMs: 5000
failureCountThreshold: 5
resetTimeoutMs: 30000
elasticMigratedIndices:
logs: 'events'
statusChecker:
enabled: false
thresholds:
Expand Down Expand Up @@ -130,6 +132,7 @@ aws:
s3Secret: ''
s3Bucket: 'testnet-media.elrond.com'
s3Region: ''
s3Endpoint: ''
urls:
self: 'https://testnet-api.multiversx.com'
elastic:
Expand Down Expand Up @@ -186,3 +189,8 @@ chainSettings:
nftProcess:
parallelism: 1
maxRetries: 3
compression:
enabled: true
level: 6
threshold: 1024
chunkSize: 16384
Loading