Ledger Wallet
Previously known as "Ledger Live"
External developers: also see Ledger Developer Portal for guides like Blockchain Support guide.
Apps
The repository houses the companion apps for Ledger hardware wallet signers allowing users to manage crypto, install apps on device, update firmware, verify and sign transactions.
Download production apps from https://download.live.ledger.com
- Ledger Wallet Desktop (LWD) – Desktop app built with Electron.
- Ledger Wallet Mobile (LWM) – Android and iOS apps built with React Native.
- Wallet CLI – Agent-optimized CLI toolset.
- CLI – Legacy npm CLI for QA and power users.
npm packages
The repo is also home to 150+ library packages that are consumed both internally by the apps and externally by third-party developers integrating with Ledger hardware.
Public packages are published to npm by ldg-github-ci.
Getting started
The repo uses:
- mise for pinned local tool versions
- pnpm workspaces for npm package management
- Nx for task orchestration and repo management
- Changesets for changelogs and publishing
To install everything run:
mise install
pnpm iWhat to run next depends on the workspace you're targeting. See repo commands for build, dev, lint, and test recipes, or check the README in the relevant workspace.
Finding documentation
- Repo-wide — AGENTS.md, then docs/
- Task-specific (agents) — .agents/skills/
- Local — README in the workspace or package you're working in
Overall structure
| Path | Purpose |
|---|---|
.agents/ |
Shared agent-facing docs |
apps/ |
Desktop, mobile and CLI apps |
devtools/ |
Internal developer tooling and shell helpers |
docs/ |
Repo-wide canonical docs |
domain/ |
Domain packages (entity/, api/)* |
e2e/ |
E2E tests using Detox and Speculos |
features/ |
Features shared across apps* |
libs/ |
Shared libraries — the home for new shared code; ledger-live-common is maintenance-only* |
patches/ |
patchedDependencies auto-applied during pnpm install |
scripts/ |
Repo-level utility scripts |
shared/ |
Cross-cutting packages used in domain/, features/ and apps/* |
tests/ |
Dummy apps for testing (dapps, wallet) |
tools/ |
CI actions, GitHub bots and Nx plugins |
*Adding new code? See libs/README.md.
Nightly releases
- Desktop binaries and Android APKs are attached to build workflows – see GitHub Actions.
- Authorised users can also access Testflight, Google Play Console and ledger-live-build repository.
- Nightly packages are published with
@nightlydist-tag, e.g.npm i @ledgerhq/hw-app-eth@nightly - More details on the Wiki: https://github.com/LedgerHQ/ledger-live/wiki/Release-Process#nightlies
License
Please check each project LICENSE file, most of them are under the MIT license.