Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-10 11:17:04 +04:00
parent 155e7e3d2c
commit e0a5bf6e9e
9 changed files with 63 additions and 28 deletions

View file

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