Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-27 14:50:03 +03:00
parent 9062c1dea3
commit f280dff806
3 changed files with 3 additions and 1 deletions

View file

@ -15,4 +15,5 @@ enum class ExchangeAnalyticsStatus(val value: String) {
Fail("Fail"),
KYC("KYC"),
Refunded("Refunded"),
Cancelled("Canceled"),
}

View file

@ -579,7 +579,7 @@
<string name="token_item_no_rate">No rate</string>
<string name="token_swap_promotion_message">Exchange this token for other assets in your portfolio</string>
<string name="token_swap_promotion_title">Introducing cross-chain swaps</string>
<string name="token_swap_promotion_button">Exchange now</string>
<string name="token_swap_promotion_button">Swap now</string>
<string name="transaction_history_contract_address">contract: %s</string>
<string name="transaction_history_empty_transactions">You don\'t have any transactions yet</string>
<string name="transaction_history_error_failed_to_load">Failed to load transaction history.\nClick on reload button to update the information.</string>

View file

@ -171,6 +171,7 @@ internal class ExchangeStatusFactory(
ExchangeStatus.Failed -> ExchangeAnalyticsStatus.Fail
ExchangeStatus.Finished -> ExchangeAnalyticsStatus.Done
ExchangeStatus.Refunded -> ExchangeAnalyticsStatus.Refunded
ExchangeStatus.Cancelled -> ExchangeAnalyticsStatus.Cancelled
else -> null
}
}