Updated on 2026-08-14
This commit is contained in:
parent
f81e51f4c4
commit
3baec6cc7e
27 changed files with 580 additions and 22 deletions
|
|
@ -17,6 +17,7 @@ import com.tangem.domain.transaction.usecase.*
|
|||
import com.tangem.domain.transaction.usecase.gasless.GetAvailableFeeTokensUseCase
|
||||
import com.tangem.domain.transaction.usecase.gasless.GetFeeForGaslessUseCase
|
||||
import com.tangem.domain.transaction.usecase.gasless.GetFeeForTokenUseCase
|
||||
import com.tangem.domain.transaction.usecase.gasless.IsGaslessFeeSupportedForNetwork
|
||||
import com.tangem.domain.walletmanager.WalletManagersFacade
|
||||
import com.tangem.utils.coroutines.CoroutineDispatcherProvider
|
||||
import dagger.Module
|
||||
|
|
@ -323,4 +324,12 @@ internal object TransactionDomainModule {
|
|||
getMultiCryptoCurrencyStatusUseCase = getMultiCryptoCurrencyStatusUseCase,
|
||||
)
|
||||
}
|
||||
|
||||
@Provides
|
||||
@Singleton
|
||||
fun provideIsGaslessFeeSupportedForNetwork(
|
||||
gaslessTransactionRepository: GaslessTransactionRepository,
|
||||
): IsGaslessFeeSupportedForNetwork {
|
||||
return IsGaslessFeeSupportedForNetwork(gaslessTransactionRepository)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue