forked from Zondax/ledger-flare
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Zondax/main
Stax/Flex Support and Support for Coston Testnet (chain_id = 16) for ETH transactions
- Loading branch information
Showing
445 changed files
with
175 additions
and
49 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 | ||
APPVERSION_P=2 |
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
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 | |
+58 −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 | |
+48 −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 = "" |
Oops, something went wrong.