Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-12 08:05:42 +01:00
parent 4aa267c951
commit 0548571089
41 changed files with 573 additions and 347 deletions

View file

@ -45,4 +45,14 @@ object EarnDomainModule {
fun provideGetEarnTokensBatchFlowUseCase(repository: EarnRepository): GetEarnTokensBatchFlowUseCase {
return GetEarnTokensBatchFlowUseCase(repository)
}
@Provides
fun provideGetEarnFilterUseCase(repository: EarnRepository): GetEarnFilterUseCase {
return GetEarnFilterUseCase(repository)
}
@Provides
fun provideSetEarnFilterUseCase(repository: EarnRepository): SetEarnFilterUseCase {
return SetEarnFilterUseCase(repository)
}
}