Updated on 2026-08-14
This commit is contained in:
parent
a66b1bfb14
commit
04c90d11db
5 changed files with 35 additions and 4 deletions
|
|
@ -127,6 +127,16 @@ sealed class AppRoute(val path: String) : Route {
|
|||
}
|
||||
}
|
||||
|
||||
data class ChooseManagedTokens(
|
||||
val userWalletId: UserWalletId,
|
||||
val initialCurrency: CryptoCurrency,
|
||||
val source: Source,
|
||||
) : AppRoute(path = "/$source/choose_managed_tokens/$userWalletId/${initialCurrency.id.value}") {
|
||||
enum class Source {
|
||||
SendViaSwap,
|
||||
}
|
||||
}
|
||||
|
||||
@Serializable
|
||||
data class WalletConnectSessions(val userWalletId: UserWalletId) : AppRoute(path = "/wallet_connect_sessions")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue