Updated on 2026-08-14
This commit is contained in:
parent
46650fac2c
commit
35253cded5
9 changed files with 79 additions and 69 deletions
|
|
@ -471,4 +471,20 @@ internal object WalletsDomainModule {
|
|||
yieldSupplyMarketRepository = yieldSupplyMarketRepository,
|
||||
)
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun provideGetWalletsForAutomaticallyPushEnablingUseCase(
|
||||
userWalletsListManager: UserWalletsListManager,
|
||||
userWalletsListRepository: UserWalletsListRepository,
|
||||
hotWalletFeatureToggles: HotWalletFeatureToggles,
|
||||
dispatcherProvider: CoroutineDispatcherProvider,
|
||||
): GetWalletsForAutomaticallyPushEnablingUseCase {
|
||||
return GetWalletsForAutomaticallyPushEnablingUseCase(
|
||||
userWalletsListManager = userWalletsListManager,
|
||||
userWalletsListRepository = userWalletsListRepository,
|
||||
shouldUseNewListRepository = hotWalletFeatureToggles.isHotWalletEnabled,
|
||||
dispatchers = dispatcherProvider,
|
||||
)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue