Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-19 17:16:47 +05:00
parent 2689850df0
commit c8e19f4cd6
6 changed files with 74 additions and 5 deletions

View file

@ -127,4 +127,13 @@ internal object NFTDomainModule {
fun provideGetWalletNFTEnabledUseCase(walletsRepository: WalletsRepository): GetWalletNFTEnabledUseCase {
return GetWalletNFTEnabledUseCase(walletsRepository)
}
@Provides
@Singleton
fun provideClearNFTCacheUseCase(
nftRepository: NFTRepository,
currenciesRepository: CurrenciesRepository,
): ObserveAndClearNFTCacheIfNeedUseCase {
return ObserveAndClearNFTCacheIfNeedUseCase(nftRepository, currenciesRepository)
}
}