Updated on 2026-08-14

This commit is contained in:
Tangem 2026-02-20 14:48:19 +05:00
parent b94e3f814b
commit 5e10c943a0
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)
}
}