Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-20 11:43:43 +04:00
parent eb07388729
commit 3f6bcd3a0e
23 changed files with 226 additions and 101 deletions

View file

@ -4,9 +4,14 @@ import com.tangem.core.decompose.context.AppComponentContext
interface KycComponent {
fun launch()
fun launch(params: Params)
interface Factory {
fun create(appComponentContext: AppComponentContext): KycComponent
}
data class Params(
val targetAddress: String,
val cardId: String,
)
}