Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-21 16:17:07 +05:00
parent 755f18247a
commit 6ad742d678
4 changed files with 4 additions and 2 deletions

View file

@ -69,6 +69,7 @@ dependencies {
implementation(projects.domain.account)
implementation(projects.domain.account.status)
implementation(projects.domain.marketing.models)
implementation(projects.domain.onramp.models)
/** Common */
implementation(projects.common.ui)

View file

@ -57,20 +57,19 @@ dependencies {
implementation(projects.domain.txhistory)
implementation(projects.domain.txhistory.models)
implementation(projects.domain.express.models)
implementation(projects.domain.account)
implementation(projects.domain.account.status)
implementation(projects.domain.card)
implementation(projects.domain.visa)
implementation(projects.domain.markets)
implementation(projects.domain.swap)
implementation(projects.domain.swap.models)
implementation(projects.domain.onramp.models)
/** Feature modules */
implementation(projects.features.swap.domain)
implementation(projects.features.swap.domain.api)
implementation(projects.features.swap.domain.models)
implementation(projects.features.wallet.api)
implementation(projects.features.swap.api)
implementation(projects.features.send.api)
implementation(projects.features.send.impl)
implementation(projects.features.feed.api)

View file

@ -178,6 +178,7 @@ internal class SwapModel @Inject constructor(
private val getSwapUiModeUseCase: GetSwapUiModeUseCase,
private val setSwapUiModeUseCase: SetSwapUiModeUseCase,
private val calculateAmountUseCase: CalculateAmountUseCase,
private val getCurrencyUSDQuoteUseCase: GetCurrencyUSDQuoteUseCase,
) : Model() {
private val params = paramsContainer.require<SwapComponent.Params>()

View file

@ -61,6 +61,7 @@ dependencies {
implementation(projects.domain.balanceHiding.models)
implementation(projects.domain.balanceHiding)
implementation(projects.domain.marketing.models)
implementation(projects.domain.onramp.models)
implementation(projects.libs.crypto)
/** Compose */