Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-06 15:59:41 +05:00
parent 804e4eca23
commit fd018a73f9
21 changed files with 918 additions and 79 deletions

View file

@ -38,4 +38,8 @@ sealed interface AccountStatus {
fun flattenCurrencies(): List<CryptoCurrencyStatus> = when (this) {
is CryptoPortfolio -> tokenList.flattenCurrencies()
}
fun getCryptoTokenList(): TokenList = when (this) {
is CryptoPortfolio -> tokenList
}
}