Updated on 2026-08-14

This commit is contained in:
Tangem 2024-09-05 16:28:36 +03:00
parent 1e85dbe6f7
commit 1006477fd7
5 changed files with 46 additions and 22 deletions

View file

@ -4,6 +4,7 @@ import com.tangem.domain.card.repository.DerivationsRepository
import com.tangem.domain.markets.*
import com.tangem.domain.markets.repositories.MarketsTokenRepository
import com.tangem.domain.tokens.repository.CurrenciesRepository
import com.tangem.domain.tokens.repository.NetworksRepository
import com.tangem.domain.tokens.repository.QuotesRepository
import dagger.Module
import dagger.Provides
@ -53,7 +54,13 @@ object MarketsDomainModule {
derivationsRepository: DerivationsRepository,
marketsTokenRepository: MarketsTokenRepository,
currenciesRepository: CurrenciesRepository,
networksRepository: NetworksRepository,
): SaveMarketTokensUseCase {
return SaveMarketTokensUseCase(derivationsRepository, marketsTokenRepository, currenciesRepository)
return SaveMarketTokensUseCase(
derivationsRepository = derivationsRepository,
marketsTokenRepository = marketsTokenRepository,
currenciesRepository = currenciesRepository,
networksRepository = networksRepository,
)
}
}