Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-24 19:49:20 +04:00
parent 63698bed23
commit 189cb19ff2
4 changed files with 138 additions and 6 deletions

View file

@ -1,9 +1,9 @@
package com.tangem.tap.di.domain
import com.tangem.core.analytics.api.AnalyticsEventHandler
import com.tangem.domain.account.repository.AccountsCRUDRepository
import com.tangem.domain.common.wallets.UserWalletsListRepository
import com.tangem.domain.redux.ReduxStateHolder
import com.tangem.domain.tokens.repository.CurrenciesRepository
import com.tangem.domain.transaction.WalletAddressServiceRepository
import com.tangem.domain.transaction.usecase.ParseSharedAddressUseCase
import com.tangem.domain.transaction.usecase.ValidateWalletAddressUseCase
@ -272,11 +272,11 @@ internal object WalletsDomainModule {
@Singleton
fun providesSetNotificationsEnabledUseCase(
walletsRepository: WalletsRepository,
currenciesRepository: CurrenciesRepository,
accountsCRUDRepository: AccountsCRUDRepository,
): SetNotificationsEnabledUseCase {
return SetNotificationsEnabledUseCase(
walletsRepository = walletsRepository,
currenciesRepository = currenciesRepository,
accountsCRUDRepository = accountsCRUDRepository,
)
}