Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-30 12:29:05 +05:00
parent 4c51193221
commit c8a181c829
13 changed files with 135 additions and 73 deletions

View file

@ -26,4 +26,5 @@ data class SwapTransactionModel(
val toCryptoAmount: BigDecimal,
val provider: ExpressProvider,
val status: SwapStatusModel? = null,
val swapTxType: SwapTxType? = SwapTxType.Swap,
)

View file

@ -0,0 +1,6 @@
package com.tangem.domain.swap.models
enum class SwapTxType {
Swap,
SendWithSwap,
}