Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-21 17:21:54 +02:00
parent b8f3d5315f
commit 54e094abac
8 changed files with 145 additions and 4 deletions

View file

@ -187,6 +187,10 @@ sealed class AnalyticsParam {
Pending(value = "Pending"),
}
enum class EnsStatus(val value: String) {
EMPTY("Empty"), FULL("Full")
}
companion object Key {
const val BLOCKCHAIN = "Blockchain"
const val TOKEN_PARAM = "Token"
@ -235,5 +239,7 @@ sealed class AnalyticsParam {
const val SEND_BLOCKCHAIN = "Send Blockchain"
const val RECEIVE_BLOCKCHAIN = "Receive Blockchain"
const val CHOSEN_TOKEN = "Token Chosen"
const val ENS = "ENS"
const val ENS_ADDRESS = "ENS Address"
}
}