ledger-live
is a monorepository whose purpose is to centralize all the JavaScript code related to the Ledger Live applications in one place.
Ledger Live is our platform of apps and services designed specifically for seamless integration with your Ledger device. Acting as a secure gateway to the crypto ecosystem, it allows direct access to a diverse range of crypto, NFT and DeFi services. This integration ensures a safer and more user-friendly experience that address a common security issue known as 'blind signing'.
Developers looking to integrate their blockchain in Ledger Live are invited to head to the Developer Portal where they will find the section Blockchain Support.
💡 This is only a minimal setup. You will need to perform additional installation steps depending on the package you want to work on, please refer to its nested readme file.
git clone [email protected]:LedgerHQ/ledger-live.git
cd ledger-live
proto
toolchain manager.
Please follow the instructions on the proto website to install it.
Once you have installed proto
, please run the following command:
# Will download and install the supported versions of nodejs, npm and pnpm.
# Run it from the root or a subfolder of the repository.
proto use
- Install a newer ruby version
We recommend to use homebrew to install packages on your MacOs computer.
Make sure to install Ruby in its 3.3.X
version
brew install [email protected]
Put the following content to your ~/.zshrc
file
if [ -d "/opt/homebrew/opt/[email protected]/bin" ]; then
export PATH=/opt/homebrew/opt/[email protected]/bin:$PATH
export PATH=`gem environment gemdir`/bin:$PATH
fi
Reload the configuration
source ~/.zshrc
And check the ruby version
ruby --version
It displays the latest stable version among the one you've selected (3.3.7
at the time writing)
ruby 3.3.7 (2025-01-15 revision be31f993d7) [arm64-darwin24]
- Install
bundler
andcocoapods
forledger-live-mobile
on iOS
gem install bundler:2.5.7
gem install cocoapods
- Downgrade the version of the
activesupport
gem
There is known bug on the activesupport version with cocoapods (we did not dig into it), so we need to downgrade it to make it works
gem uninstall activesupport
You will have the following output
cocoapods-core-1.16.2 depends on activesupport (>= 5.0, < 8)
If you remove this gem, these dependencies will not be met.
Continue with Uninstall? [yN]
Type y
, then
gem install activesupport -v 7.0.8 # this version was working for the install, an other may work also
And you are done !
Use the pnpm package manager to install the dependencies in the whole workspace:
pnpm i
# Alternatively, if you want to bypass the postinstall scripts which can be long to run
# pnpm i --ignore-scripts
Note: multiple postinstall steps will be triggered and fail if the applications prerequisites are not met. You can safely ignore the errors if you do not plan to work on those apps.
You may encounter this error when running pnpm i
. Try:
rm -rf ~/.cocoapods/
pnpm clean && pnpm store prune && proto use && pnpm i && pnpm build:llm:deps
pnpm mobile pod
Note: If prompted to run
bundle install
do this in the ledger-live-mobile directory. Restart terminal if the error persists.
Important: All the commands should be run at the root of the monorepo.
We use pnpm workspaces and turborepo under the hood to handle local and external dependencies, orchestrate tasks and perform various optimizations like package hoisting or remote caching.
For changelog generation releases and package publishing we rely on the changesets library.
The scripts that are defined inside the root /package.json
file will use turborepo under the hood and automatically perform needed tasks before running the action.
# This command will first build all the local dependencies needed in the right order.
# Only then it will attempt to build the `Ledger Live Desktop` app.
pnpm build:lld
To run nested scripts which are not covered at the root, you should not change your working directory.
Every package has an alias defined (see application or library tables or check out the package.json
file) that you can use as a prefix when running the script from the root.
# `pnpm desktop` is one of the shorthands written to avoid changing the working directory.
# The following command will run the nested `test` script.
# `test` is defined inside the `./apps/ledger-live-desktop/package.json` file.
pnpm desktop test
Note that when using these kinds of scripts you will have to make sure that the dependencies are built beforehand.
You can scope any pnpm or turborepo based script by using the --filter
flag.
This is a very powerful feature that you should look into if you are a frequent contributor.
Please check out the pnpm or turborepo documentation for more details (the syntax is almost similar albeit pnpm being a bit more powerful).
Here are some examples:
# Install all the dependencies needed for the packages under ./libs
pnpm i -F "{libs/**}..."
# Run lint only on packages that have been changed compared to origin/develop
pnpm lint --filter=[origin/develop]
# Test every package that has been changed since the last commit excluding the applications
pnpm run test --continue --filter="!./apps/*" --filter="...[HEAD~1]"
# Run typechecks for the Ledger Live Mobile project
pnpm typecheck --filter="live-mobile"
Each project folder has a README.md
file which contains basic documentation.
It includes background information about the project and how to setup, run and build it.
Please check the wiki for additional documentation.
The sub-packages are (roughly) split into three categories.
The applications are user-facing programs which depend on one or more libraries.
Ledger Live Applications
Name | Alias | Download |
---|---|---|
Ledger Live Desktop | pnpm desktop |
Website |
Ledger Live Mobile | pnpm mobile |
Android / iOS |
Libraries serve as publicly available packages, designed for integration with other libraries or applications.
These packages are deployed to the official npm repository under the @ledgerhq
organization.
Ledger Live Libraries
⚠️ Tools are primarily intended for internal use and are largely undocumented.
A tool can be a github action, a shell script or a piece of JavaScript code that is used throughout this repository.
Please check the general guidelines for contributing to Ledger Live projects: CONTRIBUTING.md
.
Each individual project may include its own specific guidelines, located within its respective folder.
While you explore these projects, here are some key points to keep in mind:
- Follow the git workflow, prefix your branches and do not create unnecessary merge commits.
- Be mindful when creating Pull Requests, clearly specify the purpose of your changes and include tests where applicable.
- Ledger Applications are mostly accepting bugfix contributions. Feature contributions are subject to review; they may be declined if they don't align with our roadmap or our long-term objectives.
Every night a github action merges the develop
branch into the nightly
branch.
For more information on the nightly releases, have a look at our wiki.
- Every commit triggers a workflow that will build and attach the application binaries to the run.
- For Ledger Employees: Nightly releases are built every night under the protected ledger-live-build repository.
- Every commit triggers a workflow that will build and attach the
Android
apk to the run. - For Ledger Employees: Nightly releases are built and published every night to Testflight and the Google Play Console.
Nightly versions of library packages are pushed every night to npm.
To install a nightly library use the @nightly
dist-tag.
npm i @ledgerhq/live-common@nightly
Please check each project LICENSE
file, most of them are under the MIT
license.