Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-27 18:50:39 +03:00
parent bbcdc778fa
commit 8c6372e398
13 changed files with 136 additions and 82 deletions

View file

@ -105,4 +105,12 @@ internal object WalletsDomainModule {
dispatchers = dispatchers,
)
}
@Provides
@ViewModelScoped
fun providesValidateWalletMemoUseCase(
walletAddressServiceRepository: WalletAddressServiceRepository,
): ValidateWalletMemoUseCase {
return ValidateWalletMemoUseCase(walletAddressServiceRepository = walletAddressServiceRepository)
}
}