Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-25 14:57:55 +05:00
commit a335e8d8f4
21 changed files with 541 additions and 63 deletions

View file

@ -155,6 +155,7 @@ dependencies {
implementation(projects.domain.walletManager)
implementation(projects.domain.walletManager.models)
implementation(projects.domain.yieldSupply)
implementation(projects.domain.blockaid)
implementation(projects.common)
implementation(projects.common.routing)

View file

@ -1,5 +1,6 @@
package com.tangem.tap.di.domain
import com.tangem.domain.blockaid.BlockAidGasEstimate
import com.tangem.domain.transaction.FeeRepository
import com.tangem.domain.transaction.error.FeeErrorResolver
import com.tangem.domain.yield.supply.YieldSupplyTransactionRepository
@ -42,10 +43,12 @@ internal object YieldSupplyDomainModule {
fun provideYieldSupplyEstimateEnterFeeUseCase(
feeRepository: FeeRepository,
feeErrorResolver: FeeErrorResolver,
blockAidGasEstimate: BlockAidGasEstimate,
): YieldSupplyEstimateEnterFeeUseCase {
return YieldSupplyEstimateEnterFeeUseCase(
feeRepository = feeRepository,
feeErrorResolver = feeErrorResolver,
blockAidGasEstimate = blockAidGasEstimate,
)
}