Updated on 2026-08-14

This commit is contained in:
Tangem 2025-03-28 17:00:02 +04:00
parent c38c185a2d
commit 732df0ec4f
11 changed files with 430 additions and 6 deletions

View file

@ -11,7 +11,9 @@ interface UserWalletsStore {
val userWallets: Flow<List<UserWallet>>
suspend fun getSyncOrNull(key: UserWalletId): UserWallet?
fun getSyncOrNull(key: UserWalletId): UserWallet?
suspend fun getSyncStrict(key: UserWalletId): UserWallet
suspend fun getAllSyncOrNull(): List<UserWallet>?