diff --git a/Makefile b/Makefile index 970d2eb5..8197c4db 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ PATH_APP_LOAD_PARAMS = "44'/1729'" APPVERSION_M=2 APPVERSION_N=5 -APPVERSION_P=0 +APPVERSION_P=1 APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) # COMMIT diff --git a/README.md b/README.md index c2b7cf19..4ee06b7e 100644 --- a/README.md +++ b/README.md @@ -510,6 +510,11 @@ Following is a sample of measurements obtained with this app (Tezos Baking app v | Device | Derivation Type | Avg time/signature(milliseconds) | |--------|-------------------|----------------------------------| +| Flex | SECP256K1_tz2 | 214 | +| Flex | SECP256R1_tz3 | 215 | +| Flex | ED25519_tz1 | 456 | +| Flex | BIP32_ED25519_tz1 | 783 | +| | | | | Nanos+ | SECP256K1_tz2 | 229 | | Nanos+ | SECP256R1_tz3 | 226 | | Nanos+ | ED25519_tz1 | 465 | diff --git a/src/ui_nbgl.c b/src/ui_nbgl.c index c8d39850..d1ebe52a 100644 --- a/src/ui_nbgl.c +++ b/src/ui_nbgl.c @@ -48,11 +48,12 @@ typedef enum { VERSION_IDX, DEVELOPER_IDX, COPYRIGHT_IDX, + CONTACT_IDX, INFO_NB } tz_infoIndex_t; static const char* const infoTypes[INFO_NB] = - {"Chain", "Public Key Hash", "High Watermark", "Version", "Developer", "Copyright"}; + {"Chain", "Public Key Hash", "High Watermark", "Version", "Developer", "Copyright", "Contact"}; #define MAX_LENGTH 200 static const char* infoContents[INFO_NB]; @@ -92,11 +93,16 @@ static void initInfo(void) { TZ_ASSERT(copy_string(infoContentsBridge[VERSION_IDX], MAX_LENGTH, APPVERSION) >= 0, EXC_WRONG_LENGTH); - TZ_ASSERT(copy_string(infoContentsBridge[DEVELOPER_IDX], MAX_LENGTH, "Ledger") >= 0, - EXC_WRONG_LENGTH); + TZ_ASSERT( + copy_string(infoContentsBridge[DEVELOPER_IDX], MAX_LENGTH, "Trilitech Kanvas Ltd. et al") >= + 0, + EXC_WRONG_LENGTH); - TZ_ASSERT(copy_string(infoContentsBridge[COPYRIGHT_IDX], MAX_LENGTH, "(c) 2023 Ledger") >= 0, + TZ_ASSERT(copy_string(infoContentsBridge[COPYRIGHT_IDX], MAX_LENGTH, "(c) 2024 Trilitech") >= 0, EXC_WRONG_LENGTH); + TZ_ASSERT( + copy_string(infoContentsBridge[CONTACT_IDX], MAX_LENGTH, "ledger-tezos@trili.tech") >= 0, + EXC_WRONG_LENGTH); end: TZ_EXC_PRINT(exc); diff --git a/src/version.h b/src/version.h index 57e74e06..201fd9d0 100644 --- a/src/version.h +++ b/src/version.h @@ -23,18 +23,6 @@ #define CLASS 1 -#ifndef MAJOR_VERSION -#define MAJOR_VERSION 0 -#endif - -#ifndef MINOR_VERSION -#define MINOR_VERSION 0 -#endif - -#ifndef PATCH_VERSION -#define PATCH_VERSION 0 -#endif - /** * @brief This structure represents the version * diff --git a/test/snapshots/flex/description.png b/test/snapshots/flex/description.png index 4bda8927..f6de684a 100644 Binary files a/test/snapshots/flex/description.png and b/test/snapshots/flex/description.png differ diff --git a/test/snapshots/flex/description_2.png b/test/snapshots/flex/description_2.png new file mode 100644 index 00000000..d7c2dfd8 Binary files /dev/null and b/test/snapshots/flex/description_2.png differ diff --git a/test/snapshots/flex/test_reset_app_context/00000.png b/test/snapshots/flex/test_reset_app_context/00000.png index 03835357..7fc1f275 100644 Binary files a/test/snapshots/flex/test_reset_app_context/00000.png and b/test/snapshots/flex/test_reset_app_context/00000.png differ diff --git a/test/snapshots/flex/test_reset_app_context/00001.png b/test/snapshots/flex/test_reset_app_context/00001.png index 57c6d024..9e4a16e0 100644 Binary files a/test/snapshots/flex/test_reset_app_context/00001.png and b/test/snapshots/flex/test_reset_app_context/00001.png differ diff --git a/test/snapshots/flex/test_reset_app_context/00002.png b/test/snapshots/flex/test_reset_app_context/00002.png index d737cda2..66bcf2e8 100644 Binary files a/test/snapshots/flex/test_reset_app_context/00002.png and b/test/snapshots/flex/test_reset_app_context/00002.png differ diff --git a/test/snapshots/flex/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context_2.png b/test/snapshots/flex/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context_2.png index a510dfcc..1023d387 100644 Binary files a/test/snapshots/flex/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context_2.png and b/test/snapshots/flex/test_review_home/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/app_context_2.png differ diff --git a/test/snapshots/flex/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context_2.png b/test/snapshots/flex/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context_2.png index a510dfcc..1023d387 100644 Binary files a/test/snapshots/flex/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context_2.png and b/test/snapshots/flex/test_review_home/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/app_context_2.png differ diff --git a/test/snapshots/flex/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context_2.png b/test/snapshots/flex/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context_2.png index a510dfcc..1023d387 100644 Binary files a/test/snapshots/flex/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context_2.png and b/test/snapshots/flex/test_review_home/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/app_context_2.png differ diff --git a/test/snapshots/flex/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context_2.png b/test/snapshots/flex/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context_2.png index a510dfcc..1023d387 100644 Binary files a/test/snapshots/flex/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context_2.png and b/test/snapshots/flex/test_review_home/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/app_context_2.png differ diff --git a/test/snapshots/flex/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context_2.png b/test/snapshots/flex/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context_2.png index a510dfcc..1023d387 100644 Binary files a/test/snapshots/flex/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context_2.png and b/test/snapshots/flex/test_review_home/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/app_context_2.png differ diff --git a/test/snapshots/flex/test_review_home/app_context_2.png b/test/snapshots/flex/test_review_home/app_context_2.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_review_home/app_context_2.png and b/test/snapshots/flex/test_review_home/app_context_2.png differ diff --git a/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png b/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png index cc7f1909..9d1b7109 100644 Binary files a/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png and b/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png differ diff --git a/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png b/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png index 02fc0e8f..1eb3d175 100644 Binary files a/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png and b/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png differ diff --git a/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png b/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png index ac589ddd..6c58d534 100644 Binary files a/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png and b/test/snapshots/flex/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png differ diff --git a/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png b/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png index cc7f1909..9d1b7109 100644 Binary files a/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png and b/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png differ diff --git a/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png b/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png index a5c3a871..ed800931 100644 Binary files a/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png and b/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png differ diff --git a/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png b/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png index ac589ddd..6c58d534 100644 Binary files a/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png and b/test/snapshots/flex/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png differ diff --git a/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png b/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png index 739c0ae8..83bf8ed4 100644 Binary files a/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png and b/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png differ diff --git a/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png b/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png index 164e93cc..939db433 100644 Binary files a/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png and b/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png differ diff --git a/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png b/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png index 652c3a04..e96266a7 100644 Binary files a/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png and b/test/snapshots/flex/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png differ diff --git a/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png b/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png index 739c0ae8..83bf8ed4 100644 Binary files a/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png and b/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png differ diff --git a/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png b/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png index 4cfe54f0..d141caa4 100644 Binary files a/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png and b/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png differ diff --git a/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png b/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png index 652c3a04..e96266a7 100644 Binary files a/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png and b/test/snapshots/flex/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png differ diff --git a/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png b/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png index 739c0ae8..83bf8ed4 100644 Binary files a/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png and b/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png differ diff --git a/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png b/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png index 2fa4f0fb..6cb57fe2 100644 Binary files a/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png and b/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png differ diff --git a/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png b/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png index 652c3a04..e96266a7 100644 Binary files a/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png and b/test/snapshots/flex/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png differ diff --git a/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png b/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png b/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png and b/test/snapshots/flex/test_sign_attestation_dal/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png b/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png and b/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png b/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png and b/test/snapshots/flex/test_sign_block/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png b/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png and b/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png b/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png and b/test/snapshots/flex/test_sign_block/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png b/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png and b/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png b/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png and b/test/snapshots/flex/test_sign_block/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png b/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png and b/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png b/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png and b/test/snapshots/flex/test_sign_block/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png b/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png and b/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png b/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png and b/test/snapshots/flex/test_sign_block/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png b/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png and b/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png b/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png index a3e48ff6..0ad57639 100644 Binary files a/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png and b/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png b/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png and b/test/snapshots/flex/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png b/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png and b/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png b/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png index 99729859..db452438 100644 Binary files a/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png and b/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png b/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png and b/test/snapshots/flex/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png b/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png and b/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png b/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png index ddde4c1c..01e8b271 100644 Binary files a/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png and b/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png b/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png and b/test/snapshots/flex/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png b/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png and b/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png b/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png index 7bea6c58..be3b4b12 100644 Binary files a/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png and b/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png b/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png and b/test/snapshots/flex/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png b/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png and b/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png b/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png index 4bc18188..bdfc11f3 100644 Binary files a/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png and b/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png b/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png and b/test/snapshots/flex/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_1/00000.png b/test/snapshots/flex/test_sign_delegation_fee/fee_1/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_1/00000.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_1/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_1/00001.png b/test/snapshots/flex/test_sign_delegation_fee/fee_1/00001.png index 785893f4..c063079b 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_1/00001.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_1/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_1/00002.png b/test/snapshots/flex/test_sign_delegation_fee/fee_1/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_1/00002.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_1/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00000.png b/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00000.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00001.png b/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00001.png index 10ab91cb..f7264feb 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00001.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00002.png b/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00002.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_20000/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00000.png b/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00000.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00001.png b/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00001.png index 5a7877dc..d623ad5a 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00001.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00002.png b/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00002.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_300000000/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00000.png b/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00000.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00001.png b/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00001.png index 755e54f8..3742d401 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00001.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00002.png b/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00002.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_50000060000/00002.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00000.png b/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00000.png index 143e9187..43405f4d 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00000.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00000.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00001.png b/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00001.png index a56bf581..8c514258 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00001.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00001.png differ diff --git a/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00002.png b/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00002.png index 13b908c1..3627f7c6 100644 Binary files a/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00002.png and b/test/snapshots/flex/test_sign_delegation_fee/fee_789789789/00002.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png b/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png and b/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png b/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png and b/test/snapshots/flex/test_sign_preattestation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png and b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png and b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png and b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png and b/test/snapshots/flex/test_sign_preattestation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png b/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png and b/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png b/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png and b/test/snapshots/flex/test_sign_preattestation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/hwm_before_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png b/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png and b/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_after_sign.png differ diff --git a/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png b/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png index dc99b537..62ee420a 100644 Binary files a/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png and b/test/snapshots/flex/test_sign_preattestation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/hwm_before_sign.png differ diff --git a/test/snapshots/nanos/version.png b/test/snapshots/nanos/version.png index bd35e645..9eb95795 100644 Binary files a/test/snapshots/nanos/version.png and b/test/snapshots/nanos/version.png differ diff --git a/test/snapshots/nanosp/version.png b/test/snapshots/nanosp/version.png index 6d2d86ca..32cd7549 100644 Binary files a/test/snapshots/nanosp/version.png and b/test/snapshots/nanosp/version.png differ diff --git a/test/snapshots/nanox/version.png b/test/snapshots/nanox/version.png index 6d2d86ca..32cd7549 100644 Binary files a/test/snapshots/nanox/version.png and b/test/snapshots/nanox/version.png differ diff --git a/test/snapshots/stax/description.png b/test/snapshots/stax/description.png index e1b35f8a..6254db4e 100644 Binary files a/test/snapshots/stax/description.png and b/test/snapshots/stax/description.png differ diff --git a/test/snapshots/stax/description_2.png b/test/snapshots/stax/description_2.png new file mode 100644 index 00000000..c559ba89 Binary files /dev/null and b/test/snapshots/stax/description_2.png differ diff --git a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png index fdf5b8b7..1b65a765 100644 Binary files a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png and b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png differ diff --git a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png index fdf5b8b7..1b65a765 100644 Binary files a/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png and b/test/snapshots/stax/test_authorize_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png index abaf55b6..b90c50c5 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png index abaf55b6..b90c50c5 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png index 050ddbce..e41bd22e 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png differ diff --git a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png index 050ddbce..e41bd22e 100644 Binary files a/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png and b/test/snapshots/stax/test_authorize_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png index 86336c49..58a064b9 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png and b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png index 86336c49..58a064b9 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png and b/test/snapshots/stax/test_authorize_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png index 5a613ff3..e0ac291a 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png and b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png differ diff --git a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png index 5a613ff3..e0ac291a 100644 Binary files a/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png and b/test/snapshots/stax/test_authorize_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png b/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png index fdf5b8b7..1b65a765 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png and b/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png b/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png index fdf5b8b7..1b65a765 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png and b/test/snapshots/stax/test_get_public_key_baking/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png index abaf55b6..b90c50c5 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png and b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png index abaf55b6..b90c50c5 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png and b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png index 050ddbce..e41bd22e 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png and b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png index 050ddbce..e41bd22e 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png and b/test/snapshots/stax/test_get_public_key_baking/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png b/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png index 86336c49..58a064b9 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png and b/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png b/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png index 86336c49..58a064b9 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png and b/test/snapshots/stax/test_get_public_key_baking/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png b/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png index 5a613ff3..e0ac291a 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png and b/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png b/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png index 5a613ff3..e0ac291a 100644 Binary files a/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png and b/test/snapshots/stax/test_get_public_key_baking/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png b/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png index fdf5b8b7..1b65a765 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png and b/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png b/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png index fdf5b8b7..1b65a765 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png and b/test/snapshots/stax/test_get_public_key_prompt/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png index abaf55b6..b90c50c5 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png and b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png index abaf55b6..b90c50c5 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png and b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png index 050ddbce..e41bd22e 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png and b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png index 050ddbce..e41bd22e 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png and b/test/snapshots/stax/test_get_public_key_prompt/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png b/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png index 86336c49..58a064b9 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png and b/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png b/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png index 86336c49..58a064b9 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png and b/test/snapshots/stax/test_get_public_key_prompt/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00003.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png b/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png index 5a613ff3..e0ac291a 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png and b/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00001.png differ diff --git a/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png b/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png index 5a613ff3..e0ac291a 100644 Binary files a/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png and b/test/snapshots/stax/test_get_public_key_prompt/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00003.png differ diff --git a/test/snapshots/stax/test_reset_app_context/00002.png b/test/snapshots/stax/test_reset_app_context/00002.png index 4d25de43..aa5d9c5d 100644 Binary files a/test/snapshots/stax/test_reset_app_context/00002.png and b/test/snapshots/stax/test_reset_app_context/00002.png differ diff --git a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png index 8382c1ac..22313025 100644 Binary files a/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png and b/test/snapshots/stax/test_setup_app_context/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png index 8382c1ac..22313025 100644 Binary files a/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png differ diff --git a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png index 8382c1ac..22313025 100644 Binary files a/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png and b/test/snapshots/stax/test_setup_app_context/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png index 8382c1ac..22313025 100644 Binary files a/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png and b/test/snapshots/stax/test_setup_app_context/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png differ diff --git a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png index 8382c1ac..22313025 100644 Binary files a/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png and b/test/snapshots/stax/test_setup_app_context/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png b/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png and b/test/snapshots/stax/test_sign_delegation/BIP32_ED25519_tz1VKyZ3RFDwTkrz5LKcTc6fcYqZj6pvsyA7/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png b/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png and b/test/snapshots/stax/test_sign_delegation/ED25519_tz1dyX3B1CFYa2DfdFLyPtiJCfQRUgPVME6E/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png b/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png and b/test/snapshots/stax/test_sign_delegation/ED25519_tz1ez9eEyAxuDZACjHdCXym43UQDdMNa3LEL/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png b/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png and b/test/snapshots/stax/test_sign_delegation/SECP256K1_tz2GB5YHqF4UzQ8GP5yUqdhY9oVWRXCY2hPU/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png b/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png and b/test/snapshots/stax/test_sign_delegation/SECP256R1_tz3UMNyvQeMj6mQSftW2aV2XaWd3afTAM1d5/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation_fee/fee_1/00002.png b/test/snapshots/stax/test_sign_delegation_fee/fee_1/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation_fee/fee_1/00002.png and b/test/snapshots/stax/test_sign_delegation_fee/fee_1/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation_fee/fee_20000/00002.png b/test/snapshots/stax/test_sign_delegation_fee/fee_20000/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation_fee/fee_20000/00002.png and b/test/snapshots/stax/test_sign_delegation_fee/fee_20000/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation_fee/fee_300000000/00002.png b/test/snapshots/stax/test_sign_delegation_fee/fee_300000000/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation_fee/fee_300000000/00002.png and b/test/snapshots/stax/test_sign_delegation_fee/fee_300000000/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation_fee/fee_50000060000/00002.png b/test/snapshots/stax/test_sign_delegation_fee/fee_50000060000/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation_fee/fee_50000060000/00002.png and b/test/snapshots/stax/test_sign_delegation_fee/fee_50000060000/00002.png differ diff --git a/test/snapshots/stax/test_sign_delegation_fee/fee_789789789/00002.png b/test/snapshots/stax/test_sign_delegation_fee/fee_789789789/00002.png index 837ff2a5..094d0aac 100644 Binary files a/test/snapshots/stax/test_sign_delegation_fee/fee_789789789/00002.png and b/test/snapshots/stax/test_sign_delegation_fee/fee_789789789/00002.png differ diff --git a/test/test_instructions.py b/test/test_instructions.py index 26ec3967..26af3c50 100644 --- a/test/test_instructions.py +++ b/test/test_instructions.py @@ -210,6 +210,12 @@ def test_review_home(account: Optional[Account], tezos_navigator.settings.next() backend.wait_for_screen_change() tezos_navigator.assert_screen(TouchFixedScreen.SETTINGS_DESCRIPTION) + tezos_navigator.settings.next() + backend.wait_for_screen_change() + tezos_navigator.assert_screen(TouchFixedScreen.SETTINGS_DESCRIPTION_2) + tezos_navigator.settings.previous() + backend.wait_for_screen_change() + tezos_navigator.assert_screen(TouchFixedScreen.SETTINGS_DESCRIPTION) tezos_navigator.settings.previous() backend.wait_for_screen_change() if tezos_navigator.firmware == Firmware.STAX: @@ -428,7 +434,7 @@ def test_automatic_low_cost_screensaver_exited_by_display( def test_version(client: TezosClient) -> None: """Test the VERSION instruction.""" - expected_version = Version(Version.AppKind.BAKING, 2, 5, 0) + expected_version = Version(Version.AppKind.BAKING, 2, 5, 1) version = client.version() diff --git a/test/utils/navigator.py b/test/utils/navigator.py index ad5c179a..5f588320 100644 --- a/test/utils/navigator.py +++ b/test/utils/navigator.py @@ -96,6 +96,7 @@ class TouchFixedScreen(FixedScreen): SETTINGS_HMW_DISABLED = "hwm_status_disabled" SETTINGS_HMW_ENABLED = "hwm_status_enabled" SETTINGS_DESCRIPTION = "description" + SETTINGS_DESCRIPTION_2 = "description_2" class UseCaseReview(OriginalUseCaseReview):