Updated on 2026-08-14

This commit is contained in:
Tangem 2025-12-12 14:18:29 +03:00
commit d44fcb3218
61 changed files with 1333 additions and 232 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()
}
}