├── .cargo └── config.toml ├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build_and_functional_tests.yml │ ├── coding_style_checks.yml │ ├── guidelines_enforcer.yml │ ├── misspellings_checks.yml │ └── python_tests_checks.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── glyphs ├── crab_48x48.png └── crab_64x64.gif ├── icons ├── crab_14x14.gif ├── crab_32x32.gif ├── crab_32x32.png ├── crab_40x40.gif └── mask_14x14.gif ├── ledger_app.toml ├── rust-toolchain.toml ├── src ├── app_ui │ ├── address.rs │ ├── menu.rs │ └── sign.rs ├── handlers │ ├── get_public_key.rs │ ├── get_version.rs │ └── sign_tx.rs ├── main.rs ├── settings.rs └── utils.rs └── tests ├── .DS_Store ├── application_client ├── __init__.py ├── boilerplate_command_sender.py ├── boilerplate_response_unpacker.py ├── boilerplate_transaction.py ├── boilerplate_utils.py └── py.typed ├── boil-freeze.txt ├── conftest.py ├── requirements.txt ├── setup.cfg ├── snapshots ├── apex_p │ ├── test_app_mainmenu │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_accepted │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_sign_tx_long_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── test_sign_tx_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── test_sign_tx_short_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ └── test_sign_tx_short_tx_no_memo │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png ├── flex │ ├── test_app_mainmenu │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_accepted │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_sign_tx_long_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── test_sign_tx_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ ├── test_sign_tx_short_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ └── test_sign_tx_short_tx_no_memo │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png ├── nanosp │ ├── test_app_mainmenu │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_accepted │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ ├── test_sign_tx_long_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ ├── test_sign_tx_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ └── test_sign_tx_short_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png ├── nanox │ ├── test_app_mainmenu │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_accepted │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ └── 00003.png │ ├── test_get_public_key_confirm_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ ├── test_sign_tx_long_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png │ ├── test_sign_tx_refused │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ ├── 00004.png │ │ └── 00005.png │ └── test_sign_tx_short_tx │ │ ├── 00000.png │ │ ├── 00001.png │ │ ├── 00002.png │ │ ├── 00003.png │ │ └── 00004.png └── stax │ ├── test_app_mainmenu │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ └── 00003.png │ ├── test_get_public_key_confirm_accepted │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ └── 00003.png │ ├── test_get_public_key_confirm_refused │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ └── 00003.png │ ├── test_sign_tx_long_tx │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ ├── 00004.png │ └── 00005.png │ ├── test_sign_tx_refused │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ ├── 00004.png │ └── 00005.png │ ├── test_sign_tx_short_tx │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ └── 00004.png │ └── test_sign_tx_short_tx_no_memo │ ├── 00000.png │ ├── 00001.png │ ├── 00002.png │ ├── 00003.png │ └── 00004.png ├── test_app_mainmenu.py ├── test_appname_cmd.py ├── test_error_cmd.py ├── test_name_version.py ├── test_pubkey_cmd.py ├── test_sign_cmd.py ├── test_version_cmd.py ├── usage.md └── utils.py /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_and_functional_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/workflows/build_and_functional_tests.yml -------------------------------------------------------------------------------- /.github/workflows/coding_style_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/workflows/coding_style_checks.yml -------------------------------------------------------------------------------- /.github/workflows/guidelines_enforcer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/workflows/guidelines_enforcer.yml -------------------------------------------------------------------------------- /.github/workflows/misspellings_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/workflows/misspellings_checks.yml -------------------------------------------------------------------------------- /.github/workflows/python_tests_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.github/workflows/python_tests_checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/README.md -------------------------------------------------------------------------------- /glyphs/crab_48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/glyphs/crab_48x48.png -------------------------------------------------------------------------------- /glyphs/crab_64x64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/glyphs/crab_64x64.gif -------------------------------------------------------------------------------- /icons/crab_14x14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/icons/crab_14x14.gif -------------------------------------------------------------------------------- /icons/crab_32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/icons/crab_32x32.gif -------------------------------------------------------------------------------- /icons/crab_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/icons/crab_32x32.png -------------------------------------------------------------------------------- /icons/crab_40x40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/icons/crab_40x40.gif -------------------------------------------------------------------------------- /icons/mask_14x14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/icons/mask_14x14.gif -------------------------------------------------------------------------------- /ledger_app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/ledger_app.toml -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly-2024-12-01" 3 | -------------------------------------------------------------------------------- /src/app_ui/address.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/app_ui/address.rs -------------------------------------------------------------------------------- /src/app_ui/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/app_ui/menu.rs -------------------------------------------------------------------------------- /src/app_ui/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/app_ui/sign.rs -------------------------------------------------------------------------------- /src/handlers/get_public_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/handlers/get_public_key.rs -------------------------------------------------------------------------------- /src/handlers/get_version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/handlers/get_version.rs -------------------------------------------------------------------------------- /src/handlers/sign_tx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/handlers/sign_tx.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/settings.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/application_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/application_client/boilerplate_command_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/application_client/boilerplate_command_sender.py -------------------------------------------------------------------------------- /tests/application_client/boilerplate_response_unpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/application_client/boilerplate_response_unpacker.py -------------------------------------------------------------------------------- /tests/application_client/boilerplate_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/application_client/boilerplate_transaction.py -------------------------------------------------------------------------------- /tests/application_client/boilerplate_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/application_client/boilerplate_utils.py -------------------------------------------------------------------------------- /tests/application_client/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/boil-freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/boil-freeze.txt -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/setup.cfg -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_app_mainmenu/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_app_mainmenu/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_app_mainmenu/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_app_mainmenu/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_app_mainmenu/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_app_mainmenu/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_app_mainmenu/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_app_mainmenu/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_accepted/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_get_public_key_confirm_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_get_public_key_confirm_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_long_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_long_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_long_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_long_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_long_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_long_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_long_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_long_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_long_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_long_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_long_tx/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_long_tx/00005.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00000.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00001.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00002.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00003.png -------------------------------------------------------------------------------- /tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/apex_p/test_sign_tx_short_tx_no_memo/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_app_mainmenu/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_app_mainmenu/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_app_mainmenu/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_app_mainmenu/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_app_mainmenu/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_accepted/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_accepted/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_accepted/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_accepted/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_accepted/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_accepted/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_accepted/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_accepted/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_get_public_key_confirm_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_get_public_key_confirm_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_long_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_long_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_long_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_long_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_long_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_long_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_long_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_long_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_long_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_long_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_long_tx/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_long_tx/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00000.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00001.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00002.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00003.png -------------------------------------------------------------------------------- /tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/flex/test_sign_tx_short_tx_no_memo/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_app_mainmenu/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_app_mainmenu/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_app_mainmenu/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_app_mainmenu/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_app_mainmenu/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_accepted/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_get_public_key_confirm_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_long_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_long_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_long_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_long_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_long_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_long_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_long_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_long_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_long_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_long_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_short_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_short_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_short_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_short_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_short_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_short_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_short_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_short_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanosp/test_sign_tx_short_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanosp/test_sign_tx_short_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_app_mainmenu/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_app_mainmenu/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_app_mainmenu/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_app_mainmenu/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_app_mainmenu/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_accepted/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_accepted/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_accepted/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_accepted/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_accepted/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_accepted/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_accepted/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_accepted/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_get_public_key_confirm_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_get_public_key_confirm_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_long_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_long_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_long_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_long_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_long_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_long_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_long_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_long_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_long_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_long_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_short_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_short_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_short_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_short_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_short_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_short_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_short_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_short_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/nanox/test_sign_tx_short_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/nanox/test_sign_tx_short_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_app_mainmenu/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_app_mainmenu/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_app_mainmenu/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_app_mainmenu/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_app_mainmenu/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_accepted/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_accepted/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_accepted/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_accepted/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_accepted/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_accepted/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_accepted/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_accepted/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_get_public_key_confirm_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_get_public_key_confirm_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_long_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_long_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_long_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_long_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_long_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_long_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_long_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_long_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_long_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_long_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_long_tx/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_long_tx/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_refused/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_refused/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_refused/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_refused/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_refused/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_refused/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_refused/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_refused/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_refused/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_refused/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_refused/00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_refused/00005.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx/00004.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00000.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00001.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00002.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00003.png -------------------------------------------------------------------------------- /tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/snapshots/stax/test_sign_tx_short_tx_no_memo/00004.png -------------------------------------------------------------------------------- /tests/test_app_mainmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_app_mainmenu.py -------------------------------------------------------------------------------- /tests/test_appname_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_appname_cmd.py -------------------------------------------------------------------------------- /tests/test_error_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_error_cmd.py -------------------------------------------------------------------------------- /tests/test_name_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_name_version.py -------------------------------------------------------------------------------- /tests/test_pubkey_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_pubkey_cmd.py -------------------------------------------------------------------------------- /tests/test_sign_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_sign_cmd.py -------------------------------------------------------------------------------- /tests/test_version_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/test_version_cmd.py -------------------------------------------------------------------------------- /tests/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/usage.md -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LedgerHQ/app-boilerplate-rust/HEAD/tests/utils.py --------------------------------------------------------------------------------