Updated on 2026-08-14
This commit is contained in:
parent
42b8de7909
commit
06f2d51e87
8 changed files with 130 additions and 8 deletions
|
|
@ -117,10 +117,6 @@ sealed class AppRoute(val path: String) : Route {
|
|||
) : AppRoute(path = "/details/security"), RouteBundleParams {
|
||||
|
||||
override fun getBundle(): Bundle = bundle(serializer())
|
||||
|
||||
companion object {
|
||||
const val USER_WALLET_ID_KEY = "userWalletId"
|
||||
}
|
||||
}
|
||||
|
||||
@Serializable
|
||||
|
|
@ -291,4 +287,9 @@ sealed class AppRoute(val path: String) : Route {
|
|||
|
||||
@Serializable
|
||||
data object Onramp : AppRoute(path = "/onramp")
|
||||
|
||||
@Serializable
|
||||
data class BuyCrypto(
|
||||
val userWalletId: UserWalletId,
|
||||
) : AppRoute(path = "/buy_crypto/${userWalletId.stringValue}")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue