Skip to content

Commit

Permalink
Merge pull request #9 from Zondax/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
chcmedeiros authored Mar 12, 2024
2 parents 095303c + 7c445a8 commit 1a940f4
Show file tree
Hide file tree
Showing 282 changed files with 97 additions and 14 deletions.
2 changes: 1 addition & 1 deletion app/Makefile.version
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ APPVERSION_M=0
# This is the minor version
APPVERSION_N=0
# This is the patch version
APPVERSION_P=10
APPVERSION_P=11
105 changes: 94 additions & 11 deletions app/src/parser_impl_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,90 @@ static parser_error_t printERC20(const parser_context_t *ctx, uint8_t displayIdx
return parser_ok;
}

static parser_error_t printGeneric(const parser_context_t *ctx, uint8_t displayIdx, char *outKey, uint16_t outKeyLen,
char *outVal, uint16_t outValLen, uint8_t pageIdx, uint8_t *pageCount) {
if (outKey == NULL || outVal == NULL || pageCount == NULL) {
return parser_unexpected_error;
}
MEMZERO(outKey, outKeyLen);
MEMZERO(outVal, outValLen);
*pageCount = 1;

char data_array[40] = {0};

if ((displayIdx >= 2 && eth_tx_obj.legacy.data.rlpLen == 0) || eth_tx_obj.legacy.to.rlpLen == 0) {
displayIdx += 1;
}

switch (displayIdx) {
case 0:
snprintf(outKey, outKeyLen, "To");
rlp_t contractAddress = {.kind = RLP_KIND_STRING, .ptr = eth_tx_obj.legacy.to.ptr, .rlpLen = ETH_ADDRESS_LEN};
CHECK_ERROR(printEVMAddress(&contractAddress, outVal, outValLen, pageIdx, pageCount));
break;
case 1:
snprintf(outKey, outKeyLen, "Value");
CHECK_ERROR(printRLPNumber(&eth_tx_obj.legacy.value, outVal, outValLen, pageIdx, pageCount));
break;

case 2:
snprintf(outKey, outKeyLen, "Data");
array_to_hexstr(data_array, sizeof(data_array), eth_tx_obj.legacy.data.ptr, DATA_BYTES_TO_PRINT);
snprintf(data_array + (2 * DATA_BYTES_TO_PRINT), 4, "...");
pageString(outVal, outValLen, data_array, pageIdx, pageCount);
break;

case 3:
snprintf(outKey, outKeyLen, "Gas price");
CHECK_ERROR(printRLPNumber(&eth_tx_obj.legacy.gasPrice, outVal, outValLen, pageIdx, pageCount));
break;

case 4:
snprintf(outKey, outKeyLen, "Gas limit");
CHECK_ERROR(printRLPNumber(&eth_tx_obj.legacy.gasLimit, outVal, outValLen, pageIdx, pageCount));
break;

case 5:
snprintf(outKey, outKeyLen, "Nonce");
CHECK_ERROR(printRLPNumber(&eth_tx_obj.legacy.nonce, outVal, outValLen, pageIdx, pageCount));
break;

case 6:
CHECK_ERROR(printEthHash(ctx, outKey, outKeyLen, outVal, outValLen, pageIdx, pageCount));
break;

default:
return parser_display_page_out_of_range;
}

return parser_ok;
}

static parser_error_t printWarningHash(const parser_context_t *ctx, uint8_t displayIdx, char *outKey, uint16_t outKeyLen,
char *outVal, uint16_t outValLen, uint8_t pageIdx, uint8_t *pageCount) {
if (outKey == NULL || outVal == NULL || pageCount == NULL) {
return parser_unexpected_error;
}
MEMZERO(outKey, outKeyLen);
MEMZERO(outVal, outValLen);
*pageCount = 1;

switch (displayIdx) {
case 0:
snprintf(outKey, outKeyLen, "Warning:");
pageString(outVal, outValLen, "Blind-signing EVM Tx", pageIdx, pageCount);
break;

case 1:
CHECK_ERROR(printEthHash(ctx, outKey, outKeyLen, outVal, outValLen, pageIdx, pageCount));
break;

default:
return parser_display_page_out_of_range;
}

return parser_ok;
}
parser_error_t _getItemEth(const parser_context_t *ctx, uint8_t displayIdx, char *outKey, uint16_t outKeyLen, char *outVal,
uint16_t outValLen, uint8_t pageIdx, uint8_t *pageCount) {
// At the moment, clear signing is available only for ERC20
Expand All @@ -277,18 +361,12 @@ parser_error_t _getItemEth(const parser_context_t *ctx, uint8_t displayIdx, char
// Otherwise, check that ExpertMode is enabled
if (!app_mode_expert()) return parser_unsupported_tx;

if (displayIdx > 1) {
return parser_display_idx_out_of_range;
}

if (displayIdx == 0) {
snprintf(outKey, outKeyLen, "Warning:");
pageString(outVal, outValLen, "Blind-signing EVM Tx", pageIdx, pageCount);
return parser_ok;
if (eth_tx_obj.tx_type == legacy) {
CHECK_ERROR(printGeneric(ctx, displayIdx, outKey, outKeyLen, outVal, outValLen, pageIdx, pageCount));
} else {
CHECK_ERROR(printWarningHash(ctx, displayIdx, outKey, outKeyLen, outVal, outValLen, pageIdx, pageCount));
}

// we need to get keccak hash of the transaction data
CHECK_ERROR(printEthHash(ctx, outKey, outKeyLen, outVal, outValLen, pageIdx, pageCount));
return parser_ok;
}

Expand All @@ -305,7 +383,12 @@ parser_error_t _getNumItemsEth(uint8_t *numItems) {
return parser_ok;
}

*numItems = 2;
if (eth_tx_obj.tx_type == legacy) {
*numItems = 5 + ((eth_tx_obj.legacy.data.rlpLen != 0) ? 1 : 0) + ((eth_tx_obj.legacy.to.rlpLen != 0) ? 1 : 0);
} else {
*numItems = 2;
}

return parser_ok;
}

Expand Down
2 changes: 1 addition & 1 deletion deps/nanosplus-secure-sdk
2 changes: 1 addition & 1 deletion deps/nanox-secure-sdk
Submodule nanox-secure-sdk updated 802 files
Binary file modified tests_zemu/snapshots/s-eth-asset_deposit/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_deposit/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_deposit/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_deposit/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_deposit/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_deposit/00005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_deposit/00006.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_deposit/00007.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_deposit/00008.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_deposit/00009.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_deposit/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_transfer/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_transfer/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_transfer/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_transfer/00003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-asset_transfer/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_transfer/00005.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_transfer/00006.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_transfer/00007.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_transfer/00008.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_transfer/00009.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added tests_zemu/snapshots/s-eth-asset_transfer/00010.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer/00003.png
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer/00004.png
Binary file added tests_zemu/snapshots/s-eth-basic_transfer/00005.png
Binary file added tests_zemu/snapshots/s-eth-basic_transfer/00006.png
Binary file added tests_zemu/snapshots/s-eth-basic_transfer/00007.png
Binary file added tests_zemu/snapshots/s-eth-basic_transfer/00008.png
Binary file added tests_zemu/snapshots/s-eth-basic_transfer/00009.png
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer_no_eip155/00000.png
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/s-eth-basic_transfer_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/s-eth-contract_deploy_no_eip155/00000.png
Binary file modified tests_zemu/snapshots/s-eth-contract_deploy_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/s-eth-contract_deploy_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/s-eth-contract_deploy_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/s-eth-contract_deploy_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_call/00000.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_call/00001.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_call/00002.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_call/00003.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_call/00004.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_deploy/00000.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_deploy/00001.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_deploy/00002.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_deploy/00003.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_contract_deploy/00004.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_transfer/00000.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_transfer/00001.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_transfer/00002.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_transfer/00003.png
Binary file modified tests_zemu/snapshots/s-eth-legacy_transfer/00004.png
Binary file added tests_zemu/snapshots/s-eth-legacy_transfer/00005.png
Binary file added tests_zemu/snapshots/s-eth-legacy_transfer/00006.png
Binary file added tests_zemu/snapshots/s-eth-legacy_transfer/00007.png
Binary file added tests_zemu/snapshots/s-eth-legacy_transfer/00008.png
Binary file added tests_zemu/snapshots/s-eth-legacy_transfer/00009.png
Binary file modified tests_zemu/snapshots/s-mainmenu/00004.png
Binary file modified tests_zemu/snapshots/s-mainmenu/00010.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_deposit/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_deposit/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_deposit/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_deposit/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_deposit/00005.png
Binary file added tests_zemu/snapshots/sp-eth-asset_deposit/00006.png
Binary file added tests_zemu/snapshots/sp-eth-asset_deposit/00007.png
Binary file added tests_zemu/snapshots/sp-eth-asset_deposit/00008.png
Binary file added tests_zemu/snapshots/sp-eth-asset_deposit/00009.png
Binary file added tests_zemu/snapshots/sp-eth-asset_deposit/00010.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_transfer/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_transfer/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_transfer/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_transfer/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-asset_transfer/00005.png
Binary file added tests_zemu/snapshots/sp-eth-asset_transfer/00006.png
Binary file added tests_zemu/snapshots/sp-eth-asset_transfer/00007.png
Binary file added tests_zemu/snapshots/sp-eth-asset_transfer/00008.png
Binary file added tests_zemu/snapshots/sp-eth-asset_transfer/00009.png
Binary file added tests_zemu/snapshots/sp-eth-asset_transfer/00010.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer/00005.png
Binary file added tests_zemu/snapshots/sp-eth-basic_transfer/00006.png
Binary file added tests_zemu/snapshots/sp-eth-basic_transfer/00007.png
Binary file added tests_zemu/snapshots/sp-eth-basic_transfer/00008.png
Binary file added tests_zemu/snapshots/sp-eth-basic_transfer/00009.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-basic_transfer_no_eip155/00005.png
Binary file modified tests_zemu/snapshots/sp-eth-contract_deploy_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-contract_deploy_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-contract_deploy_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-contract_deploy_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-contract_deploy_no_eip155/00005.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_call/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_call/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_call/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_call/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_call/00005.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_deploy/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_deploy/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_deploy/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_deploy/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_contract_deploy/00005.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_transfer/00001.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_transfer/00002.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_transfer/00003.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_transfer/00004.png
Binary file modified tests_zemu/snapshots/sp-eth-legacy_transfer/00005.png
Binary file modified tests_zemu/snapshots/sp-mainmenu/00004.png
Binary file modified tests_zemu/snapshots/sp-mainmenu/00010.png
Binary file modified tests_zemu/snapshots/st-eth-asset_deposit/00001.png
Binary file modified tests_zemu/snapshots/st-eth-asset_deposit/00002.png
Binary file modified tests_zemu/snapshots/st-eth-asset_deposit/00003.png
Binary file modified tests_zemu/snapshots/st-eth-asset_transfer/00001.png
Binary file modified tests_zemu/snapshots/st-eth-asset_transfer/00002.png
Binary file modified tests_zemu/snapshots/st-eth-asset_transfer/00003.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer/00000.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer/00001.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer/00002.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer/00003.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00000.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00000.png
Binary file modified tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_call/00001.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_call/00002.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_call/00003.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_deploy/00000.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_deploy/00001.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_deploy/00002.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_deploy/00003.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_transfer/00000.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_transfer/00001.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_transfer/00002.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_transfer/00003.png
Binary file modified tests_zemu/snapshots/st-mainmenu/00001.png
Binary file modified tests_zemu/snapshots/x-eth-asset_deposit/00001.png
Binary file modified tests_zemu/snapshots/x-eth-asset_deposit/00002.png
Binary file modified tests_zemu/snapshots/x-eth-asset_deposit/00003.png
Binary file modified tests_zemu/snapshots/x-eth-asset_deposit/00004.png
Binary file modified tests_zemu/snapshots/x-eth-asset_deposit/00005.png
Binary file added tests_zemu/snapshots/x-eth-asset_deposit/00006.png
Binary file added tests_zemu/snapshots/x-eth-asset_deposit/00007.png
Binary file added tests_zemu/snapshots/x-eth-asset_deposit/00008.png
Binary file added tests_zemu/snapshots/x-eth-asset_deposit/00009.png
Binary file added tests_zemu/snapshots/x-eth-asset_deposit/00010.png
Binary file modified tests_zemu/snapshots/x-eth-asset_transfer/00001.png
Binary file modified tests_zemu/snapshots/x-eth-asset_transfer/00002.png
Binary file modified tests_zemu/snapshots/x-eth-asset_transfer/00003.png
Binary file modified tests_zemu/snapshots/x-eth-asset_transfer/00004.png
Binary file modified tests_zemu/snapshots/x-eth-asset_transfer/00005.png
Binary file added tests_zemu/snapshots/x-eth-asset_transfer/00006.png
Binary file added tests_zemu/snapshots/x-eth-asset_transfer/00007.png
Binary file added tests_zemu/snapshots/x-eth-asset_transfer/00008.png
Binary file added tests_zemu/snapshots/x-eth-asset_transfer/00009.png
Binary file added tests_zemu/snapshots/x-eth-asset_transfer/00010.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer/00001.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer/00002.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer/00003.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer/00004.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer/00005.png
Binary file added tests_zemu/snapshots/x-eth-basic_transfer/00006.png
Binary file added tests_zemu/snapshots/x-eth-basic_transfer/00007.png
Binary file added tests_zemu/snapshots/x-eth-basic_transfer/00008.png
Binary file added tests_zemu/snapshots/x-eth-basic_transfer/00009.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/x-eth-basic_transfer_no_eip155/00005.png
Binary file modified tests_zemu/snapshots/x-eth-contract_deploy_no_eip155/00001.png
Binary file modified tests_zemu/snapshots/x-eth-contract_deploy_no_eip155/00002.png
Binary file modified tests_zemu/snapshots/x-eth-contract_deploy_no_eip155/00003.png
Binary file modified tests_zemu/snapshots/x-eth-contract_deploy_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/x-eth-contract_deploy_no_eip155/00005.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_call/00001.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_call/00002.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_call/00003.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_call/00004.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_call/00005.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_deploy/00001.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_deploy/00002.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_deploy/00003.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_deploy/00004.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_contract_deploy/00005.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_transfer/00001.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_transfer/00002.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_transfer/00003.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_transfer/00004.png
Binary file modified tests_zemu/snapshots/x-eth-legacy_transfer/00005.png
Binary file added tests_zemu/snapshots/x-eth-legacy_transfer/00006.png
Binary file added tests_zemu/snapshots/x-eth-legacy_transfer/00007.png
Binary file added tests_zemu/snapshots/x-eth-legacy_transfer/00008.png
Binary file added tests_zemu/snapshots/x-eth-legacy_transfer/00009.png
Binary file modified tests_zemu/snapshots/x-mainmenu/00004.png
Binary file modified tests_zemu/snapshots/x-mainmenu/00010.png

0 comments on commit 1a940f4

Please sign in to comment.