What changed, and why it matters
This commit simply adds a new on-screen tutorial entry for a cryptocurrency wallet integration called 'Vizor'. It is a UI content addition with no security-relevant code changes.
No security action required. Review as a normal feature addition.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch adds a new wallet tutorial entry (WALLET_LIST_VIZOR) to an existing array of wallet tutorials in the Keystone hardware wallet firmware UI. It defines display strings and a short URL (https://keyst.one/t/3rd/vizor) for the Vizor wallet, following the same pattern used for other wallet integrations such as Zodl and Core. No logic, parsing, memory handling, cryptography, or trust boundaries are modified.
Changed components
src/ui/gui_widgets/gui_wallet_tutorial_widgets.csrc/ui/gui_widgets/gui_wallet_tutorial_widgets.hInspect captured patch +11 / −0
diff --git a/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c b/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c
index be987e3..cfc2904 100644
--- a/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c
+++ b/src/ui/gui_widgets/gui_wallet_tutorial_widgets.c
@@ -399,6 +399,14 @@ static void WalletTutorialsInit()
g_tutorials[WALLET_LIST_ZODL].items[0].qrTitle = ZODL_WALLET_TITLE;
g_tutorials[WALLET_LIST_ZODL].items[0].qrUrl = ZODL_WALLET_LINK;
+ // WALLET_LIST_VIZOR
+ g_tutorials[WALLET_LIST_VIZOR].len = 1;
+ g_tutorials[WALLET_LIST_VIZOR].desc = _("connect_wallet_desc");
+ g_tutorials[WALLET_LIST_VIZOR].items[0].walletName = VIZOR_WALLET_TITLE;
+ g_tutorials[WALLET_LIST_VIZOR].items[0].url = VIZOR_WALLET_LINK;
+ g_tutorials[WALLET_LIST_VIZOR].items[0].qrTitle = VIZOR_WALLET_TITLE;
+ g_tutorials[WALLET_LIST_VIZOR].items[0].qrUrl = VIZOR_WALLET_LINK;
+
// WALLET_LIST_CORE
g_tutorials[WALLET_LIST_CORE].len = 1;
g_tutorials[WALLET_LIST_CORE].desc = _("connect_wallet_desc");
diff --git a/src/ui/gui_widgets/gui_wallet_tutorial_widgets.h b/src/ui/gui_widgets/gui_wallet_tutorial_widgets.h
index 51577c7..895d263 100644
--- a/src/ui/gui_widgets/gui_wallet_tutorial_widgets.h
+++ b/src/ui/gui_widgets/gui_wallet_tutorial_widgets.h
@@ -16,4 +16,7 @@ void GuiWalletTutorialDeInit();
#define ZODL_WALLET_TITLE "Zodl"
#define ZODL_WALLET_LINK "https://keyst.one/t/3rd/zodl"
+#define VIZOR_WALLET_TITLE "Vizor"
+#define VIZOR_WALLET_LINK "https://keyst.one/t/3rd/vizor"
+
#endif
\ No newline at end of file
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.