Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-24 16:21:28 +08:00
parent 564ab852c2
commit 575389311f
13 changed files with 333 additions and 170 deletions

View file

@ -70,4 +70,12 @@ internal object TokensDomainModule {
): ApplyTokenListSortingUseCase {
return ApplyTokenListSortingUseCase(currenciesRepository, dispatchers)
}
@Provides
@ViewModelScoped
fun provideGetCryptoCurrencyActionsUseCase(
dispatchers: CoroutineDispatcherProvider,
): GetCryptoCurrencyActionsUseCase {
return GetCryptoCurrencyActionsUseCase(dispatchers)
}
}