Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-10 15:12:05 +04:00
parent d5f9410905
commit 498e73d6df
16 changed files with 63 additions and 7 deletions

View file

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

View file

@ -35,6 +35,9 @@ data class ExchangeProvider(
@Json(name = "exchangeOnlyWithinSingleAddress")
val isExchangeOnlyWithinSingleAddress: Boolean = false,
@Json(name = "isExtraIdSupported")
val isExtraIdSupported: Boolean = false,
)
@JsonClass(generateAdapter = false)