Skip to content

Commit

Permalink
Stax & Flex porting (#13)
Browse files Browse the repository at this point in the history
* flex_porting

* bump version

* update readme

* set production build flag accordingly

* bump minor version instead of patch

* update ledger_app.toml

* resize flex icon
  • Loading branch information
0xPxt authored Oct 29, 2024
1 parent bb409ea commit ed01330
Show file tree
Hide file tree
Showing 442 changed files with 115 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Analyse
strategy:
matrix:
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK", "$STAX_SDK"]
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK", "$STAX_SDK", "$FLEX_SDK"]
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest
Expand Down
72 changes: 70 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Build NanoS
shell: bash -l {0}
run: |
make
PRODUCTION_BUILD=0 make
mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos.sh
- name: Set tag
id: nanos
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- name: Build NanoSP
shell: bash -l {0}
run: |
make
PRODUCTION_BUILD=0 make
mv ./app/pkg/installer_s2.sh ./app/pkg/installer_nanos_plus.sh
- name: Set tag
id: nanosp
Expand All @@ -163,3 +163,71 @@ jobs:
tag_name: ${{ steps.nanosp.outputs.tag_name }}
draft: false
prerelease: false

build_package_stax:
needs: [configure, build, build_ledger, test_zemu]
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
container:
image: zondax/ledger-app-builder:latest
options: --user ${{ needs.configure.outputs.uid_gid }}
env:
BOLOS_SDK: /opt/stax-secure-sdk
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install deps
run: pip install ledgerblue

- name: Build Stax
shell: bash -l {0}
run: PRODUCTION_BUILD=0 make
- name: Set tag
id: stax
run: echo "tag_name=$(./app/pkg/installer_stax.sh version)" >> $GITHUB_OUTPUT
- name: Update Release
id: update_release_2
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
files: ./app/pkg/installer_stax.sh
tag_name: ${{ steps.stax.outputs.tag_name }}
draft: false
prerelease: false

build_package_flex:
needs: [configure, build, build_ledger, test_zemu]
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
container:
image: zondax/ledger-app-builder:latest
options: --user ${{ needs.configure.outputs.uid_gid }}
env:
BOLOS_SDK: /opt/flex-secure-sdk
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install deps
run: pip install ledgerblue

- name: Build Flex
shell: bash -l {0}
run: PRODUCTION_BUILD=0 make
- name: Set tag
id: flex
run: echo "tag_name=$(./app/pkg/installer_flex.sh version)" >> $GITHUB_OUTPUT
- name: Update Release
id: update_release_2
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
files: ./app/pkg/installer_flex.sh
tag_name: ${{ steps.flex.outputs.tag_name }}
draft: false
prerelease: false
15 changes: 3 additions & 12 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
[submodule "deps/nanos-secure-sdk"]
path = deps/nanos-secure-sdk
url = https://github.com/LedgerHQ/ledger-secure-sdk
[submodule "deps/nanosplus-secure-sdk"]
path = deps/nanosplus-secure-sdk
url = https://github.com/LedgerHQ/ledger-secure-sdk
[submodule "deps/nanox-secure-sdk"]
path = deps/nanox-secure-sdk
url = https://github.com/LedgerHQ/ledger-secure-sdk
[submodule "deps/ledger-zxlib"]
path = deps/ledger-zxlib
url = https://github.com/Zondax/ledger-zxlib.git
[submodule "cmake/cmake-modules"]
path = cmake/cmake-modules
url = https://github.com/bilke/cmake-modules
[submodule "deps/stax-secure-sdk"]
path = deps/stax-secure-sdk
url = https://github.com/LedgerHQ/ledger-secure-sdk
[submodule "deps/picohash"]
path = deps/picohash
url = https://github.com/kazuho/picohash
[submodule "deps/ledger-secure-sdk"]
path = deps/ledger-secure-sdk
url = https://github.com/LedgerHQ/ledger-secure-sdk
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ifeq ($(BOLOS_SDK),)
# In this case, there is not predefined SDK and we run dockerized
# When not using the SDK, we override and build the XL complete app

ZXLIB_COMPILE_STAX ?= 1
PRODUCTION_BUILD ?= 1
include $(CURDIR)/deps/ledger-zxlib/dockerized_build.mk

else
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ _Please visit our website at [zondax.ch](https://www.zondax.ch)_

---

This project contains the Flare app for Ledger Nano S Nano S+ and X.
This project contains the Flare app for Ledger Nano S, Nano S+, Nano X, Stax and Flex.

- Ledger Nano S/S+/X Flare app
- Ledger Nano S/S+/X, Stax and Flex Flare app
- Specs / Documentation
- C++ unit tests
- Zemu tests
Expand Down
12 changes: 12 additions & 0 deletions app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ $(info ************ TARGET_NAME = [$(TARGET_NAME)])

include $(CURDIR)/../deps/ledger-zxlib/makefiles/Makefile.app_testing

# Display whether this is a production build or for internal use
PRODUCTION_BUILD ?= 1
ifeq ($(PRODUCTION_BUILD), 1)
$(info ************ PRODUCTION_BUILD = [PRODUCTION BUILD])
else
$(info ************ PRODUCTION_BUILD = [INTERNAL USE])
endif

# Add the PRODUCTION_BUILD definition to the compiler flags
DEFINES += PRODUCTION_BUILD=$(PRODUCTION_BUILD)


ifndef COIN
COIN=FLR
endif
Expand Down
2 changes: 1 addition & 1 deletion app/Makefile.version
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is the major version
APPVERSION_M=2
# This is the minor version
APPVERSION_N=0
APPVERSION_N=1
# This is the patch version
APPVERSION_P=0
Binary file added app/flex_icon.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions app/src/common/tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "parser.h"
#include "zxmacros.h"

#if defined(TARGET_NANOX) || defined(TARGET_NANOS2) || defined(TARGET_STAX)
#if defined(TARGET_NANOX) || defined(TARGET_NANOS2) || defined(TARGET_STAX) || defined(TARGET_FLEX)
#define RAM_BUFFER_SIZE 8192
#define FLASH_BUFFER_SIZE 16384
#elif defined(TARGET_NANOS)
Expand All @@ -39,7 +39,7 @@ typedef struct {
uint8_t buffer[FLASH_BUFFER_SIZE];
} storage_t;

#if defined(TARGET_NANOS) || defined(TARGET_NANOX) || defined(TARGET_NANOS2) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOX) || defined(TARGET_NANOS2) || defined(TARGET_STAX) || defined(TARGET_FLEX)
storage_t NV_CONST N_appdata_impl __attribute__((aligned(64)));
#define N_appdata (*(NV_VOLATILE storage_t *)PIC(&N_appdata_impl))
#endif
Expand Down
8 changes: 4 additions & 4 deletions app/src/crypto_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include "coin.h"
#include "zxformat.h"

#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
#include "cx.h"
#else
#include "picohash.h"
Expand All @@ -32,7 +32,7 @@ char bech32_hrp[MAX_BECH32_HRP_LEN + 1];
uint8_t flr_chain_code;

__Z_INLINE zxerr_t keccak_hash(const unsigned char *in, unsigned int inLen, unsigned char *out, unsigned int outLen) {
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
// return actual size using value from signatureLength
cx_sha3_t keccak;
if (cx_keccak_init_no_throw(&keccak, outLen * 8) != CX_OK) return zxerr_unknown;
Expand All @@ -52,7 +52,7 @@ zxerr_t crypto_sha256(const uint8_t *input, uint16_t inputLen, uint8_t *output,

MEMZERO(output, outputLen);

#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
cx_sha256_t ctx;
memset(&ctx, 0, sizeof(ctx));
cx_sha256_init_no_throw(&ctx);
Expand All @@ -67,7 +67,7 @@ zxerr_t crypto_sha256(const uint8_t *input, uint16_t inputLen, uint8_t *output,
}

zxerr_t ripemd160_32(uint8_t *out, uint8_t *in) {
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
cx_ripemd160_t rip160 = {0};
cx_ripemd160_init(&rip160);
CHECK_CX_OK(cx_hash_no_throw(&rip160.header, CX_LAST, in, CX_SHA256_SIZE, out, CX_RIPEMD160_SIZE));
Expand Down
2 changes: 1 addition & 1 deletion app/src/parser_impl_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ static parser_error_t printEthHash(const parser_context_t *ctx, char *outKey, ui
uint16_t outValLen, uint8_t pageIdx, uint8_t *pageCount) {
// we need to get keccak hash of the transaction data
uint8_t hash[32] = {0};
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
keccak_digest(ctx->buffer, ctx->bufferLen, hash, 32);
#endif

Expand Down
6 changes: 3 additions & 3 deletions app/src/parser_print_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include "zxformat.h"
#include "zxmacros.h"

#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
#include "cx.h"
#else
#include "picohash.h"
Expand Down Expand Up @@ -157,7 +157,7 @@ parser_error_t printNodeId(const uint8_t *nodeId, char *outVal, uint16_t outValL

// Calculate SHA256 checksum
uint8_t checksum[CX_SHA256_SIZE] = {0};
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
cx_sha256_t ctx;
memset(&ctx, 0, sizeof(ctx));
cx_sha256_init_no_throw(&ctx);
Expand Down Expand Up @@ -190,7 +190,7 @@ parser_error_t printHash(const parser_context_t *ctx, char *outVal, uint16_t out
uint8_t *pageCount) {
unsigned char hash[CX_SHA256_SIZE] = {0};

#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX)
#if defined(TARGET_NANOS) || defined(TARGET_NANOS2) || defined(TARGET_NANOX) || defined(TARGET_STAX) || defined(TARGET_FLEX)
cx_sha256_t hash_ctx;
memset(&hash_ctx, 0, sizeof(hash_ctx));
CHECK_CX_PARSER_OK(cx_sha256_init_no_throw(&hash_ctx));
Expand Down
1 change: 1 addition & 0 deletions deps/ledger-secure-sdk
Submodule ledger-secure-sdk added at 83e09a
1 change: 0 additions & 1 deletion deps/nanos-secure-sdk
Submodule nanos-secure-sdk deleted from e0d514
1 change: 0 additions & 1 deletion deps/nanosplus-secure-sdk
Submodule nanosplus-secure-sdk deleted from e0d514
1 change: 0 additions & 1 deletion deps/nanox-secure-sdk
Submodule nanox-secure-sdk deleted from e0d514
1 change: 0 additions & 1 deletion deps/stax-secure-sdk
Submodule stax-secure-sdk deleted from e0d514
2 changes: 1 addition & 1 deletion ledger_app.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[app]
build_directory = "./app/"
sdk = "C"
devices = ["nanos", "nanox", "nanos+", "stax"]
devices = ["nanos", "nanox", "nanos+", "stax", "flex"]

[tests]
unit_directory = ""
2 changes: 1 addition & 1 deletion tests_zemu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"dependencies": {
"@zondax/ledger-flare": "../js",
"@zondax/zemu": "^0.49.0"
"@zondax/zemu": "^0.50.2"
},
"devDependencies": {
"@ethereumjs/common": "^2.4.0",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/f-eth-transfer/00000.png
Binary file added tests_zemu/snapshots/f-eth-transfer/00001.png
Binary file added tests_zemu/snapshots/f-eth-transfer/00002.png
Binary file added tests_zemu/snapshots/f-eth-transfer/00003.png
Binary file added tests_zemu/snapshots/f-mainmenu/00000.png
Binary file added tests_zemu/snapshots/f-mainmenu/00001.png
Binary file added tests_zemu/snapshots/f-mainmenu/00002.png
Binary file added tests_zemu/snapshots/f-mainmenu/00003.png
Binary file added tests_zemu/snapshots/f-mainmenu/00004.png
Binary file added tests_zemu/snapshots/f-mainmenu/00005.png
Binary file added tests_zemu/snapshots/f-mainmenu/00006.png
Binary file added tests_zemu/snapshots/f-show_address/00000.png
Binary file added tests_zemu/snapshots/f-show_address/00001.png
Binary file added tests_zemu/snapshots/f-show_address/00002.png
Binary file added tests_zemu/snapshots/f-show_eth_address/00000.png
Binary file added tests_zemu/snapshots/f-show_eth_address/00001.png
Binary file added tests_zemu/snapshots/f-show_eth_address/00002.png
Binary file added tests_zemu/snapshots/f-sign-hash/00000.png
Binary file added tests_zemu/snapshots/f-sign-hash/00001.png
Binary file added tests_zemu/snapshots/f-sign-hash/00002.png
Binary file added tests_zemu/snapshots/f-sign-hash/00003.png
Binary file added tests_zemu/snapshots/f-sign-tx-eth-path/00000.png
Binary file added tests_zemu/snapshots/f-sign-tx-eth-path/00002.png
Binary file added tests_zemu/snapshots/f-sign-tx-eth-path/00003.png
Binary file added tests_zemu/snapshots/f-sign-tx-eth-path/00004.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-mainmenu/00004.png
Binary file modified tests_zemu/snapshots/sp-mainmenu/00010.png
Binary file modified tests_zemu/snapshots/st-eth-asset_deposit/00000.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_deposit/00004.png
Binary file removed tests_zemu/snapshots/st-eth-asset_deposit/00005.png
Diff not rendered.
Binary file modified tests_zemu/snapshots/st-eth-asset_transfer/00000.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-asset_transfer/00004.png
Binary file removed tests_zemu/snapshots/st-eth-asset_transfer/00005.png
Diff not rendered.
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/00004.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-basic_transfer_no_eip155/00004.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-contract_deploy_no_eip155/00004.png
Binary file modified tests_zemu/snapshots/st-eth-deposit_dummy_contract/00000.png
Binary file modified tests_zemu/snapshots/st-eth-deposit_dummy_contract/00001.png
Binary file modified tests_zemu/snapshots/st-eth-deposit_dummy_contract/00002.png
Binary file modified tests_zemu/snapshots/st-eth-deposit_dummy_contract/00003.png
Binary file modified tests_zemu/snapshots/st-eth-deposit_dummy_contract/00004.png
Diff not rendered.
Binary file modified tests_zemu/snapshots/st-eth-erc20_transfer/00000.png
Binary file modified tests_zemu/snapshots/st-eth-erc20_transfer/00001.png
Binary file modified tests_zemu/snapshots/st-eth-erc20_transfer/00002.png
Binary file modified tests_zemu/snapshots/st-eth-erc20_transfer/00003.png
Binary file modified tests_zemu/snapshots/st-eth-erc20_transfer/00004.png
Binary file modified tests_zemu/snapshots/st-eth-erc20_transfer/00005.png
Binary file removed tests_zemu/snapshots/st-eth-erc20_transfer/00006.png
Diff not rendered.
Binary file modified tests_zemu/snapshots/st-eth-erc721_approve_for_all/00000.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_approve_for_all/00001.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_approve_for_all/00002.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_approve_for_all/00003.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00000.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00001.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00002.png
Binary file modified tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00003.png
Binary file modified tests_zemu/snapshots/st-eth-legacy_contract_call/00000.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_call/00004.png
Diff not rendered.
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_contract_deploy/00004.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-eth-legacy_transfer/00004.png
Binary file modified tests_zemu/snapshots/st-eth-transfer/00000.png
Binary file modified tests_zemu/snapshots/st-eth-transfer/00001.png
Binary file modified tests_zemu/snapshots/st-eth-transfer/00002.png
Loading

0 comments on commit ed01330

Please sign in to comment.