Updated on 2026-08-14

This commit is contained in:
Tangem 2023-03-06 10:34:04 +03:00
parent c50c2a668b
commit b7510a7aa4
3 changed files with 26 additions and 1 deletions

View file

@ -46,6 +46,12 @@ sealed class Token(
params = mapOf("Token" to type.value),
)
class Bought(type: CurrencyType) : Token(
category = "Token",
event = "Token bought",
params = mapOf("Token" to type.value),
)
sealed class Receive(
event: String,
params: Map<String, String> = mapOf(),