Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-20 20:57:03 +02:00
parent 8eb46c9672
commit bb0aa53982
14 changed files with 294 additions and 27 deletions

View file

@ -40,5 +40,6 @@ sealed class SendDestinationComponentParams {
val blockClickEnableFlow: StateFlow<Boolean>,
val predefinedValues: PredefinedValues,
override val isAllowSelfSend: Boolean = false,
val isAddContactAvailable: Boolean = false,
) : SendDestinationComponentParams()
}

View file

@ -2,6 +2,7 @@ package com.tangem.features.send.api.subcomponents.destination.entity
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.runtime.Immutable
import com.tangem.common.ui.account.AccountIconUM
import com.tangem.core.ui.extensions.TextReference
import com.tangem.utils.toBriefAddressFormat
@ -24,6 +25,8 @@ sealed class DestinationTextFieldUM {
val isValuePasted: Boolean,
// if value is human-readable address, this field contains the actual blockchain address
val blockchainAddress: String? = null,
val contactName: String? = null,
val contactIcon: AccountIconUM.CryptoPortfolio? = null,
) : DestinationTextFieldUM() {
val actualAddress: String