Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-06 13:45:57 +05:00
parent 4f5d5bd2f2
commit 5a42d4a84d
8 changed files with 148 additions and 60 deletions

View file

@ -13,11 +13,17 @@ interface ChooseManagedTokensComponent : ComposableContentComponent {
val selectedCurrency: CryptoCurrency?,
val source: Source,
val showSendViaSwapNotification: Boolean,
val callback: ModelCallback? = null,
)
enum class Source {
SendViaSwap,
}
interface ModelCallback {
fun onResult()
fun onBack()
}
interface Factory : ComponentFactory<Params, ChooseManagedTokensComponent>
}