Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-12 12:48:33 +03:00
parent b0e07c0258
commit f5696659f2
5 changed files with 48 additions and 39 deletions

View file

@ -1,11 +1,11 @@
package com.tangem.tap.di.domain
import com.tangem.domain.dynamicaddresses.CreateConsolidationTransactionUseCase
import com.tangem.domain.dynamicaddresses.DisableDynamicAddressesUseCase
import com.tangem.domain.dynamicaddresses.EnableDynamicAddressesUseCase
import com.tangem.domain.dynamicaddresses.GetDynamicAddressesStatusUseCase
import com.tangem.domain.dynamicaddresses.GetDynamicReceiveAddressUseCase
import com.tangem.domain.dynamicaddresses.GetDerivedXpubUseCase
import com.tangem.domain.dynamicaddresses.IsDynamicAddressesConsolidationRequiredUseCase
import com.tangem.domain.dynamicaddresses.IsXpubSupportedUseCase
import com.tangem.domain.dynamicaddresses.repository.ConsolidationRepository
import com.tangem.domain.dynamicaddresses.repository.DynamicAddressesRepository
@ -31,10 +31,10 @@ internal object DynamicAddressesDomainModule {
@Provides
@Singleton
fun provideDisableDynamicAddressesUseCase(
fun provideIsDynamicAddressesConsolidationRequiredUseCase(
dynamicAddressesRepository: DynamicAddressesRepository,
): DisableDynamicAddressesUseCase {
return DisableDynamicAddressesUseCase(dynamicAddressesRepository)
): IsDynamicAddressesConsolidationRequiredUseCase {
return IsDynamicAddressesConsolidationRequiredUseCase(dynamicAddressesRepository)
}
@Provides