Updated on 2026-08-14

This commit is contained in:
Tangem 2026-01-22 16:14:14 +03:00
parent 081128f2cf
commit 63b07cccc3
53 changed files with 614 additions and 464 deletions

View file

@ -9,6 +9,7 @@ android {
}
dependencies {
implementation(projects.common.routing)
/* Project - Domain */
implementation(projects.domain.models)

View file

@ -2,4 +2,5 @@ package com.tangem.features.hotwallet
interface HotWalletFeatureToggles {
val isHotWalletEnabled: Boolean
val isWalletCreationRestrictionEnabled: Boolean
}

View file

@ -8,6 +8,7 @@ interface WalletBackupComponent : ComposableContentComponent {
data class Params(
val userWalletId: UserWalletId,
val isColdWalletOptionShown: Boolean,
)
interface Factory : ComponentFactory<Params, WalletBackupComponent>