Updated on 2026-08-14
This commit is contained in:
parent
6638da98f1
commit
4574975639
11 changed files with 130 additions and 22 deletions
|
|
@ -166,10 +166,34 @@ internal object WalletsDomainModule {
|
|||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun providesUnlockWalletUseCase(userWalletsListManager: UserWalletsListManager): UnlockWalletsUseCase {
|
||||
fun providesUnlockWalletsUseCase(userWalletsListManager: UserWalletsListManager): UnlockWalletsUseCase {
|
||||
return UnlockWalletsUseCase(userWalletsListManager = userWalletsListManager)
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun providesUnlockWalletUseCase(
|
||||
nonBiometricUnlockWalletUseCase: NonBiometricUnlockWalletUseCase,
|
||||
userWalletsListRepository: UserWalletsListRepository,
|
||||
): UnlockWalletUseCase {
|
||||
return UnlockWalletUseCase(
|
||||
nonBiometricUnlockWalletUseCase = nonBiometricUnlockWalletUseCase,
|
||||
userWalletsListRepository = userWalletsListRepository,
|
||||
)
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun providesNonBiometricUnlockWalletUseCase(
|
||||
userWalletsListRepository: UserWalletsListRepository,
|
||||
walletsRepository: WalletsRepository,
|
||||
): NonBiometricUnlockWalletUseCase {
|
||||
return NonBiometricUnlockWalletUseCase(
|
||||
userWalletsListRepository = userWalletsListRepository,
|
||||
walletsRepository = walletsRepository,
|
||||
)
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun providesSelectWalletUseCase(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue