Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-30 19:28:40 +05:00
parent fc73f08b5e
commit c763f84aad
9 changed files with 202 additions and 7 deletions

View file

@ -31,6 +31,14 @@ sealed class DeepLinkRoute {
data object Staking : DeepLinkRoute() {
override val host: String = "staking"
}
data object Markets : DeepLinkRoute() {
override val host: String = "markets"
}
data object MarketTokenDetail : DeepLinkRoute() {
override val host: String = "token_chart"
}
}
enum class DeepLinkScheme(val scheme: String) {