Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-06 21:14:08 +03:00
parent 182aa24095
commit 94a9b132a2
23 changed files with 458 additions and 60 deletions

View file

@ -289,4 +289,18 @@ interface WalletManagersFacade {
* value. Otherwise always return true
*/
suspend fun isAccountInitialized(userWalletId: UserWalletId, network: Network): Boolean
// region Dynamic Addresses
suspend fun enableXpubMode(userWalletId: UserWalletId, network: Network, xpub: String): SimpleResult
suspend fun disableXpubMode(userWalletId: UserWalletId, network: Network): SimpleResult
suspend fun getDynamicAddressesReceiveAddress(userWalletId: UserWalletId, network: Network): String?
suspend fun getDynamicAddressesLastUsedReceiveAddress(userWalletId: UserWalletId, network: Network): String?
suspend fun hasDynamicAddressesNonBaseBalances(userWalletId: UserWalletId, network: Network): Boolean
// endregion Dynamic Addresses
}