diff --git a/core/datasource/src/main/java/com/tangem/datasource/local/swaptx/SwapTransactionStatusStore.kt b/core/datasource/src/main/java/com/tangem/datasource/local/swaptx/SwapTransactionStatusStore.kt
index 59bd30030e..2bcb9a3dbb 100644
--- a/core/datasource/src/main/java/com/tangem/datasource/local/swaptx/SwapTransactionStatusStore.kt
+++ b/core/datasource/src/main/java/com/tangem/datasource/local/swaptx/SwapTransactionStatusStore.kt
@@ -15,4 +15,5 @@ enum class ExchangeAnalyticsStatus(val value: String) {
Fail("Fail"),
KYC("KYC"),
Refunded("Refunded"),
+ Cancelled("Canceled"),
}
\ No newline at end of file
diff --git a/core/res/src/main/res/values/strings.xml b/core/res/src/main/res/values/strings.xml
index bf64538d4b..8665fe2aa8 100644
--- a/core/res/src/main/res/values/strings.xml
+++ b/core/res/src/main/res/values/strings.xml
@@ -579,7 +579,7 @@
No rate
Exchange this token for other assets in your portfolio
Introducing cross-chain swaps
- Exchange now
+ Swap now
contract: %s
You don\'t have any transactions yet
Failed to load transaction history.\nClick on reload button to update the information.
diff --git a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/viewmodels/ExchangeStatusFactory.kt b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/viewmodels/ExchangeStatusFactory.kt
index 8ff627eaec..ffb90e01de 100644
--- a/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/viewmodels/ExchangeStatusFactory.kt
+++ b/features/tokendetails/impl/src/main/kotlin/com/tangem/feature/tokendetails/presentation/tokendetails/viewmodels/ExchangeStatusFactory.kt
@@ -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
}
}