diff --git a/src/apdu_sign.c b/src/apdu_sign.c index 95bc94a8..e686ae3f 100644 --- a/src/apdu_sign.c +++ b/src/apdu_sign.c @@ -90,12 +90,14 @@ static bool sign_reject(void) { } size_t baking_sign_complete(bool const send_hash, volatile uint32_t *flags) { + size_t result = 0; switch (G.magic_byte) { case MAGIC_BYTE_BLOCK: case MAGIC_BYTE_PREENDORSEMENT: case MAGIC_BYTE_ENDORSEMENT: guard_baking_authorized(&G.parsed_baking_data, &global.path_with_curve); - return perform_signature(true, send_hash); + result = perform_signature(true, send_hash); + ux_empty_screen(); break; case MAGIC_BYTE_UNSAFE_OP: { @@ -113,28 +115,31 @@ size_t baking_sign_complete(bool const send_hash, volatile uint32_t *flags) { send_hash ? sign_with_hash_ok : sign_without_hash_ok; prompt_register_delegate(ok_c, sign_reject); *flags = IO_ASYNCH_REPLY; - return 0; + result = 0; + } else { + THROW(EXC_SECURITY); } - THROW(EXC_SECURITY); break; case OPERATION_TAG_REVEAL: case OPERATION_TAG_NONE: // Reveal cases if (bip32_path_with_curve_eq(&global.path_with_curve, &N_data.baking_key) && // ops->signing is generated from G.bip32_path and G.curve - COMPARE(&G.maybe_ops.v.operation.source, &G.maybe_ops.v.signing) == 0) - return perform_signature(true, send_hash); - THROW(EXC_SECURITY); + COMPARE(&G.maybe_ops.v.operation.source, &G.maybe_ops.v.signing) == 0) { + result = perform_signature(true, send_hash); + } else { + THROW(EXC_SECURITY); + } break; default: THROW(EXC_SECURITY); } - THROW(EXC_SECURITY); break; } default: PARSE_ERROR(); } + return result; } #define P1_FIRST 0x00 @@ -160,6 +165,9 @@ static size_t handle_apdu(bool const enable_hashing, bool const enable_parsing, uint8_t const instruction, volatile uint32_t *flags) { + if (os_global_pin_is_validated() != BOLOS_UX_OK) { + THROW(EXC_SECURITY); + } uint8_t *const buff = &G_io_apdu_buffer[OFFSET_CDATA]; uint8_t const p1 = G_io_apdu_buffer[OFFSET_P1]; uint8_t const buff_size = G_io_apdu_buffer[OFFSET_LC]; @@ -251,8 +259,11 @@ size_t handle_apdu_sign_with_hash(uint8_t instruction, volatile uint32_t *flags) } int perform_signature(bool const on_hash, bool const send_hash) { - write_high_water_mark(&G.parsed_baking_data); + if (os_global_pin_is_validated() != BOLOS_UX_OK) { + THROW(EXC_SECURITY); + } + write_high_water_mark(&G.parsed_baking_data); size_t tx = 0; if (send_hash && on_hash) { memcpy(&G_io_apdu_buffer[tx], G.final_hash, sizeof(G.final_hash)); diff --git a/src/globals.h b/src/globals.h index eeea9285..d2e5b43d 100644 --- a/src/globals.h +++ b/src/globals.h @@ -95,6 +95,8 @@ typedef struct { char screen_title[PROMPT_WIDTH + 1]; // Value to be displayed on the screen. char screen_value[VALUE_WIDTH + 1]; + // Screensaver is on/off. + bool is_blank_screen; } dynamic_display; void *stack_root; diff --git a/src/ui.h b/src/ui.h index e52c3cef..ca565078 100644 --- a/src/ui.h +++ b/src/ui.h @@ -17,6 +17,7 @@ void ux_confirm_screen(ui_callback_t ok_c, ui_callback_t cxl_c); void ux_idle_screen(ui_callback_t ok_c, ui_callback_t cxl_c); +void ux_empty_screen(void); /* Initializes the formatter stack. Should be called once before calling `push_ui_callback()`. */ void init_screen_stack(); /* User MUST call `init_screen_stack()` before calling this function for the first time. */ diff --git a/src/ui_bagl.c b/src/ui_bagl.c index b63ca280..e70c5b0b 100644 --- a/src/ui_bagl.c +++ b/src/ui_bagl.c @@ -64,12 +64,13 @@ UX_STEP_NOCB(ux_variable_display, }); UX_STEP_INIT(ux_init_lower_border, NULL, NULL, { display_next_state(false); }); -UX_STEP_NOCB(ux_app_is_ready_step, - nn, - { - "Application", - "is ready", - }); +UX_STEP_CB(ux_app_is_ready_step, + nn, + ux_empty_screen(), + { + "Application", + "is ready", + }); UX_STEP_CB(ux_idle_quit_step, pb, diff --git a/src/ui_empty.c b/src/ui_empty.c new file mode 100644 index 00000000..3d2c948a --- /dev/null +++ b/src/ui_empty.c @@ -0,0 +1,55 @@ +#ifdef HAVE_BAGL +#include "bolos_target.h" +#include "globals.h" +#include "ui.h" + +const bagl_element_t empty_screen_elements[] = {{{BAGL_RECTANGLE, + BAGL_NONE, + 0, + 0, + BAGL_WIDTH, + BAGL_HEIGHT, + 0, + 0, + BAGL_FILL, + 0x000000, + 0xFFFFFF, + 0, + 0}, + .text = NULL}, + {}}; + +typedef struct ux_layout_empty_params_s { +} ux_layout_empty_params_t; + +void ux_layout_empty_init(unsigned int stack_slot) { + ux_stack_init(stack_slot); + G_ux.stack[stack_slot].element_arrays[0].element_array = empty_screen_elements; + G_ux.stack[stack_slot].element_arrays[0].element_array_count = ARRAYLEN(empty_screen_elements); + G_ux.stack[stack_slot].element_arrays_count = 1; + G_ux.stack[stack_slot].button_push_callback = ux_flow_button_callback; + ux_stack_display(stack_slot); +} + +void ux_layout_empty_screen_init(__attribute__((unused)) unsigned int x) { +} + +void return_to_idle() { + global.dynamic_display.is_blank_screen = false; + ux_idle_screen(NULL, NULL); +} + +UX_STEP_CB(empty_screen_step, empty, return_to_idle(), {}); +UX_STEP_INIT(empty_screen_border, NULL, NULL, { return_to_idle(); }); +UX_FLOW(ux_empty_flow, &empty_screen_step, &empty_screen_border, FLOW_LOOP); + +void ux_empty_screen() { + if (global.dynamic_display.is_blank_screen == false) { + global.dynamic_display.is_blank_screen = true; + ux_flow_init(0, ux_empty_flow, NULL); + } +} +#else +void ux_empty_screen() { +} +#endif diff --git a/test/python/snapshots/nanos/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..34037194 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/chain_id.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png similarity index 100% rename from test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/chain_id.png rename to test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/high_watermark.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png similarity index 100% rename from test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/high_watermark.png rename to test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/public_key_hash_1.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash_1.png similarity index 100% rename from test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/public_key_hash_1.png rename to test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash_1.png diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/public_key_hash_2.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash_2.png similarity index 100% rename from test/python/snapshots/nanos/test_sign_when_chain_is_setup/app_context/public_key_hash_2.png rename to test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash_2.png diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..34037194 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png new file mode 100644 index 00000000..13fd7604 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png new file mode 100644 index 00000000..0cccb5b4 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash_1.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash_1.png new file mode 100644 index 00000000..50537f75 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash_1.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash_2.png b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash_2.png new file mode 100644 index 00000000..a30fbd95 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash_2.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..34037194 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..34037194 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..ce795f34 Binary files /dev/null and b/test/python/snapshots/nanos/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/app_context/chain_id.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png similarity index 100% rename from test/python/snapshots/nanosp/test_sign_when_chain_is_setup/app_context/chain_id.png rename to test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/app_context/high_watermark.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png similarity index 100% rename from test/python/snapshots/nanosp/test_sign_when_chain_is_setup/app_context/high_watermark.png rename to test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/app_context/public_key_hash.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash.png similarity index 100% rename from test/python/snapshots/nanosp/test_sign_when_chain_is_setup/app_context/public_key_hash.png rename to test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash.png diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/app_context/chain_id.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png similarity index 100% rename from test/python/snapshots/nanox/test_sign_when_chain_is_setup/app_context/chain_id.png rename to test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/app_context/high_watermark.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png similarity index 100% rename from test/python/snapshots/nanox/test_sign_when_chain_is_setup/app_context/high_watermark.png rename to test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png diff --git a/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/app_context/public_key_hash.png b/test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash.png similarity index 100% rename from test/python/snapshots/nanox/test_sign_when_chain_is_setup/app_context/public_key_hash.png rename to test/python/snapshots/nanosp/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash.png diff --git a/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanosp/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png index 65788722..1521a407 100644 Binary files a/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png and b/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png new file mode 100644 index 00000000..8795bcf1 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/chain_id.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png new file mode 100644 index 00000000..a970fc01 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/high_watermark.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash.png new file mode 100644 index 00000000..a2b2f3cf Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_1_0/app_context/public_key_hash.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png new file mode 100644 index 00000000..8795bcf1 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/chain_id.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png new file mode 100644 index 00000000..a970fc01 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/high_watermark.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash.png b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash.png new file mode 100644 index 00000000..a2b2f3cf Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_chain_is_setup/sign_2_0/app_context/public_key_hash.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..1521a407 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..65788722 Binary files /dev/null and b/test/python/snapshots/nanox/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_chain_is_setup/app_context/app_context.png b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/app_context.png similarity index 100% rename from test/python/snapshots/stax/test_sign_when_chain_is_setup/app_context/app_context.png rename to test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/app_context.png diff --git a/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/app_context.png b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/app_context.png new file mode 100644 index 00000000..b6aec4c6 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/app_context.png differ diff --git a/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_chain_is_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_1_0/app_context/home_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/black_screen.png differ diff --git a/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png new file mode 100644 index 00000000..4da782e9 Binary files /dev/null and b/test/python/snapshots/stax/test_sign_when_no_chain_setup/sign_2_0/app_context/home_screen.png differ diff --git a/test/python/test_instructions.py b/test/python/test_instructions.py index 1366f596..ced216ca 100644 --- a/test/python/test_instructions.py +++ b/test/python/test_instructions.py @@ -331,17 +331,13 @@ def test_sign_preattestation( f"Expected hash {preattestation.hash.hex()} but got {preattestation_hash.hex()}" account.check_signature(signature, bytes(preattestation)) - tezos_navigator.assert_screen( - name="black_screen", - snap_path=snap_path / "app_context" - ) - tezos_navigator.check_app_context( account, chain_id=main_chain_id, main_hwm=Hwm(1, 2), test_hwm=Hwm(0, 0), - snap_path=snap_path + snap_path=snap_path, + black_screen=True ) @@ -381,17 +377,13 @@ def test_sign_attestation( f"Expected hash {attestation.hash.hex()} but got {attestation_hash.hex()}" account.check_signature(signature, bytes(attestation)) - tezos_navigator.assert_screen( - name="black_screen", - snap_path=snap_path / "app_context" - ) - tezos_navigator.check_app_context( account, chain_id=main_chain_id, main_hwm=Hwm(1, 2), test_hwm=Hwm(0, 0), - snap_path=snap_path + snap_path=snap_path, + black_screen=True ) @@ -431,17 +423,13 @@ def test_sign_attestation_dal( f"Expected hash {attestation.hash.hex()} but got {attestation_hash.hex()}" account.check_signature(signature, bytes(attestation)) - tezos_navigator.assert_screen( - name="black_screen", - snap_path=snap_path / "app_context" - ) - tezos_navigator.check_app_context( account, chain_id=main_chain_id, main_hwm=Hwm(1, 2), test_hwm=Hwm(0, 0), - snap_path=snap_path + snap_path=snap_path, + black_screen=True ) @@ -481,17 +469,13 @@ def test_sign_block( f"Expected hash {block.hash.hex()} but got {block_hash.hex()}" account.check_signature(signature, bytes(block)) - tezos_navigator.assert_screen( - name="black_screen", - snap_path=snap_path / "app_context" - ) - tezos_navigator.check_app_context( account, chain_id=main_chain_id, main_hwm=Hwm(1, 2), test_hwm=Hwm(0, 0), - snap_path=snap_path + snap_path=snap_path, + black_screen=True ) @@ -1001,7 +985,8 @@ def test_sign_when_no_chain_setup( chain_id=DEFAULT_CHAIN_ID, main_hwm=Hwm(1, 0), test_hwm=Hwm(0, 0), - snap_path=Path("sign_1_0") + snap_path=Path("sign_1_0"), + black_screen=True ) attestation = build_attestation( @@ -1016,7 +1001,8 @@ def test_sign_when_no_chain_setup( chain_id=DEFAULT_CHAIN_ID, main_hwm=Hwm(2, 0), test_hwm=Hwm(0, 0), - snap_path=Path("sign_2_0") + snap_path=Path("sign_2_0"), + black_screen=True ) attestation = build_attestation( @@ -1063,6 +1049,8 @@ def test_sign_when_chain_is_setup( chain_id=main_chain_id, main_hwm=Hwm(1, 0), test_hwm=Hwm(0, 0), + snap_path=Path("sign_1_0"), + black_screen=True ) attestation = build_attestation( @@ -1077,6 +1065,8 @@ def test_sign_when_chain_is_setup( chain_id=main_chain_id, main_hwm=Hwm(1, 0), test_hwm=Hwm(2, 0), + snap_path=Path("sign_2_0"), + black_screen=True ) attestation = build_attestation( @@ -1092,6 +1082,7 @@ def test_sign_when_chain_is_setup( chain_id=main_chain_id, main_hwm=Hwm(1, 0), test_hwm=Hwm(2, 0), + snap_path=Path("sign_2_0") ) diff --git a/test/python/utils/navigator.py b/test/python/utils/navigator.py index 21a2096e..036d4787 100644 --- a/test/python/utils/navigator.py +++ b/test/python/utils/navigator.py @@ -156,9 +156,20 @@ def check_app_context(self, chain_id: str, main_hwm: Hwm, test_hwm: Hwm, - snap_path: Path = Path("")) -> None: + snap_path: Path = Path(""), + black_screen: bool = False) -> None: """Check that the app context.""" + if black_screen: + self.assert_screen( + name="black_screen", + snap_path=snap_path / "app_context" + ) + self.backend.right_click() + self.assert_screen( + name="home_screen", + snap_path=snap_path / "app_context" + ) received_chain_id, received_main_hwm, received_test_hwm = self.client.get_all_hwm() assert received_chain_id == chain_id, \