Updated on 2026-08-14

This commit is contained in:
Tangem 2025-03-25 14:01:44 +02:00
parent 72dfa81fcf
commit 9957e986e1
4 changed files with 11 additions and 11 deletions

View file

@ -28,9 +28,9 @@ internal object TokenMarketListConverter : Converter<TokenMarketListResponse, Li
imageHost = imageHost,
tokenQuotesShort = TokenQuotesShort(
currentPrice = token.currentPrice,
h24ChangePercent = token.priceChangePercentage.h24.movePointLeft(2),
weekChangePercent = token.priceChangePercentage.week1.movePointLeft(2),
monthChangePercent = token.priceChangePercentage.day30.movePointLeft(2),
h24ChangePercent = token.priceChangePercentage?.h24?.movePointLeft(2),
weekChangePercent = token.priceChangePercentage?.week1?.movePointLeft(2),
monthChangePercent = token.priceChangePercentage?.day30?.movePointLeft(2),
),
tokenCharts = TokenMarket.Charts(h24 = null, week = null, month = null),
)