Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-20 13:01:49 +05:00
parent 92c95095cc
commit fbfd7476fa
20 changed files with 430 additions and 66 deletions

View file

@ -148,4 +148,32 @@ internal object YieldSupplyDomainModule {
currenciesRepository = currenciesRepository,
)
}
@Provides
@Singleton
fun provideYieldSupplyGetCurrentFeeUseCase(
feeRepository: FeeRepository,
quotesRepository: QuotesRepository,
currenciesRepository: CurrenciesRepository,
): YieldSupplyGetCurrentFeeUseCase {
return YieldSupplyGetCurrentFeeUseCase(
feeRepository = feeRepository,
quotesRepository = quotesRepository,
currenciesRepository = currenciesRepository,
)
}
@Provides
@Singleton
fun provideYieldSupplyGetMaxFeeUseCase(
yieldSupplyRepository: YieldSupplyRepository,
quotesRepository: QuotesRepository,
currenciesRepository: CurrenciesRepository,
): YieldSupplyGetMaxFeeUseCase {
return YieldSupplyGetMaxFeeUseCase(
yieldSupplyRepository = yieldSupplyRepository,
quotesRepository = quotesRepository,
currenciesRepository = currenciesRepository,
)
}
}