Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-15 15:08:07 +03:00
parent 24e0fb015b
commit 0662e31ed0
14 changed files with 252 additions and 6 deletions

View file

@ -8,4 +8,7 @@ interface UserWalletsStore {
val selectedUserWalletOrNull: UserWallet?
suspend fun getSyncOrNull(key: UserWalletId): UserWallet?
@Throws
suspend fun update(userWalletId: UserWalletId, update: suspend (UserWallet) -> UserWallet)
}