Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-15 10:39:50 +03:00
commit ce63bfb354
68 changed files with 1359 additions and 252 deletions

View file

@ -199,4 +199,30 @@ internal object YieldSupplyDomainModule {
yieldSupplyRepository = yieldSupplyRepository,
)
}
@Provides
@Singleton
fun provideYieldSupplyGetShouldShowMainPromoUseCase(
yieldSupplyRepository: YieldSupplyRepository,
): YieldSupplyGetShouldShowMainPromoUseCase {
return YieldSupplyGetShouldShowMainPromoUseCase(
yieldSupplyRepository = yieldSupplyRepository,
)
}
@Provides
@Singleton
fun provideYieldSupplySetShouldShowMainPromoUseCase(
yieldSupplyRepository: YieldSupplyRepository,
): YieldSupplySetShouldShowMainPromoUseCase {
return YieldSupplySetShouldShowMainPromoUseCase(
yieldSupplyRepository = yieldSupplyRepository,
)
}
@Provides
@Singleton
fun provideYieldSupplyGetDustMinAmountUseCase(): YieldSupplyGetDustMinAmountUseCase {
return YieldSupplyGetDustMinAmountUseCase()
}
}