Updated on 2026-08-14
This commit is contained in:
parent
1cdece6ae7
commit
d7a120fc86
24 changed files with 486 additions and 160 deletions
|
|
@ -36,6 +36,7 @@ dependencies {
|
|||
implementation(projects.domain.walletManager)
|
||||
implementation(projects.domain.quotes)
|
||||
implementation(projects.domain.common)
|
||||
implementation(projects.features.swap.domain)
|
||||
|
||||
/** Feature API - remove after removing [HotWalletFeatureToggles] */
|
||||
implementation(projects.features.hotWallet.api)
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@ internal interface TangemPayDataModule {
|
|||
|
||||
@Binds
|
||||
@Singleton
|
||||
fun bindTangemPaySwapRepository(repository: DefaultTangemPaySwapRepository): TangemPaySwapRepository
|
||||
fun bindTangemPaySwapRepository(repository: DefaultTangemPayWithdrawRepository): TangemPayWithdrawRepository
|
||||
|
||||
@Binds
|
||||
@Singleton
|
||||
|
|
|
|||
|
|
@ -0,0 +1,19 @@
|
|||
package com.tangem.data.pay.entity
|
||||
|
||||
import com.squareup.moshi.Json
|
||||
import com.squareup.moshi.JsonClass
|
||||
|
||||
@JsonClass(generateAdapter = false)
|
||||
data class WithdrawStoreData(
|
||||
@Json(name = "orderId") val orderId: String,
|
||||
@Json(name = "exchangeData") val exchangeData: ExchangeStoreData?,
|
||||
)
|
||||
|
||||
@JsonClass(generateAdapter = false)
|
||||
data class ExchangeStoreData(
|
||||
@Json(name = "txId") val txId: String,
|
||||
@Json(name = "fromNetwork") val fromNetwork: String,
|
||||
@Json(name = "fromAddress") val fromAddress: String,
|
||||
@Json(name = "payInAddress") val payInAddress: String,
|
||||
@Json(name = "payInExtraId") val payInExtraId: String?,
|
||||
)
|
||||
|
|
@ -2,8 +2,8 @@ package com.tangem.data.pay.repository
|
|||
|
||||
import arrow.core.Either
|
||||
import com.tangem.datasource.api.pay.TangemPayApi
|
||||
import com.tangem.datasource.local.visa.TangemPayStorage
|
||||
import com.tangem.domain.models.wallet.UserWalletId
|
||||
import com.tangem.domain.pay.model.OrderData
|
||||
import com.tangem.domain.pay.model.OrderStatus
|
||||
import com.tangem.domain.pay.repository.CustomerOrderRepository
|
||||
import com.tangem.domain.visa.error.VisaApiError
|
||||
|
|
@ -12,35 +12,23 @@ import javax.inject.Inject
|
|||
internal class DefaultCustomerOrderRepository @Inject constructor(
|
||||
private val tangemPayApi: TangemPayApi,
|
||||
private val requestHelper: TangemPayRequestPerformer,
|
||||
private val tangemPayStorage: TangemPayStorage,
|
||||
) : CustomerOrderRepository {
|
||||
|
||||
override suspend fun getOrderStatus(
|
||||
userWalletId: UserWalletId,
|
||||
orderId: String,
|
||||
): Either<VisaApiError, OrderStatus> {
|
||||
override suspend fun getOrderData(userWalletId: UserWalletId, orderId: String): Either<VisaApiError, OrderData> {
|
||||
return requestHelper.performRequest(userWalletId) { authHeader ->
|
||||
tangemPayApi.getOrder(authHeader = authHeader, orderId = orderId)
|
||||
}.map { response ->
|
||||
when (response.result?.status) {
|
||||
val status = when (response.result?.status) {
|
||||
null -> OrderStatus.UNKNOWN
|
||||
OrderStatus.NEW.apiName -> OrderStatus.NEW
|
||||
OrderStatus.PROCESSING.apiName -> OrderStatus.PROCESSING
|
||||
OrderStatus.COMPLETED.apiName -> OrderStatus.COMPLETED
|
||||
else -> OrderStatus.CANCELED
|
||||
}
|
||||
OrderData(
|
||||
status = status,
|
||||
withdrawTxHash = response.result?.data?.transactionHash?.ifEmpty { null },
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun hasWithdrawOrder(userWalletId: UserWalletId): Boolean {
|
||||
val orderId = tangemPayStorage.getWithdrawOrderId(userWalletId)
|
||||
if (orderId == null) return false
|
||||
|
||||
val status = getOrderStatus(userWalletId, orderId).getOrNull()
|
||||
|
||||
val hasActiveOrder = status == OrderStatus.NEW || status == OrderStatus.PROCESSING
|
||||
if (!hasActiveOrder) tangemPayStorage.deleteWithdrawOrder(userWalletId)
|
||||
|
||||
return hasActiveOrder
|
||||
}
|
||||
}
|
||||
|
|
@ -1,99 +0,0 @@
|
|||
package com.tangem.data.pay.repository
|
||||
|
||||
import arrow.core.Either
|
||||
import arrow.core.left
|
||||
import com.tangem.core.error.UniversalError
|
||||
import com.tangem.data.common.quote.QuotesFetcher
|
||||
import com.tangem.datasource.api.pay.TangemPayApi
|
||||
import com.tangem.datasource.api.pay.models.request.WithdrawDataRequest
|
||||
import com.tangem.datasource.api.pay.models.request.WithdrawRequest
|
||||
import com.tangem.datasource.local.visa.TangemPayStorage
|
||||
import com.tangem.domain.models.currency.CryptoCurrency
|
||||
import com.tangem.domain.models.wallet.UserWallet
|
||||
import com.tangem.domain.pay.WithdrawalResult
|
||||
import com.tangem.domain.pay.WithdrawalSignatureResult
|
||||
import com.tangem.domain.pay.datasource.TangemPayAuthDataSource
|
||||
import com.tangem.domain.pay.repository.TangemPaySwapRepository
|
||||
import com.tangem.domain.visa.error.VisaApiError
|
||||
import com.tangem.utils.extensions.addHexPrefix
|
||||
import java.math.BigDecimal
|
||||
import java.math.RoundingMode
|
||||
import java.util.Currency
|
||||
import java.util.Locale
|
||||
import javax.inject.Inject
|
||||
|
||||
@Suppress("LongParameterList")
|
||||
internal class DefaultTangemPaySwapRepository @Inject constructor(
|
||||
private val tangemPayApi: TangemPayApi,
|
||||
private val requestHelper: TangemPayRequestPerformer,
|
||||
private val authDataSource: TangemPayAuthDataSource,
|
||||
private val quotesFetcher: QuotesFetcher,
|
||||
private val tangemPayStorage: TangemPayStorage,
|
||||
) : TangemPaySwapRepository {
|
||||
|
||||
override suspend fun withdraw(
|
||||
userWallet: UserWallet,
|
||||
receiverAddress: String,
|
||||
cryptoAmount: BigDecimal,
|
||||
cryptoCurrencyId: CryptoCurrency.RawID,
|
||||
): Either<UniversalError, WithdrawalResult> {
|
||||
val amountInCents = getAmountInCents(cryptoAmount, cryptoCurrencyId)
|
||||
if (amountInCents.isNullOrEmpty()) return Either.Left(VisaApiError.WithdrawalDataError)
|
||||
return requestHelper.performRequest(userWallet.walletId) { authHeader ->
|
||||
val request = WithdrawDataRequest(amountInCents = amountInCents, recipientAddress = receiverAddress)
|
||||
tangemPayApi.getWithdrawData(authHeader = authHeader, body = request)
|
||||
}.map { data ->
|
||||
val result = data.result ?: return VisaApiError.WithdrawalDataError.left()
|
||||
val signatureResult = authDataSource.getWithdrawalSignature(
|
||||
userWallet = userWallet,
|
||||
hash = result.hash,
|
||||
).getOrNull()
|
||||
|
||||
return when (signatureResult) {
|
||||
is WithdrawalSignatureResult.Cancelled -> {
|
||||
Either.Right(WithdrawalResult.Cancelled)
|
||||
}
|
||||
is WithdrawalSignatureResult.Success -> {
|
||||
requestHelper.performRequest(userWallet.walletId) { authHeader ->
|
||||
val request = WithdrawRequest(
|
||||
amountInCents = amountInCents,
|
||||
recipientAddress = receiverAddress,
|
||||
adminSalt = result.salt,
|
||||
senderAddress = result.senderAddress,
|
||||
adminSignature = signatureResult.signature.addHexPrefix(),
|
||||
)
|
||||
tangemPayApi.withdraw(authHeader = authHeader, body = request)
|
||||
}
|
||||
.mapLeft { return Either.Left(VisaApiError.WithdrawError) }
|
||||
.map { response ->
|
||||
val orderId = response.result?.orderId
|
||||
if (orderId != null) tangemPayStorage.storeWithdrawOrder(userWallet.walletId, orderId)
|
||||
WithdrawalResult.Success
|
||||
}
|
||||
}
|
||||
null -> return Either.Left(VisaApiError.SignWithdrawError)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun getAmountInCents(cryptoAmount: BigDecimal, cryptoCurrencyId: CryptoCurrency.RawID): String? {
|
||||
val fiatRate = getFiatRate(cryptoCurrencyId) ?: return null
|
||||
val amountInDollars = cryptoAmount.multiply(fiatRate)
|
||||
val defaultFractionDigits = Currency.getInstance(Locale.US).defaultFractionDigits
|
||||
return amountInDollars
|
||||
.setScale(defaultFractionDigits, RoundingMode.HALF_UP)
|
||||
.movePointRight(defaultFractionDigits)
|
||||
.longValueExact()
|
||||
.toString()
|
||||
}
|
||||
|
||||
private suspend fun getFiatRate(cryptoCurrencyId: CryptoCurrency.RawID): BigDecimal? {
|
||||
val quotes = quotesFetcher.fetch(
|
||||
fiatCurrencyId = Currency.getInstance(Locale.US).currencyCode,
|
||||
currencyId = cryptoCurrencyId.value,
|
||||
field = QuotesFetcher.Field.PRICE,
|
||||
).getOrNull()
|
||||
|
||||
return quotes?.quotes[cryptoCurrencyId.value]?.price
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,301 @@
|
|||
package com.tangem.data.pay.repository
|
||||
|
||||
import arrow.core.Either
|
||||
import arrow.core.left
|
||||
import arrow.core.right
|
||||
import com.tangem.core.error.UniversalError
|
||||
import com.tangem.data.common.quote.QuotesFetcher
|
||||
import com.tangem.datasource.api.pay.TangemPayApi
|
||||
import com.tangem.datasource.api.pay.models.request.WithdrawDataRequest
|
||||
import com.tangem.datasource.api.pay.models.request.WithdrawRequest
|
||||
import com.tangem.datasource.api.pay.models.response.WithdrawResponse
|
||||
import com.tangem.datasource.local.visa.TangemPayStorage
|
||||
import com.tangem.domain.models.currency.CryptoCurrency
|
||||
import com.tangem.domain.models.wallet.UserWallet
|
||||
import com.tangem.domain.pay.TangemPayWithdrawExchangeState
|
||||
import com.tangem.domain.pay.TangemPayWithdrawState
|
||||
import com.tangem.domain.pay.WithdrawalResult
|
||||
import com.tangem.domain.pay.WithdrawalSignatureResult
|
||||
import com.tangem.domain.pay.datasource.TangemPayAuthDataSource
|
||||
import com.tangem.domain.pay.model.OrderData
|
||||
import com.tangem.domain.pay.model.OrderStatus
|
||||
import com.tangem.domain.pay.repository.CustomerOrderRepository
|
||||
import com.tangem.domain.pay.repository.TangemPayWithdrawRepository
|
||||
import com.tangem.domain.visa.error.VisaApiError
|
||||
import com.tangem.feature.swap.domain.api.SwapRepository
|
||||
import com.tangem.feature.swap.domain.models.ExpressDataError
|
||||
import com.tangem.utils.extensions.addHexPrefix
|
||||
import kotlinx.coroutines.CoroutineScope
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.Job
|
||||
import kotlinx.coroutines.SupervisorJob
|
||||
import kotlinx.coroutines.delay
|
||||
import kotlinx.coroutines.isActive
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.sync.Mutex
|
||||
import kotlinx.coroutines.sync.withLock
|
||||
import timber.log.Timber
|
||||
import java.math.BigDecimal
|
||||
import java.math.RoundingMode
|
||||
import java.util.Currency
|
||||
import java.util.Locale
|
||||
import javax.inject.Inject
|
||||
import kotlin.collections.set
|
||||
import kotlin.coroutines.cancellation.CancellationException
|
||||
import kotlin.time.Duration.Companion.seconds
|
||||
|
||||
private const val TAG = "TangemPaySwapRepository"
|
||||
|
||||
@Suppress("LongParameterList")
|
||||
internal class DefaultTangemPayWithdrawRepository @Inject constructor(
|
||||
private val tangemPayApi: TangemPayApi,
|
||||
private val requestHelper: TangemPayRequestPerformer,
|
||||
private val authDataSource: TangemPayAuthDataSource,
|
||||
private val quotesFetcher: QuotesFetcher,
|
||||
private val tangemPayStorage: TangemPayStorage,
|
||||
private val swapRepository: SwapRepository,
|
||||
private val orderRepository: CustomerOrderRepository,
|
||||
) : TangemPayWithdrawRepository {
|
||||
|
||||
private val withdrawPollingScope = CoroutineScope(Dispatchers.IO + SupervisorJob())
|
||||
private val withdrawPollingJobs = mutableMapOf<String, Job>()
|
||||
private val withdrawPollingMutex = Mutex()
|
||||
|
||||
override suspend fun withdraw(
|
||||
userWallet: UserWallet,
|
||||
receiverAddress: String,
|
||||
cryptoAmount: BigDecimal,
|
||||
cryptoCurrencyId: CryptoCurrency.RawID,
|
||||
exchangeData: TangemPayWithdrawExchangeState,
|
||||
): Either<UniversalError, WithdrawalResult> {
|
||||
val amountInCents = getAmountInCents(cryptoAmount, cryptoCurrencyId)
|
||||
if (amountInCents.isNullOrEmpty()) return Either.Left(VisaApiError.WithdrawalDataError)
|
||||
return requestHelper.performRequest(userWallet.walletId) { authHeader ->
|
||||
val request = WithdrawDataRequest(amountInCents = amountInCents, recipientAddress = receiverAddress)
|
||||
tangemPayApi.getWithdrawData(authHeader = authHeader, body = request)
|
||||
}.map { data ->
|
||||
val result = data.result ?: return VisaApiError.WithdrawalDataError.left()
|
||||
val signatureResult = authDataSource.getWithdrawalSignature(
|
||||
userWallet = userWallet,
|
||||
hash = result.hash,
|
||||
).getOrNull()
|
||||
|
||||
return when (signatureResult) {
|
||||
is WithdrawalSignatureResult.Cancelled -> {
|
||||
Either.Right(WithdrawalResult.Cancelled)
|
||||
}
|
||||
is WithdrawalSignatureResult.Success -> {
|
||||
requestHelper.performRequest(userWallet.walletId) { authHeader ->
|
||||
val request = WithdrawRequest(
|
||||
amountInCents = amountInCents,
|
||||
recipientAddress = receiverAddress,
|
||||
adminSalt = result.salt,
|
||||
senderAddress = result.senderAddress,
|
||||
adminSignature = signatureResult.signature.addHexPrefix(),
|
||||
)
|
||||
tangemPayApi.withdraw(authHeader = authHeader, body = request)
|
||||
}
|
||||
.mapLeft { return Either.Left(VisaApiError.WithdrawError) }
|
||||
.map { response ->
|
||||
processWithdrawResult(response, userWallet, exchangeData)
|
||||
WithdrawalResult.Success
|
||||
}
|
||||
}
|
||||
null -> return Either.Left(VisaApiError.SignWithdrawError)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun processWithdrawResult(
|
||||
response: WithdrawResponse,
|
||||
userWallet: UserWallet,
|
||||
exchangeData: TangemPayWithdrawExchangeState,
|
||||
) {
|
||||
val orderId = response.result?.orderId
|
||||
if (orderId != null) {
|
||||
val orderData = orderRepository
|
||||
.getOrderData(userWalletId = userWallet.walletId, orderId = orderId).getOrNull()
|
||||
val withdrawTxHash = orderData?.withdrawTxHash
|
||||
val storeData = TangemPayWithdrawState(
|
||||
orderId = orderId,
|
||||
exchangeData = exchangeData,
|
||||
)
|
||||
if (orderData != null && !withdrawTxHash.isNullOrEmpty()) {
|
||||
finalizeWithdraw(
|
||||
userWallet = userWallet,
|
||||
withdrawTxHash = withdrawTxHash,
|
||||
orderId = orderId,
|
||||
exchangeData = exchangeData,
|
||||
order = orderData,
|
||||
).onLeft {
|
||||
tangemPayStorage.storeWithdrawOrder(userWalletId = userWallet.walletId, data = storeData)
|
||||
}
|
||||
} else {
|
||||
tangemPayStorage.storeWithdrawOrder(userWalletId = userWallet.walletId, data = storeData)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun finalizeWithdraw(
|
||||
userWallet: UserWallet,
|
||||
withdrawTxHash: String,
|
||||
orderId: String,
|
||||
exchangeData: TangemPayWithdrawExchangeState,
|
||||
order: OrderData,
|
||||
): Either<ExpressDataError, Unit> {
|
||||
return swapRepository.exchangeSent(
|
||||
userWallet = userWallet,
|
||||
txId = exchangeData.txId,
|
||||
fromNetwork = exchangeData.fromNetwork,
|
||||
fromAddress = exchangeData.fromAddress,
|
||||
payInAddress = exchangeData.payInAddress,
|
||||
txHash = withdrawTxHash,
|
||||
payInExtraId = exchangeData.payInExtraId,
|
||||
)
|
||||
.onRight {
|
||||
val isActive = order.status == OrderStatus.NEW || order.status == OrderStatus.PROCESSING
|
||||
if (!isActive) {
|
||||
tangemPayStorage.deleteWithdrawOrder(userWalletId = userWallet.walletId)
|
||||
} else {
|
||||
tangemPayStorage.storeWithdrawOrder(
|
||||
userWalletId = userWallet.walletId,
|
||||
data = TangemPayWithdrawState(orderId = orderId, exchangeData = null),
|
||||
)
|
||||
}
|
||||
}
|
||||
.onLeft { error ->
|
||||
Timber.tag(TAG).e(error.toString())
|
||||
}
|
||||
}
|
||||
|
||||
override suspend fun hasWithdrawOrder(userWallet: UserWallet): Boolean {
|
||||
val orderExchangeData = tangemPayStorage.getWithdrawOrder(userWallet.walletId)
|
||||
if (orderExchangeData == null) return false
|
||||
|
||||
val exchangeData = orderExchangeData.exchangeData
|
||||
val orderData = orderRepository
|
||||
.getOrderData(userWallet.walletId, orderId = orderExchangeData.orderId).getOrNull()
|
||||
val withdrawTxHash = orderData?.withdrawTxHash
|
||||
|
||||
if (exchangeData != null && orderData != null && withdrawTxHash != null) {
|
||||
finalizeWithdraw(
|
||||
userWallet = userWallet,
|
||||
withdrawTxHash = withdrawTxHash,
|
||||
orderId = orderExchangeData.orderId,
|
||||
exchangeData = exchangeData,
|
||||
order = orderData,
|
||||
)
|
||||
}
|
||||
|
||||
return orderData?.status == OrderStatus.NEW || orderData?.status == OrderStatus.PROCESSING
|
||||
}
|
||||
|
||||
override suspend fun pollWithdrawOrderIfNeeds(userWallet: UserWallet): Either<VisaApiError, Unit> {
|
||||
val storeData = tangemPayStorage.getWithdrawOrder(userWallet.walletId) ?: return Unit.right()
|
||||
val exchangeData = storeData.exchangeData ?: return Unit.right()
|
||||
|
||||
val orderId = storeData.orderId
|
||||
val order = orderRepository
|
||||
.getOrderData(userWalletId = userWallet.walletId, orderId = orderId).getOrNull()
|
||||
?: return Unit.right()
|
||||
|
||||
val txHash = order.withdrawTxHash
|
||||
|
||||
if (!txHash.isNullOrEmpty()) {
|
||||
finalizeWithdraw(
|
||||
userWallet = userWallet,
|
||||
withdrawTxHash = txHash,
|
||||
orderId = storeData.orderId,
|
||||
exchangeData = exchangeData,
|
||||
order = order,
|
||||
).onLeft {
|
||||
startWithdrawOrderPolling(
|
||||
userWallet = userWallet,
|
||||
orderId = orderId,
|
||||
storeData = storeData,
|
||||
exchangeData = exchangeData,
|
||||
)
|
||||
}
|
||||
} else {
|
||||
startWithdrawOrderPolling(
|
||||
userWallet = userWallet,
|
||||
orderId = orderId,
|
||||
storeData = storeData,
|
||||
exchangeData = exchangeData,
|
||||
)
|
||||
}
|
||||
|
||||
return Unit.right()
|
||||
}
|
||||
|
||||
private suspend fun startWithdrawOrderPolling(
|
||||
userWallet: UserWallet,
|
||||
orderId: String,
|
||||
storeData: TangemPayWithdrawState,
|
||||
exchangeData: TangemPayWithdrawExchangeState,
|
||||
) {
|
||||
withdrawPollingMutex.withLock {
|
||||
if (withdrawPollingJobs.containsKey(orderId)) return
|
||||
|
||||
val pollingJob = withdrawPollingScope.launch {
|
||||
try {
|
||||
while (isActive && withdrawPollingJobs.containsKey(orderId)) {
|
||||
delay(duration = 5.seconds)
|
||||
|
||||
val orderData = orderRepository
|
||||
.getOrderData(userWalletId = userWallet.walletId, orderId = orderId)
|
||||
orderData.onRight { order ->
|
||||
if (order.status != OrderStatus.NEW && order.status != OrderStatus.PROCESSING) {
|
||||
tangemPayStorage.deleteWithdrawOrder(userWallet.walletId)
|
||||
withdrawPollingJobs.remove(key = orderId)
|
||||
return@launch
|
||||
}
|
||||
val txHash = order.withdrawTxHash
|
||||
if (!txHash.isNullOrEmpty()) {
|
||||
finalizeWithdraw(
|
||||
userWallet = userWallet,
|
||||
withdrawTxHash = txHash,
|
||||
orderId = storeData.orderId,
|
||||
exchangeData = exchangeData,
|
||||
order = order,
|
||||
).onRight {
|
||||
withdrawPollingJobs.remove(key = orderId)
|
||||
return@launch
|
||||
}
|
||||
}
|
||||
}.onLeft { error ->
|
||||
Timber.tag(TAG).e("error ${error.errorCode}")
|
||||
}
|
||||
}
|
||||
} catch (exception: CancellationException) {
|
||||
throw exception
|
||||
} catch (exception: Exception) {
|
||||
Timber.tag(TAG).e(exception)
|
||||
withdrawPollingMutex.withLock { withdrawPollingJobs.remove(orderId) }
|
||||
}
|
||||
}
|
||||
withdrawPollingJobs[orderId] = pollingJob
|
||||
}
|
||||
}
|
||||
|
||||
private suspend fun getAmountInCents(cryptoAmount: BigDecimal, cryptoCurrencyId: CryptoCurrency.RawID): String? {
|
||||
val fiatRate = getFiatRate(cryptoCurrencyId) ?: return null
|
||||
val amountInDollars = cryptoAmount.multiply(fiatRate)
|
||||
val defaultFractionDigits = Currency.getInstance(Locale.US).defaultFractionDigits
|
||||
return amountInDollars
|
||||
.setScale(defaultFractionDigits, RoundingMode.HALF_UP)
|
||||
.movePointRight(defaultFractionDigits)
|
||||
.longValueExact()
|
||||
.toString()
|
||||
}
|
||||
|
||||
private suspend fun getFiatRate(cryptoCurrencyId: CryptoCurrency.RawID): BigDecimal? {
|
||||
val quotes = quotesFetcher.fetch(
|
||||
fiatCurrencyId = Currency.getInstance(Locale.US).currencyCode,
|
||||
currencyId = cryptoCurrencyId.value,
|
||||
field = QuotesFetcher.Field.PRICE,
|
||||
).getOrNull()
|
||||
|
||||
return quotes?.quotes[cryptoCurrencyId.value]?.price
|
||||
}
|
||||
}
|
||||
|
|
@ -4,14 +4,15 @@ import arrow.core.Either
|
|||
import com.tangem.core.error.UniversalError
|
||||
import com.tangem.domain.models.currency.CryptoCurrency
|
||||
import com.tangem.domain.models.wallet.UserWallet
|
||||
import com.tangem.domain.pay.TangemPayWithdrawExchangeState
|
||||
import com.tangem.domain.pay.WithdrawalResult
|
||||
import com.tangem.domain.pay.repository.TangemPaySwapRepository
|
||||
import com.tangem.domain.pay.repository.TangemPayWithdrawRepository
|
||||
import com.tangem.domain.tangempay.TangemPayWithdrawUseCase
|
||||
import java.math.BigDecimal
|
||||
import javax.inject.Inject
|
||||
|
||||
internal class DefaultTangemPayWithdrawUseCase @Inject constructor(
|
||||
private val repository: TangemPaySwapRepository,
|
||||
private val repository: TangemPayWithdrawRepository,
|
||||
) : TangemPayWithdrawUseCase {
|
||||
|
||||
override suspend fun invoke(
|
||||
|
|
@ -19,12 +20,14 @@ internal class DefaultTangemPayWithdrawUseCase @Inject constructor(
|
|||
cryptoAmount: BigDecimal,
|
||||
cryptoCurrencyId: CryptoCurrency.RawID,
|
||||
receiverCexAddress: String,
|
||||
exchangeData: TangemPayWithdrawExchangeState,
|
||||
): Either<UniversalError, WithdrawalResult> {
|
||||
return repository.withdraw(
|
||||
userWallet = userWallet,
|
||||
cryptoAmount = cryptoAmount,
|
||||
receiverAddress = receiverCexAddress,
|
||||
cryptoCurrencyId = cryptoCurrencyId,
|
||||
exchangeData = exchangeData,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
package com.tangem.data.pay.util
|
||||
|
||||
import com.tangem.data.pay.entity.WithdrawStoreData
|
||||
import com.tangem.domain.pay.TangemPayWithdrawExchangeState
|
||||
import com.tangem.domain.pay.TangemPayWithdrawState
|
||||
import com.tangem.utils.converter.Converter
|
||||
|
||||
class WithdrawStateConverter : Converter<WithdrawStoreData, TangemPayWithdrawState> {
|
||||
|
||||
override fun convert(value: WithdrawStoreData): TangemPayWithdrawState = TangemPayWithdrawState(
|
||||
orderId = value.orderId,
|
||||
exchangeData = value.exchangeData?.let { exchangeData ->
|
||||
TangemPayWithdrawExchangeState(
|
||||
txId = exchangeData.txId,
|
||||
fromNetwork = exchangeData.fromNetwork,
|
||||
fromAddress = exchangeData.fromAddress,
|
||||
payInAddress = exchangeData.payInAddress,
|
||||
payInExtraId = exchangeData.payInExtraId,
|
||||
)
|
||||
},
|
||||
)
|
||||
}
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
package com.tangem.data.pay.util
|
||||
|
||||
import com.tangem.data.pay.entity.ExchangeStoreData
|
||||
import com.tangem.data.pay.entity.WithdrawStoreData
|
||||
import com.tangem.domain.pay.TangemPayWithdrawState
|
||||
import com.tangem.utils.converter.Converter
|
||||
|
||||
class WithdrawStoreDataConverter : Converter<TangemPayWithdrawState, WithdrawStoreData> {
|
||||
|
||||
override fun convert(value: TangemPayWithdrawState): WithdrawStoreData = WithdrawStoreData(
|
||||
orderId = value.orderId,
|
||||
exchangeData = value.exchangeData?.let { exchangeData ->
|
||||
ExchangeStoreData(
|
||||
txId = exchangeData.txId,
|
||||
fromNetwork = exchangeData.fromNetwork,
|
||||
fromAddress = exchangeData.fromAddress,
|
||||
payInAddress = exchangeData.payInAddress,
|
||||
payInExtraId = exchangeData.payInExtraId,
|
||||
)
|
||||
},
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue