Updated on 2026-08-14

This commit is contained in:
Tangem 2026-03-24 16:36:05 +07:00
parent d376a7118d
commit c7e4ff0598
27 changed files with 245 additions and 57 deletions

View file

@ -70,6 +70,7 @@ interface TangemExpressApi {
@Query("refundExtraId") refundExtraId: String?, // for cex only
@Query("partnerOperationType") partnerOperationType: String?, // swap/ swap-and-send
@Query("toExtraId") toExtraId: String?, // swap-and-send memo
@Query("quoteId") quoteId: String?, // swap-and-send memo
): ApiResponse<ExchangeDataResponse>
@GET("exchange-status")

View file

@ -25,4 +25,7 @@ data class ExchangeQuoteResponse(
@Json(name = "minAmount")
val minAmount: BigDecimal,
@Json(name = "quoteId")
val quoteId: String? = null,
)