Updated on 2026-08-14
This commit is contained in:
parent
27cf7b963b
commit
8dc9304c06
12 changed files with 176 additions and 15 deletions
|
|
@ -8,14 +8,22 @@ sealed class DeepLinkRoute {
|
|||
override val host: String = "onramp"
|
||||
}
|
||||
|
||||
data object Sell : DeepLinkRoute() {
|
||||
data object SellRedirect : DeepLinkRoute() {
|
||||
override val host: String = "redirect_sell"
|
||||
}
|
||||
|
||||
data object Buy : DeepLinkRoute() {
|
||||
data object Sell : DeepLinkRoute() {
|
||||
override val host: String = "sell"
|
||||
}
|
||||
|
||||
data object BuyRedirect : DeepLinkRoute() {
|
||||
override val host: String = "redirect"
|
||||
}
|
||||
|
||||
data object Buy : DeepLinkRoute() {
|
||||
override val host: String = "buy"
|
||||
}
|
||||
|
||||
data object Referral : DeepLinkRoute() {
|
||||
override val host: String = "referral"
|
||||
}
|
||||
|
|
@ -39,6 +47,10 @@ sealed class DeepLinkRoute {
|
|||
data object MarketTokenDetail : DeepLinkRoute() {
|
||||
override val host: String = "token_chart"
|
||||
}
|
||||
|
||||
data object Swap : DeepLinkRoute() {
|
||||
override val host: String = "swap"
|
||||
}
|
||||
}
|
||||
|
||||
enum class DeepLinkScheme(val scheme: String) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue