Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-07 12:59:41 +05:00
parent 0f44f21d6f
commit 4f237f898b
11 changed files with 218 additions and 52 deletions

View file

@ -189,7 +189,11 @@ sealed class AppRoute(val path: String) : Route {
}
@Serializable
data object ManageTokens : AppRoute(path = "/manage_tokens")
data class ManageTokens(
val readOnlyContent: Boolean,
) : AppRoute(path = "/manage_tokens/$readOnlyContent"), RouteBundleParams {
override fun getBundle(): Bundle = bundle(serializer())
}
@Serializable
data object AddCustomToken : AppRoute(path = "/add_custom_token")