Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-05 14:46:29 +04:00
parent b3b7a6feac
commit 509d1ffd3c
15 changed files with 136 additions and 16 deletions

View file

@ -18,7 +18,7 @@ data class HotCryptoResponse(
@Json(name = "network_id") val networkId: String,
@Json(name = "current_price") val currentPrice: BigDecimal,
@Json(name = "price_change_percentage_24h") val priceChangePercentage: BigDecimal,
@Json(name = "contractAddress") val contractAddress: String? = null, // specific for token
@Json(name = "contract_address") val contractAddress: String? = null, // specific for token
@Json(name = "decimal_count") val decimalCount: Int? = null, // specific for token
)
}