Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-26 19:25:07 +04:00
parent a73dfc58af
commit 5ce5d3dc6c
20 changed files with 877 additions and 11 deletions

View file

@ -75,6 +75,9 @@ data class TxDetails(
@Json(name = "gas")
val gas: String?,
@Json(name = "allowanceContract")
val allowanceContract: String? = null,
)
@JsonClass(generateAdapter = false)

View file

@ -28,4 +28,7 @@ data class ExchangeQuoteResponse(
@Json(name = "quoteId")
val quoteId: String? = null,
@Json(name = "txType")
val txType: TxType? = null,
)