Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-07 15:08:26 +03:00
commit 2a5e3fa7eb
220 changed files with 5932 additions and 1815 deletions

View file

@ -176,7 +176,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")