Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-08 15:36:53 +05:00
commit 2f7c5451e6
15 changed files with 233 additions and 28 deletions

View file

@ -120,6 +120,12 @@ sealed class AnalyticsParam {
override val token: String,
override val feeType: FeeType,
) : TxSentFrom("NFT"), TxData
data class SendWithSwap(
override val blockchain: String,
override val token: String,
override val feeType: FeeType,
) : TxSentFrom("Send&Swap"), TxData
}
sealed interface TxData {
@ -224,5 +230,9 @@ sealed class AnalyticsParam {
const val STANDARD = "Standard"
const val NO_COLLECTION = "No collection"
const val EMULATION_STATUS = "Emulation Status"
const val SEND_TOKEN = "Send Token"
const val RECEIVE_TOKEN = "Receive Token"
const val SEND_BLOCKCHAIN = "Send Blockchain"
const val RECEIVE_BLOCKCHAIN = "Receive Blockchain"
}
}