Updated on 2026-08-14
This commit is contained in:
parent
72dfa81fcf
commit
9957e986e1
4 changed files with 11 additions and 11 deletions
|
|
@ -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),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue