Updated on 2026-08-14
This commit is contained in:
parent
9062c1dea3
commit
f280dff806
3 changed files with 3 additions and 1 deletions
|
|
@ -15,4 +15,5 @@ enum class ExchangeAnalyticsStatus(val value: String) {
|
|||
Fail("Fail"),
|
||||
KYC("KYC"),
|
||||
Refunded("Refunded"),
|
||||
Cancelled("Canceled"),
|
||||
}
|
||||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue