-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Stax & Flex porting (#13) * flex_porting * bump version * update readme * set production build flag accordingly * bump minor version instead of patch * update ledger_app.toml * resize flex icon * Add support for coston testnet
- Loading branch information
Showing
442 changed files
with
119 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ledger-secure-sdk
added at
83e09a
Submodule ledger-zxlib
updated
25 files
+2 −0 | app/common/app_main.c | |
+5 −1 | app/ui/view.c | |
+46 −28 | app/ui/view.h | |
+66 −54 | app/ui/view_internal.h | |
+5 −0 | app/ui/view_nano.c | |
+508 −0 | app/ui/view_nbgl.c | |
+44 −1 | app/ui/view_s.c | |
+0 −536 | app/ui/view_stax.c | |
+67 −1 | app/ui/view_x.c | |
+66 −4 | dockerized_build.mk | |
+4 −0 | include/app_mode.h | |
+5 −5 | include/buffering.h | |
+28 −0 | include/zxcanary.h | |
+2 −0 | include/zxformat.h | |
+51 −45 | include/zxmacros.h | |
+48 −46 | include/zxmacros_ledger.h | |
+18 −16 | include/zxmacros_x64.h | |
+3 −3 | include/zxversion.h | |
+20 −4 | makefiles/Makefile.devices | |
+6 −5 | makefiles/Makefile.platform | |
+45 −49 | src/app_mode.c | |
+5 −5 | src/buffering.c | |
+60 −0 | src/zxcanary.c | |
+38 −27 | src/zxmacros.c | |
+34 −0 | tests/macros.cpp |
Submodule nanos-secure-sdk
deleted from
e0d514
Submodule nanosplus-secure-sdk
deleted from
e0d514
Submodule nanox-secure-sdk
deleted from
e0d514
Submodule stax-secure-sdk
deleted from
e0d514
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+352 Bytes
(100%)
tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00000.png
Oops, something went wrong.
Binary file modified
BIN
+1.62 KB
(110%)
tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3.58 KB
(80%)
tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00002.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00003.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
tests_zemu/snapshots/st-eth-basic_transfer_no_eip155/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2.84 KB
(69%)
tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00000.png
Oops, something went wrong.
Binary file modified
BIN
+131 Bytes
(100%)
tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2.13 KB
(87%)
tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00002.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00003.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
tests_zemu/snapshots/st-eth-contract_deploy_no_eip155/00004.png
Oops, something went wrong.
Binary file modified
BIN
+335 Bytes
(100%)
tests_zemu/snapshots/st-eth-deposit_dummy_contract/00000.png
Oops, something went wrong.
Binary file modified
BIN
+2.27 KB
(110%)
tests_zemu/snapshots/st-eth-deposit_dummy_contract/00001.png
Oops, something went wrong.
Binary file modified
BIN
+5.23 KB
(150%)
tests_zemu/snapshots/st-eth-deposit_dummy_contract/00002.png
Oops, something went wrong.
Binary file modified
BIN
-6.13 KB
(59%)
tests_zemu/snapshots/st-eth-deposit_dummy_contract/00003.png
Oops, something went wrong.
Binary file modified
BIN
+2.48 KB
(130%)
tests_zemu/snapshots/st-eth-deposit_dummy_contract/00004.png
Oops, something went wrong.
Diff not rendered.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Binary file modified
BIN
+398 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_approve_for_all/00000.png
Oops, something went wrong.
Binary file modified
BIN
-845 Bytes
(96%)
tests_zemu/snapshots/st-eth-erc721_approve_for_all/00001.png
Oops, something went wrong.
Binary file modified
BIN
+50 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_approve_for_all/00002.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_approve_for_all/00003.png
Oops, something went wrong.
Binary file modified
BIN
+398 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00000.png
Oops, something went wrong.
Binary file modified
BIN
-849 Bytes
(95%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00001.png
Oops, something went wrong.
Binary file modified
BIN
+50 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00002.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from/00003.png
Oops, something went wrong.
Binary file modified
BIN
+398 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from_data/00000.png
Oops, something went wrong.
Binary file modified
BIN
-843 Bytes
(95%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from_data/00001.png
Oops, something went wrong.
Binary file modified
BIN
+50 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from_data/00002.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
tests_zemu/snapshots/st-eth-erc721_safe_transfer_from_data/00003.png
Oops, something went wrong.
Binary file modified
BIN
+335 Bytes
(100%)
tests_zemu/snapshots/st-eth-legacy_contract_call/00000.png
Oops, something went wrong.
Binary file modified
BIN
+859 Bytes
(110%)
tests_zemu/snapshots/st-eth-legacy_contract_call/00001.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Diff not rendered.
Binary file modified
BIN
-3.19 KB
(70%)
tests_zemu/snapshots/st-eth-legacy_contract_deploy/00000.png
Oops, something went wrong.
Binary file modified
BIN
+136 Bytes
(100%)
tests_zemu/snapshots/st-eth-legacy_contract_deploy/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2.14 KB
(87%)
tests_zemu/snapshots/st-eth-legacy_contract_deploy/00002.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests_zemu/snapshots/st-eth-legacy_contract_deploy/00003.png
Oops, something went wrong.
Binary file modified
BIN
+114 Bytes
(100%)
tests_zemu/snapshots/st-eth-legacy_contract_deploy/00004.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.