Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-03 12:22:00 +05:00
parent 2f5b70dfaa
commit 402167c31e
11 changed files with 149 additions and 72 deletions

View file

@ -2,6 +2,7 @@ package com.tangem.features.send.v2.api.entity
import androidx.compose.runtime.Immutable
import com.tangem.blockchain.common.transaction.Fee
import com.tangem.blockchain.common.transaction.TransactionFee
import com.tangem.core.ui.extensions.TextReference
import com.tangem.domain.appcurrency.model.AppCurrency
import com.tangem.domain.transaction.error.GetFeeError
@ -17,6 +18,7 @@ sealed class FeeSelectorUM {
data class Error(val error: GetFeeError) : FeeSelectorUM()
data class Content(
val fees: TransactionFee,
val feeItems: ImmutableList<FeeItem>,
val selectedFeeItem: FeeItem,
val isFeeApproximate: Boolean,
@ -37,7 +39,7 @@ data class FeeFiatRateUM(
sealed class FeeItem {
abstract val fee: Fee
fun isSame(other: FeeItem): Boolean {
fun isSameClass(other: FeeItem): Boolean {
return this::class == other::class
}