Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-25 16:38:32 +05:00
parent 6e2ad61589
commit 84153dd63b
7 changed files with 52 additions and 21 deletions

View file

@ -3,6 +3,7 @@ package com.tangem.tap.di.domain
import com.tangem.domain.hotwallet.CheckHotWalletUpgradeBannerUseCase
import com.tangem.domain.hotwallet.CloseHotWalletUpgradeBannerUseCase
import com.tangem.domain.hotwallet.GetAccessCodeSkippedUseCase
import com.tangem.domain.hotwallet.GetUpgradeBannerClosureTimestampUseCase
import com.tangem.domain.hotwallet.IsHotWalletCreationSupported
import com.tangem.domain.hotwallet.IsAccessCodeSimpleUseCase
import com.tangem.domain.hotwallet.SetAccessCodeSkippedUseCase
@ -67,4 +68,12 @@ internal object HotWalletDomainModule {
): ShouldShowUpgradeHotWalletBannerUseCase {
return ShouldShowUpgradeHotWalletBannerUseCase(hotWalletRepository)
}
@Provides
@Singleton
fun provideGetUpgradeBannerClosureTimestampUseCase(
hotWalletRepository: HotWalletRepository,
): GetUpgradeBannerClosureTimestampUseCase {
return GetUpgradeBannerClosureTimestampUseCase(hotWalletRepository)
}
}