Updated on 2026-08-14
This commit is contained in:
parent
03f702640e
commit
abf6fc7d69
11 changed files with 129 additions and 11 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue