Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-22 18:24:36 +05:00
parent 68d3a813e2
commit f5d9dab282
17 changed files with 439 additions and 61 deletions

View file

@ -191,6 +191,11 @@ sealed class AppRoute(val path: String) : Route {
val userWalletId: UserWalletId,
) : AppRoute(path = "/wallet_settings/${userWalletId.stringValue}")
@Serializable
data class WalletBackup(
val userWalletId: UserWalletId,
) : AppRoute(path = "/wallet_backup/${userWalletId.stringValue}")
@Serializable
data object Markets : AppRoute(path = "/markets")