Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-29 14:35:24 +05:00
parent 9e80fccbbd
commit 665c0ff763
5 changed files with 28 additions and 8 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.domain.wallets.hot
import com.tangem.hot.sdk.model.*
interface HotWalletAccessor {
suspend fun signHashes(hotWalletId: HotWalletId, dataToSign: List<DataToSign>): List<SignedData>
suspend fun derivePublicKeys(hotWalletId: HotWalletId, request: DeriveWalletRequest): DerivedPublicKeyResponse
}