Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-20 11:27:43 -07:00
parent 5b516f2c9b
commit a82d8cdbba
43 changed files with 829 additions and 89 deletions

View file

@ -1,5 +1,6 @@
package com.tangem.features.hotwallet
import com.tangem.common.routing.AppRoute
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.models.wallet.UserWalletId
@ -9,9 +10,9 @@ interface CreateWalletBackupComponent : ComposableContentComponent {
data class Params(
val userWalletId: UserWalletId,
val isUpgradeFlow: Boolean,
val shouldSetAccessCode: Boolean,
val analyticsSource: String,
val analyticsAction: String,
val nextScreen: AppRoute? = null,
)
interface Factory : ComponentFactory<Params, CreateWalletBackupComponent>

View file

@ -1,5 +1,6 @@
package com.tangem.features.hotwallet
import com.tangem.common.routing.AppRoute
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.models.wallet.UserWalletId
@ -8,6 +9,7 @@ interface UpdateAccessCodeComponent : ComposableContentComponent {
data class Params(
val userWalletId: UserWalletId,
val source: String,
val nextScreen: AppRoute? = null,
)
interface Factory : ComponentFactory<Params, UpdateAccessCodeComponent>
}