Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-01 23:22:34 +05:00
parent 941863f79b
commit 411a591509
18 changed files with 453 additions and 43 deletions

View file

@ -32,6 +32,13 @@ class TangemHotSDKProxy @Inject constructor() : TangemHotSdk {
override suspend fun exportBackup(unlockHotWallet: UnlockHotWallet): ByteArray =
callSdk { exportBackup(unlockHotWallet) }
override suspend fun clearUnlockContext(hotWalletId: HotWalletId) {
callSdk { clearUnlockContext(hotWalletId) }
}
override suspend fun getContextUnlock(unlockHotWallet: UnlockHotWallet): UnlockHotWallet =
callSdk { getContextUnlock(unlockHotWallet) }
override suspend fun delete(id: HotWalletId) = callSdk { delete(id) }
override suspend fun changeAuth(unlockHotWallet: UnlockHotWallet, auth: HotAuth): HotWalletId =