Eos wallet application framework for Ledger Nano S
This follows the specification available in the doc/ folder
To use the generic wallet refer to signTransaction.py
, getPublicKey.py
or Ledger EOS Wallet application available on Github at https://github.com/tarassh/fairy-wallet
git clone https://github.com/LedgerHQ/ledger-app-builder.git
cd ledger-app-builder
sudo docker build -t ledger-app-builder:latest .
This will take a few minutes to install
Set udev
rules to enable devices to connect with docker container. Note: Instructions are for linux and tested on Ubuntu 22.
wget -q -O - https://raw.githubusercontent.com/LedgerHQ/udev-rules/master/add_udev_rules.sh | sudo bash
Download your app
git clone https://github.com/eosnetworkfoundation/ledger-app.git
cd /User/me/my-app/
sudo docker run --rm -ti -v "$(realpath .):/app" ledger-app-builder:latest
bash-5.1# make clean
bash-5.1# make
If you want to load and delete your app directly from the container image you need to provide --privileged
access.
sudo docker run --rm -ti -v "/dev/bus/usb:/dev/bus/usb" -v "$(realpath .):/app" --privileged ledger-app-builder:latest
bash-5.1# make clean
bash-5.1# make
sudo docker run --rm -ti -v "$(realpath .):/app" ledger-app-builder:latest
bash-5.1# make scan-build
For Nano X, specify the BOLOS_SDK environment variable before building your app:
sudo docker run --rm -ti -v "$(realpath .):/app" ledger-app-builder:latest
bash-5.1# make clean
bash-5.1# BOLOS_SDK=$NANOX_SDK make
For Nano S+, specify the BOLOS_SDK environment variable before building your app:
sudo docker run --rm -ti -v "$(realpath .):/app" ledger-app-builder:latest
bash-5.1# make clean
bash-5.1# BOLOS_SDK=$NANOSP_SDK make
Instructions taken from Ledger HQ App Builder Readme with modification.
make load
or BOLOS_SDK=$NANOSP_SDK make load
for the S-Plusmake delete
or BOLOS_SDK=$NANOSP_SDK make delete
for the S-Plus