Updated on 2026-08-14
This commit is contained in:
parent
499351d5a9
commit
2bc8c29f6d
31 changed files with 1086 additions and 7 deletions
|
|
@ -311,6 +311,16 @@ sealed class AppRoute(val path: String) : Route {
|
|||
@Serializable
|
||||
object CreateWalletSelection : AppRoute(path = "/create_wallet_selection")
|
||||
|
||||
@Serializable
|
||||
data class CreateWalletStart(
|
||||
val mode: Mode,
|
||||
) : AppRoute(path = "/create_wallet_start") {
|
||||
enum class Mode {
|
||||
ColdWallet,
|
||||
HotWallet,
|
||||
}
|
||||
}
|
||||
|
||||
@Serializable
|
||||
object CreateMobileWallet : AppRoute(path = "/create_mobile_wallet")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue