diff --git a/.gitignore b/.gitignore index 6745f0a3..01650293 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ compile_commands.json # Documentation files doc/html doc/latex +# Pytest temporary snapshots +test/snapshots-tmp diff --git a/src/globals.c b/src/globals.c index ed13d582..8b1ecc20 100644 --- a/src/globals.c +++ b/src/globals.c @@ -46,6 +46,10 @@ void init_globals(void) { memset(&global, 0, sizeof(global)); } +void toggle_hwm(void) { + UPDATE_NVRAM(ram, { ram->hwm_disabled = !ram->hwm_disabled; }); +} + // DO NOT TRY TO INIT THIS. This can only be written via an system call. // The "N_" is *significant*. It tells the linker to put this in NVRAM. nvram_data const N_data_real; diff --git a/src/globals.h b/src/globals.h index e072c86e..2ad8f908 100644 --- a/src/globals.h +++ b/src/globals.h @@ -43,6 +43,14 @@ void clear_apdu_globals(void); */ void init_globals(void); +/** + * @brief Toggle high watermark tracking by Ledger. + * + * if its off, the responsibility to track watermark for blocks/attestation signed falls on the + * signer being used. + */ +void toggle_hwm(void); + /// Maximum number of bytes in a single APDU #define MAX_APDU_SIZE 235u diff --git a/src/to_string.c b/src/to_string.c index 77cc20af..dab35821 100644 --- a/src/to_string.c +++ b/src/to_string.c @@ -326,6 +326,14 @@ int hwm_to_string(char *dest, size_t dest_size, high_watermark_t const *const hw } } +int hwm_status_to_string(char *dest, size_t dest_size, volatile bool const *hwm_disabled) { + if ((dest == NULL) || (dest_size < 9u)) { + return -1; + } + memcpy(dest, *hwm_disabled ? "Disabled" : "Enabled", dest_size); + return dest_size; +} + int copy_string(char *const dest, size_t const dest_size, char const *const src) { if ((dest == NULL) || (src == NULL)) { return false; diff --git a/src/to_string.h b/src/to_string.h index eae0f765..c07505c0 100644 --- a/src/to_string.h +++ b/src/to_string.h @@ -88,6 +88,15 @@ int microtez_to_string(char *const dest, size_t dest_size, uint64_t number); */ int hwm_to_string(char *dest, size_t dest_size, high_watermark_t const *const hwm); +/** + * @brief Converts hwm status to string (Enabled/Disabled) + * @param dest output buffer + * @param dest_size output size >= 9u + * @param hwm_disabled High watermark status from NVRAM + * @return size of the result, negative integer on failure. + */ +int hwm_status_to_string(char *dest, size_t dest_size, volatile bool const *hwm_disabled); + /** * @brief Copies a string in a buffer * diff --git a/src/types.h b/src/types.h index 8167635b..11f50388 100644 --- a/src/types.h +++ b/src/types.h @@ -50,6 +50,7 @@ typedef enum { DERIVATION_TYPE_ED25519 = 3, DERIVATION_TYPE_BIP32_ED25519 = 4 } derivation_type_t; + typedef enum { SIGNATURE_TYPE_UNSET = 0, SIGNATURE_TYPE_SECP256K1 = 1, @@ -197,12 +198,17 @@ typedef struct { high_watermark_t main; ///< HWM of main high_watermark_t test; ///< HWM of test } hwm; + bip32_path_with_curve_t baking_key; ///< authorized key + bool hwm_disabled; /**< Set HWM setting on/off, + e.g. if you are using signer assisted HWM, + no need to track HWM using Ledger.*/ } nvram_data; #define SIGN_HASH_SIZE 32u // TODO: Rename or use a different constant. #define PKH_STRING_SIZE 40u // includes null byte // TODO: use sizeof for this. +#define HWM_STATUS_SIZE 9u // HWM status takes values Enabled and Disabled. #define PROTOCOL_HASH_BASE58_STRING_SIZE \ sizeof("ProtoBetaBetaBetaBetaBetaBetaBetaBetaBet11111a5ug96") @@ -226,11 +232,11 @@ typedef struct { * */ typedef struct parsed_contract { - uint8_t originated; ///< a lightweight bool - signature_type_t - signature_type; ///< 0 in originated case - ///< An implicit contract with signature_type of 0 means not present - uint8_t hash[HASH_SIZE]; ///< hash of the contract + uint8_t originated; ///< a lightweight bool + signature_type_t signature_type; /**< 0 in originated case + An implicit contract with signature_type of 0 + means not present*/ + uint8_t hash[HASH_SIZE]; ///< hash of the contract } parsed_contract_t; /** diff --git a/src/ui_bagl.c b/src/ui_bagl.c index 3159f62c..7d9db4ca 100644 --- a/src/ui_bagl.c +++ b/src/ui_bagl.c @@ -46,11 +46,15 @@ typedef struct { char chain_id[CHAIN_ID_BASE58_STRING_SIZE]; char authorized_key[PKH_STRING_SIZE]; char hwm[MAX_INT_DIGITS + 1u + MAX_INT_DIGITS + 1u]; + char hwm_status[HWM_STATUS_SIZE]; } HomeContext_t; /// Current home context static HomeContext_t home_context; +void ui_settings(void); ///> Initialize settings page +void ui_toggle_hwm(void); ///> Toggle HWM settings +void ui_menu_init(void); ///> Load main menu page /** * @brief Idle flow * @@ -66,6 +70,7 @@ UX_STEP_NOCB(ux_app_is_ready_step, nn, {"Application", "is ready"}); UX_STEP_NOCB(ux_version_step, bnnn_paging, {"Tezos Baking", APPVERSION}); UX_STEP_NOCB(ux_chain_id_step, bnnn_paging, {"Chain", home_context.chain_id}); UX_STEP_NOCB(ux_authorized_key_step, bnnn_paging, {"Public Key Hash", home_context.authorized_key}); +UX_STEP_CB(ux_settings_step, pb, ui_settings(), {&C_icon_coggle, "Settings"}); UX_STEP_NOCB(ux_hwm_step, bnnn_paging, {"High Watermark", home_context.hwm}); UX_STEP_CB(ux_idle_quit_step, pb, app_exit(), {&C_icon_dashboard_x, "Quit"}); @@ -75,9 +80,34 @@ UX_FLOW(ux_idle_flow, &ux_chain_id_step, &ux_authorized_key_step, &ux_hwm_step, + &ux_settings_step, &ux_idle_quit_step, FLOW_LOOP); +void ui_menu_init(void) { + ux_flow_init(0, ux_idle_flow, NULL); +} + +UX_STEP_CB(ux_hwm_info, bn, ui_toggle_hwm(), {"High Watermark", home_context.hwm_status}); +UX_STEP_CB(ux_menu_back_step, pb, ui_menu_init(), {&C_icon_back, "Back"}); + +// FLOW for the about submenu: +// #1 screen: app info +// #2 screen: back button to main menu +UX_FLOW(ux_settings_flow, &ux_hwm_info, &ux_menu_back_step, FLOW_LOOP); + +void ui_settings(void) { + hwm_status_to_string(home_context.hwm_status, + sizeof(home_context.hwm_status), + &N_data.hwm_disabled); + ux_flow_init(0, ux_settings_flow, NULL); +} + +void ui_toggle_hwm(void) { + toggle_hwm(); + ui_settings(); +} + /** * @brief Calculates baking values for the idle screens * @@ -106,6 +136,10 @@ static bool calculate_baking_idle_screens_data(void) { TZ_ASSERT(hwm_to_string(home_context.hwm, sizeof(home_context.hwm), &N_data.hwm.main) >= 0, EXC_WRONG_LENGTH); + TZ_ASSERT(hwm_status_to_string(home_context.hwm_status, + sizeof(home_context.hwm_status), + &N_data.hwm_disabled) >= 0, + EXC_WRONG_LENGTH); return true; @@ -121,7 +155,7 @@ void ui_initial_screen(void) { } if (calculate_baking_idle_screens_data()) { - ux_flow_init(0, ux_idle_flow, NULL); + ui_menu_init(); } } diff --git a/src/ui_nbgl.c b/src/ui_nbgl.c index 20fdc894..96b9906e 100644 --- a/src/ui_nbgl.c +++ b/src/ui_nbgl.c @@ -50,6 +50,16 @@ static const char* const bakeInfoTypes[] = { "High Watermark", }; +enum { + HWM_ENABLED_TOKEN = FIRST_USER_TOKEN +}; +enum { + HWM_ENABLED_TOKEN_ID = 0, + SETTINGS_SWITCHES_NB +}; + +static nbgl_layoutSwitch_t switches[SETTINGS_SWITCHES_NB] = {0}; + /** * @brief Callback to fill the settings page content * @@ -58,7 +68,7 @@ static const char* const bakeInfoTypes[] = { * @return bool: if the page is not out of bounds */ static bool navigation_cb_baking(uint8_t page, nbgl_pageContent_t* content) { - if (page > 1u) { + if (page > 2u) { return false; } @@ -67,6 +77,7 @@ static bool navigation_cb_baking(uint8_t page, nbgl_pageContent_t* content) { bakeInfoContents[0] = buffer[0]; bakeInfoContents[1] = buffer[1]; bakeInfoContents[2] = buffer[2]; + const bool hwm_disabled = N_data.hwm_disabled; TZ_ASSERT( chain_id_to_string_with_aliases(buffer[0], sizeof(buffer[0]), &N_data.main_chain_id) >= 0, @@ -81,41 +92,72 @@ static bool navigation_cb_baking(uint8_t page, nbgl_pageContent_t* content) { TZ_ASSERT(hwm_to_string(buffer[2], sizeof(buffer[2]), &N_data.hwm.main) >= 0, EXC_WRONG_LENGTH); - if (page == 0u) { - content->type = INFOS_LIST; - content->infosList.nbInfos = 3; - content->infosList.infoTypes = bakeInfoTypes; - content->infosList.infoContents = bakeInfoContents; - } else { - content->type = INFOS_LIST; - content->infosList.nbInfos = 3; - content->infosList.infoTypes = infoTypes; - content->infosList.infoContents = infoContents; + switch (page) { + case 0: + content->type = INFOS_LIST; + content->infosList.nbInfos = 3; + content->infosList.infoTypes = bakeInfoTypes; + content->infosList.infoContents = bakeInfoContents; + break; + case 1: + switches[HWM_ENABLED_TOKEN_ID].initState = (nbgl_state_t) (!hwm_disabled); + switches[HWM_ENABLED_TOKEN_ID].text = "High Watermark"; + switches[HWM_ENABLED_TOKEN_ID].subText = "Track high watermark\n in Ledger"; + switches[HWM_ENABLED_TOKEN_ID].token = HWM_ENABLED_TOKEN; + switches[HWM_ENABLED_TOKEN_ID].tuneId = TUNE_TAP_CASUAL; + content->type = SWITCHES_LIST; + content->switchesList.nbSwitches = SETTINGS_SWITCHES_NB; + content->switchesList.switches = (nbgl_layoutSwitch_t*) switches; + break; + case 2: + content->type = INFOS_LIST; + content->infosList.nbInfos = 3; + content->infosList.infoTypes = infoTypes; + content->infosList.infoContents = infoContents; + break; + default: + return false; } - return true; - end: TZ_EXC_PRINT(exc); return true; } +static void controls_callback(int token, uint8_t index) { + UNUSED(index); + if (token == HWM_ENABLED_TOKEN) { + toggle_hwm(); + } +} + +#define TOTAL_SETTINGS_PAGE (3) +#define INIT_SETTINGS_PAGE (0) +#define DISABLE_SUB_SETTINGS false + /** * @brief Draws settings pages * */ static void ui_menu_about_baking(void) { nbgl_useCaseSettings("Tezos baking", - 0, - 2, - false, + INIT_SETTINGS_PAGE, + TOTAL_SETTINGS_PAGE, + DISABLE_SUB_SETTINGS, ui_initial_screen, navigation_cb_baking, - NULL); + controls_callback); } +#define SETTINGS_BUTTON_ENABLED (true) + void ui_initial_screen(void) { - nbgl_useCaseHome("Tezos Baking", &C_tezos, NULL, false, ui_menu_about_baking, app_exit); + nbgl_useCaseHome("Tezos Baking", + &C_tezos, + NULL, + SETTINGS_BUTTON_ENABLED, + ui_menu_about_baking, + app_exit); } #endif // HAVE_NBGL diff --git a/test/snapshots/nanos/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanos/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanos/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanos/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanos/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanos/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_deauthorize/app_context/settings.png b/test/snapshots/nanos/test_deauthorize/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_deauthorize/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_reset_app_context/app_context/settings.png b/test/snapshots/nanos/test_reset_app_context/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_reset_app_context/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png new file mode 100644 index 00000000..b5c1b1cb Binary files /dev/null and b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png differ diff --git a/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png new file mode 100644 index 00000000..0417b8fc Binary files /dev/null and b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png differ diff --git a/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png new file mode 100644 index 00000000..0597aed5 Binary files /dev/null and b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png differ diff --git a/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png new file mode 100644 index 00000000..b5c1b1cb Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png new file mode 100644 index 00000000..0417b8fc Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png new file mode 100644 index 00000000..0597aed5 Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png new file mode 100644 index 00000000..b5c1b1cb Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png new file mode 100644 index 00000000..0417b8fc Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png new file mode 100644 index 00000000..0597aed5 Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png differ diff --git a/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png new file mode 100644 index 00000000..b5c1b1cb Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png new file mode 100644 index 00000000..0417b8fc Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png new file mode 100644 index 00000000..0597aed5 Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png new file mode 100644 index 00000000..b5c1b1cb Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png new file mode 100644 index 00000000..0417b8fc Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png new file mode 100644 index 00000000..0597aed5 Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png differ diff --git a/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png differ diff --git a/test/snapshots/nanos/test_review_home/back.png b/test/snapshots/nanos/test_review_home/back.png new file mode 100644 index 00000000..b5c1b1cb Binary files /dev/null and b/test/snapshots/nanos/test_review_home/back.png differ diff --git a/test/snapshots/nanos/test_review_home/hwm_status_disabled.png b/test/snapshots/nanos/test_review_home/hwm_status_disabled.png new file mode 100644 index 00000000..0417b8fc Binary files /dev/null and b/test/snapshots/nanos/test_review_home/hwm_status_disabled.png differ diff --git a/test/snapshots/nanos/test_review_home/hwm_status_enabled.png b/test/snapshots/nanos/test_review_home/hwm_status_enabled.png new file mode 100644 index 00000000..0597aed5 Binary files /dev/null and b/test/snapshots/nanos/test_review_home/hwm_status_enabled.png differ diff --git a/test/snapshots/nanos/test_review_home/settings.png b/test/snapshots/nanos/test_review_home/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_review_home/settings.png differ diff --git a/test/snapshots/nanos/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanos/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanos/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanos/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanos/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanos/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_attestation_dal/app_context/settings.png b/test/snapshots/nanos/test_sign_attestation_dal/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_attestation_dal/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanos/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanos/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanos/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanos/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanos/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_block/app_context/settings.png b/test/snapshots/nanos/test_sign_block/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_block/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanos/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanos/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanos/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanos/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanos/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_preattestation/app_context/settings.png b/test/snapshots/nanos/test_sign_preattestation/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_preattestation/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png b/test/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png b/test/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png b/test/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png differ diff --git a/test/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png b/test/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png new file mode 100644 index 00000000..34cf547a Binary files /dev/null and b/test/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanosp/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanosp/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanosp/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanosp/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanosp/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_deauthorize/app_context/settings.png b/test/snapshots/nanosp/test_deauthorize/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_deauthorize/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_reset_app_context/app_context/settings.png b/test/snapshots/nanosp/test_reset_app_context/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_reset_app_context/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png differ diff --git a/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png differ diff --git a/test/snapshots/nanosp/test_review_home/back.png b/test/snapshots/nanosp/test_review_home/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/back.png differ diff --git a/test/snapshots/nanosp/test_review_home/hwm_status_disabled.png b/test/snapshots/nanosp/test_review_home/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/hwm_status_disabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/hwm_status_enabled.png b/test/snapshots/nanosp/test_review_home/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/hwm_status_enabled.png differ diff --git a/test/snapshots/nanosp/test_review_home/settings.png b/test/snapshots/nanosp/test_review_home/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_review_home/settings.png differ diff --git a/test/snapshots/nanosp/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanosp/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanosp/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanosp/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanosp/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanosp/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_attestation_dal/app_context/settings.png b/test/snapshots/nanosp/test_sign_attestation_dal/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_attestation_dal/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_block/app_context/settings.png b/test/snapshots/nanosp/test_sign_block/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_block/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_preattestation/app_context/settings.png b/test/snapshots/nanosp/test_sign_preattestation/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_preattestation/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png b/test/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png b/test/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png b/test/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png differ diff --git a/test/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png b/test/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanox/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanox/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanox/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanox/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanox/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_deauthorize/app_context/settings.png b/test/snapshots/nanox/test_deauthorize/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_deauthorize/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_reset_app_context/app_context/settings.png b/test/snapshots/nanox/test_reset_app_context/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_reset_app_context/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/back.png differ diff --git a/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_disabled.png differ diff --git a/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_enabled.png differ diff --git a/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/settings.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/back.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_disabled.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_enabled.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/settings.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/back.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_disabled.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_enabled.png differ diff --git a/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/settings.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/back.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_disabled.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_enabled.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/settings.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/back.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_disabled.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_enabled.png differ diff --git a/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/settings.png differ diff --git a/test/snapshots/nanox/test_review_home/back.png b/test/snapshots/nanox/test_review_home/back.png new file mode 100644 index 00000000..e06738f4 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/back.png differ diff --git a/test/snapshots/nanox/test_review_home/hwm_status_disabled.png b/test/snapshots/nanox/test_review_home/hwm_status_disabled.png new file mode 100644 index 00000000..6be9b9c2 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/hwm_status_disabled.png differ diff --git a/test/snapshots/nanox/test_review_home/hwm_status_enabled.png b/test/snapshots/nanox/test_review_home/hwm_status_enabled.png new file mode 100644 index 00000000..179104fa Binary files /dev/null and b/test/snapshots/nanox/test_review_home/hwm_status_enabled.png differ diff --git a/test/snapshots/nanox/test_review_home/settings.png b/test/snapshots/nanox/test_review_home/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_review_home/settings.png differ diff --git a/test/snapshots/nanox/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanox/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanox/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanox/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanox/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanox/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_attestation_dal/app_context/settings.png b/test/snapshots/nanox/test_sign_attestation_dal/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_attestation_dal/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_block/app_context/settings.png b/test/snapshots/nanox/test_sign_block/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_block/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png b/test/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png b/test/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png b/test/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png b/test/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png b/test/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_preattestation/app_context/settings.png b/test/snapshots/nanox/test_sign_preattestation/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_preattestation/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png b/test/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png b/test/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png b/test/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/settings.png differ diff --git a/test/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png b/test/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png new file mode 100644 index 00000000..d885fe67 Binary files /dev/null and b/test/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/settings.png differ diff --git a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png and b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png differ diff --git a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png and b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png and b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png and b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png and b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png and b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_deauthorize/app_context/home_screen.png b/test/snapshots/stax/test_deauthorize/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_deauthorize/app_context/home_screen.png and b/test/snapshots/stax/test_deauthorize/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_deauthorize/app_context/hwm_status.png b/test/snapshots/stax/test_deauthorize/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_deauthorize/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png b/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png and b/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png and b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png and b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png b/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png and b/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png b/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png and b/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png b/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png and b/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png and b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png and b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png b/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png and b/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png b/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png and b/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png differ diff --git a/test/snapshots/stax/test_reset_app_context/00004.png b/test/snapshots/stax/test_reset_app_context/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_reset_app_context/00004.png and b/test/snapshots/stax/test_reset_app_context/00004.png differ diff --git a/test/snapshots/stax/test_reset_app_context/app_context/home_screen.png b/test/snapshots/stax/test_reset_app_context/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_reset_app_context/app_context/home_screen.png and b/test/snapshots/stax/test_reset_app_context/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_reset_app_context/app_context/hwm_status.png b/test/snapshots/stax/test_reset_app_context/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_reset_app_context/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/home_screen.png b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/home_screen.png and b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/home_screen.png differ diff --git a/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status.png b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_off.png b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_off.png new file mode 100644 index 00000000..ea8cb6b1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_off.png differ diff --git a/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_on.png b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_on.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_status_on.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/home_screen.png b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/home_screen.png and b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/home_screen.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status.png b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_off.png b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_off.png new file mode 100644 index 00000000..ea8cb6b1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_off.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_on.png b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_on.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_status_on.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/home_screen.png b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/home_screen.png and b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/home_screen.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status.png b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_off.png b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_off.png new file mode 100644 index 00000000..ea8cb6b1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_off.png differ diff --git a/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_on.png b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_on.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_status_on.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/home_screen.png b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/home_screen.png and b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/home_screen.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status.png b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_off.png b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_off.png new file mode 100644 index 00000000..ea8cb6b1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_off.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_on.png b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_on.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_status_on.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/home_screen.png b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/home_screen.png and b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/home_screen.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status.png b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_off.png b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_off.png new file mode 100644 index 00000000..ea8cb6b1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_off.png differ diff --git a/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_on.png b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_on.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_status_on.png differ diff --git a/test/snapshots/stax/test_review_home/home_screen.png b/test/snapshots/stax/test_review_home/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_review_home/home_screen.png and b/test/snapshots/stax/test_review_home/home_screen.png differ diff --git a/test/snapshots/stax/test_review_home/hwm_status.png b/test/snapshots/stax/test_review_home/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/hwm_status.png differ diff --git a/test/snapshots/stax/test_review_home/hwm_status_off.png b/test/snapshots/stax/test_review_home/hwm_status_off.png new file mode 100644 index 00000000..ea8cb6b1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/hwm_status_off.png differ diff --git a/test/snapshots/stax/test_review_home/hwm_status_on.png b/test/snapshots/stax/test_review_home/hwm_status_on.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_review_home/hwm_status_on.png differ diff --git a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png and b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png differ diff --git a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png and b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00005.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png and b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00005.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png and b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png and b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00005.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png and b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png b/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_attestation_dal/app_context/home_screen.png b/test/snapshots/stax/test_sign_attestation_dal/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_attestation_dal/app_context/home_screen.png and b/test/snapshots/stax/test_sign_attestation_dal/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png and b/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png b/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png and b/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png b/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png and b/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png b/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png and b/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png b/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png and b/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png b/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_block/app_context/home_screen.png b/test/snapshots/stax/test_sign_block/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_block/app_context/home_screen.png and b/test/snapshots/stax/test_sign_block/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png b/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png and b/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00004.png differ diff --git a/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png b/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png and b/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00004.png differ diff --git a/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00004.png b/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00004.png and b/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00004.png differ diff --git a/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00004.png b/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00004.png and b/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00004.png differ diff --git a/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00004.png b/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00004.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00004.png and b/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00004.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png and b/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png b/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png and b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png and b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png and b/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png b/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png and b/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png b/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_preattestation/app_context/home_screen.png b/test/snapshots/stax/test_sign_preattestation/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_preattestation/app_context/home_screen.png and b/test/snapshots/stax/test_sign_preattestation/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png and b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/hwm_status.png b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png and b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/hwm_status.png b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png and b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/hwm_status.png b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/hwm_status.png differ diff --git a/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png index 6ea5bca0..932d9e23 100644 Binary files a/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png and b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/hwm_status.png b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/hwm_status.png new file mode 100644 index 00000000..9d3701f1 Binary files /dev/null and b/test/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/hwm_status.png differ diff --git a/test/test_instructions.py b/test/test_instructions.py index 8823e1c9..2c69c5e4 100644 --- a/test/test_instructions.py +++ b/test/test_instructions.py @@ -102,12 +102,16 @@ def both(): right() screen("high_watermark") right() + screen("settings") + right() screen("exit") right() screen("home_screen") left() screen("exit") left() + screen("settings") + left() screen("high_watermark") left() if account is not None and firmware.device == "nanos": @@ -129,17 +133,41 @@ def both(): left() screen("exit") left() + screen("settings") + left() screen("high_watermark") - else: + right() + # Check settings menu + screen("settings") + both() + screen("hwm_status_enabled") + both() + screen("hwm_status_disabled") + right() + screen("back") + both() screen("home_screen") + left() + screen("exit") + right() + screen("home_screen") + left() + else: + backend.wait_for_home_screen() tezos_navigator.home.settings() backend.wait_for_screen_change() screen("app_context") tezos_navigator.settings.next() backend.wait_for_screen_change() + screen("hwm_status") + tezos_navigator.settings.next() + backend.wait_for_screen_change() screen("description") tezos_navigator.settings.previous() backend.wait_for_screen_change() + screen("hwm_status") + tezos_navigator.settings.previous() + backend.wait_for_screen_change() screen("app_context") tezos_navigator.settings.multi_page_exit() backend.wait_for_screen_change() @@ -149,13 +177,25 @@ def both(): screen("app_context") tezos_navigator.settings.next() backend.wait_for_screen_change() + screen("hwm_status_on") + tezos_navigator.layout_choice.choose(1) + backend.wait_for_screen_change() + screen("hwm_status_off") + tezos_navigator.layout_choice.choose(1) + backend.wait_for_screen_change() + screen("hwm_status_on") + tezos_navigator.settings.next() + backend.wait_for_screen_change() screen("description") tezos_navigator.settings.previous() backend.wait_for_screen_change() + screen("hwm_status_on") + tezos_navigator.settings.previous() + backend.wait_for_screen_change() screen("app_context") tezos_navigator.settings.next() backend.wait_for_screen_change() - screen("description") + screen("hwm_status_on") tezos_navigator.settings.multi_page_exit() backend.wait_for_screen_change() screen("home_screen") diff --git a/test/utils/client.py b/test/utils/client.py index 377833b6..ddde645c 100644 --- a/test/utils/client.py +++ b/test/utils/client.py @@ -195,9 +195,13 @@ class TezosClient: backend: BackendInterface + def __init__(self, backend) -> None: self.backend = backend + def finger_touch(self, x: int = 0, y: int = 0, delay: float = 0.5) -> None: + self.backend.finger_touch(x,y,delay) + def _exchange(self, ins: Ins, index: Index = Index.FIRST, diff --git a/test/utils/navigator.py b/test/utils/navigator.py index c752b631..aac24fb4 100644 --- a/test/utils/navigator.py +++ b/test/utils/navigator.py @@ -25,6 +25,7 @@ from ragger.backend import BackendInterface from ragger.firmware import Firmware from ragger.firmware.stax.screen import MetaScreen +from ragger.firmware.stax.layouts import ChoiceList from ragger.firmware.stax.use_cases import ( UseCaseHome, UseCaseSettings, @@ -83,11 +84,13 @@ class TezosNavigator(metaclass=MetaScreen): use_case_settings = UseCaseSettings use_case_review = UseCaseReview use_case_provide_pk = UseCaseAddressConfirmation + layout_choice_list = ChoiceList - home: UseCaseHome - settings: UseCaseSettings - review: UseCaseReview - provide_pk: TezosUseCaseAddressConfirmation + home: UseCaseHome + settings: UseCaseSettings + review: UseCaseReview + provide_pk: TezosUseCaseAddressConfirmation + layout_choice: ChoiceList backend: BackendInterface firmware: Firmware @@ -111,6 +114,7 @@ def __init__(self, self.firmware = firmware self.client = client self.navigator = navigator + self.layout_choice = ChoiceList(client, firmware) self._golden_run = golden_run self._root_dir = TESTS_ROOT_DIR @@ -221,6 +225,9 @@ def check_app_context(self, self.assert_screen("high_watermark", snap_path=snap_path) self.backend.right_click() self.backend.wait_for_screen_change() + self.assert_screen("settings", snap_path=snap_path) + self.backend.right_click() + self.backend.wait_for_screen_change() self.assert_screen("exit", snap_path=snap_path) self.backend.right_click() self.backend.wait_for_screen_change() @@ -232,6 +239,9 @@ def check_app_context(self, self.assert_screen("app_context", snap_path=snap_path) self.settings.next() self.backend.wait_for_screen_change() + self.assert_screen("hwm_status", snap_path=snap_path) + self.settings.next() + self.backend.wait_for_screen_change() self.assert_screen("description", snap_path=snap_path) self.settings.multi_page_exit() self.backend.wait_for_screen_change() @@ -284,6 +294,9 @@ def goto_home_hwm(self, snap_path: Path = Path("")) -> Generator[None, None, Non self.assert_screen("exit", snap_path=snap_path) self.backend.left_click() self.backend.wait_for_screen_change() + self.assert_screen("settings", snap_path=snap_path) + self.backend.left_click() + self.backend.wait_for_screen_change() else: self.assert_screen("home_screen", snap_path=snap_path) self.home.settings() @@ -292,6 +305,9 @@ def goto_home_hwm(self, snap_path: Path = Path("")) -> Generator[None, None, Non yield if self.firmware.is_nano: + self.backend.right_click() + self.backend.wait_for_screen_change() + self.assert_screen("settings", snap_path=snap_path) self.backend.right_click() self.backend.wait_for_screen_change() self.assert_screen("exit", snap_path=snap_path)