Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-08 14:20:04 +05:00
parent 03f702640e
commit abf6fc7d69
11 changed files with 129 additions and 11 deletions

View file

@ -136,6 +136,30 @@ sealed class TokenScreenAnalyticsEvent(
status = status,
blockchain = blockchain,
)
class ButtonAddFunds(
token: String,
blockchain: String,
derivationIndex: Int? = null,
) : ButtonWithParams(
event = "Button - Add Funds",
token = token,
status = null,
blockchain = blockchain,
derivationIndex = derivationIndex,
)
class ButtonTransfer(
token: String,
blockchain: String,
derivationIndex: Int? = null,
) : ButtonWithParams(
event = "Button - Transfer",
token = token,
status = null,
blockchain = blockchain,
derivationIndex = derivationIndex,
)
}
class ActionButtonDisabled(