Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-27 17:44:05 +05:00
parent b4e9c23f6d
commit 4fb12ce1ff
23 changed files with 415 additions and 84 deletions

View file

@ -10,6 +10,8 @@ interface CreateWalletBackupComponent : ComposableContentComponent {
val userWalletId: UserWalletId,
val isUpgradeFlow: Boolean,
val shouldSetAccessCode: Boolean,
val analyticsSource: String,
val analyticsAction: String,
)
interface Factory : ComponentFactory<Params, CreateWalletBackupComponent>

View file

@ -7,6 +7,7 @@ import com.tangem.domain.models.wallet.UserWalletId
interface UpdateAccessCodeComponent : ComposableContentComponent {
data class Params(
val userWalletId: UserWalletId,
val source: String,
)
interface Factory : ComponentFactory<Params, UpdateAccessCodeComponent>
}