Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-29 12:14:56 +04:00
parent 42b8de7909
commit 06f2d51e87
8 changed files with 130 additions and 8 deletions

View file

@ -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}")
}