NOTE
This repository is now archived because it has been merged into LedgerHQ/app-stellar.
This is the wallet app for the Ledger Nano S, Ledger Nano S Plus and Ledger Nano X that makes it possible to store Stellar-based assets on those devices and generally sign any transaction for the Stellar network.
This app follows the specification available in the ./docs folder.
You can communicate with the app through the following libraries:
If not for development purposes, you should install this app via Ledger Live.
To build and install the app on your Nano S or Nano S Plus you must set up the Ledger build environments. Please follow the load the application instructions at the Ledger developer portal.
Additionaly, install this dependency:
sudo apt install libbsd-devThe command to compile and load the app onto the device is:
make loadTo remove the app from the device do:
make deleteThis project provides unit tests, integration tests and end-to-end tests, unit tests are located under the ./tests_unit folder, and the integration tests and end-to-end tests are located under the ./tests_zemu folder.
During development, we recommend that you run the unit test first, as it takes less time to run, and then run the other tests after the unit test has run successfully.
The ./tests_unit directory contains files for testing the utils, the xdr transaction parser, the screen formatter and the swap function.
They require the Node.js, cmocka unit testing framework, CMake and libbsd to be installed:
sudo apt install libcmocka-dev cmake libbsd-devIt is recommended to use nvm to install the latest LTS version of Node.js
To build and execute the tests, run the following command:
make tests-unitTesting is done via the open-source framework zemu.
In order to run these tests, you need to install Docker in addition to the dependencies mentioned in Unit testing.
To build and execute the tests, run the following commands:
make tests-zemuTo run a specific test first, please run the following commands:
cd tests_zemu
npm run test -- -t "{testCaseName}"
Leave a Reply