31 stable releases

new 1.13.0 Jul 26, 2024
1.10.5 Jun 25, 2024
1.8.0 Mar 26, 2024
1.4.1 Dec 20, 2023
1.0.1 Nov 24, 2023

#961 in Cryptography

Download history 180/week @ 2024-04-04 344/week @ 2024-04-11 120/week @ 2024-04-18 144/week @ 2024-04-25 281/week @ 2024-05-02 28/week @ 2024-05-09 129/week @ 2024-05-16 375/week @ 2024-05-23 384/week @ 2024-05-30 444/week @ 2024-06-06 482/week @ 2024-06-13 356/week @ 2024-06-20 81/week @ 2024-06-27 370/week @ 2024-07-04 196/week @ 2024-07-11 236/week @ 2024-07-18

918 downloads per month
Used in ledger_device_ui_sdk

Apache-2.0

420KB
9K SLoC

Rust 7K SLoC // 0.0% comments C 1.5K SLoC // 0.0% comments GNU Style Assembly 36 SLoC Shell 26 SLoC // 0.2% comments

Ledger wallets SDK for Rust Applications

Crate that allows developing Ledger device apps in Rust with a default configuration.

Contains:

  • some safe wrappers over common syscalls
  • IO abstractions
  • signature abstractions
  • UI libraries (the ui module for Nano (S/SP/X) apps, nbgl module for Stax and Flex apps)

To learn more about using the SDK and what is required to publish an app on the Ledger Live app store, please don't hesitate to check the following resources :

Supported devices

Nano S Nano X Nano S Plus Stax Flex
✔️ ✔️ ✔️ ✔️ ✔️

Usage

Building requires adding rust-src to your Rust installation, and both Clang and arm-none-eabi-gcc. On Ubuntu, gcc-multilib might also be required.

Using rustc nightly builds is mandatory as some unstable features are required.

If you wish to install the ARM gcc toolchain using your distribution's packages, these commands should work:

# On Debian and Ubuntu
sudo apt install clang gcc-arm-none-eabi gcc-multilib

# On Fedora or Red Hat Entreprise Linux
sudo dnf install clang arm-none-eabi-gcc arm-none-eabi-newlib

# On ArchLinux
sudo pacman -S clang arm-none-eabi-gcc arm-none-eabi-newlib

This SDK provides custom target files. One for each supported device.

Building for Nano S

cargo build --release -Z build-std=core --target=./nanos.json

Building for Nano X

cargo build --release -Z build-std=core --target=./nanox.json

Building for Nano S+

cargo build --release -Z build-std=core --target=./nanosplus.json

Building for Stax

cargo build --release -Z build-std=core --target=./stax.json

Building for Flex

cargo build --release -Z build-std=core --target=./flex.json

Building with rustc < 1.54

Building before rustc 1.54 should fail with error[E0635]: unknown feature const_fn_trait_bound.

This is solved by activating a specific feature: cargo build --features pre1_54

Contributing

You can submit an issue or even a pull request if you wish to contribute, we will check what we can do.

Make sure you've followed the installation steps above. In order for your PR to be accepted, it will have to pass the CI, which performs the following checks:

  • Check if the code builds on nightly
  • Check that clippy does not emit any warnings
  • check that your code follows rustfmt's format (using cargo fmt)

Dependencies

~1–3.5MB
~70K SLoC