Updated on 2026-08-14

This commit is contained in:
Tangem 2025-06-19 15:08:55 +05:00
parent 803f0bdfec
commit 0d63a74f75
4 changed files with 72 additions and 31 deletions

View file

@ -36,8 +36,10 @@ internal object ManageTokensDomainModule {
@Provides
@Singleton
fun provideCreateCurrencyUseCase(customTokensRepository: CustomTokensRepository): CreateCurrencyUseCase {
return CreateCurrencyUseCase(customTokensRepository)
fun provideCreateCryptoCurrencyUseCase(
customTokensRepository: CustomTokensRepository,
): CreateCryptoCurrencyUseCase {
return CreateCryptoCurrencyUseCase(customTokensRepository)
}
@Provides