Ledger Hardware Wallet WebUSB implementation of the communication layer


Keywords
Ledger, LedgerWallet, webusb, NanoS, Blue, Hardware Wallet
License
Apache-2.0
Install
npm install @ledgerhq/hw-transport-webusb@6.28.6

Documentation

ledger-logo   js-logo

The Ledger Live JavaScript Ecosystem

gitpoap badge

About

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.

Installation

💡 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.

Cloning

git clone git@github.com:LedgerHQ/ledger-live.git
cd ledger-live

Proto

⚠️ Important: In order to install the right version of the tools you will need to install the 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

Dependencies

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.

Usage

Important: All the commands should be run at the root of the monorepo.

Tools

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.

Root scripts

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

Aliases

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.

Scoping

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"

Documentation

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.

Structure

The sub-packages are (roughly) split into three categories.

/app - Applications

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

/libs - Libraries

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

Name Alias Umbrella Package
@ledgerhq/ledger-live-common pnpm common -----
---- ----- ----- -------
@ledgerhq/cryptoassets pnpm ljs:cryoptoassets ledgerjs npm
@ledgerhq/devices pnpm ljs:devices ledgerjs npm
@ledgerhq/errors pnpm ljs:errors ledgerjs npm
@ledgerhq/hw-app-algorand pnpm ljs:hw-app-algorand ledgerjs npm
@ledgerhq/hw-app-btc pnpm ljs:hw-app-btc ledgerjs npm
@ledgerhq/hw-app-cosmos pnpm ljs:hw-app-cosmos ledgerjs npm
@ledgerhq/hw-app-eth pnpm ljs:hw-app-eth ledgerjs npm
@ledgerhq/hw-app-helium pnpm ljs:hw-app-helium ledgerjs npm
@ledgerhq/hw-app-polkadot pnpm ljs:hw-app-polkadot ledgerjs npm
@ledgerhq/hw-app-solana pnpm ljs:hw-app-solana ledgerjs npm
@ledgerhq/hw-app-str pnpm ljs:hw-app-str ledgerjs npm
@ledgerhq/hw-app-tezos pnpm ljs:hw-app-tezos ledgerjs npm
@ledgerhq/hw-app-trx pnpm ljs:hw-app-trx ledgerjs npm
@ledgerhq/hw-app-xrp pnpm ljs:hw-app-xrp ledgerjs npm
@ledgerhq/hw-transport pnpm ljs:hw-transport ledgerjs npm
@ledgerhq/hw-transport-http pnpm ljs:hw-transport-http ledgerjs npm
@ledgerhq/hw-transport-mocker pnpm ljs:hw-transport-mocker ledgerjs npm
@ledgerhq/hw-transport-node-hid pnpm ljs:hw-transport-node ledgerjs npm
@ledgerhq/hw-transport-node-hid-noevents pnpm ljs:hw-transport-node ledgerjs npm
@ledgerhq/hw-transport-node-hid-singleton pnpm ljs:hw-transport-node ledgerjs npm
@ledgerhq/hw-transport-node-speculos pnpm ljs:hw-transport-node ledgerjs npm
@ledgerhq/hw-transport-node-speculos-http pnpm ljs:hw-transport-node ledgerjs npm
@ledgerhq/hw-transport-web-ble pnpm ljs:hw-transport-web ledgerjs npm
@ledgerhq/hw-transport-webhid pnpm ljs:hw-transport-webhid ledgerjs npm
@ledgerhq/hw-transport-webusb pnpm ljs:hw-transport-webusb ledgerjs npm
@ledgerhq/logs pnpm ljs:logs ledgerjs npm
@ledgerhq/react-native-hid pnpm ljs:react-native-hid ledgerjs npm
@ledgerhq/react-native-hw-transport-ble pnpm ljs:react-native-hw ledgerjs npm
@ledgerhq/types-cryptoassets pnpm ljs:types-cryptoassets ledgerjs npm
@ledgerhq/types-devices pnpm ljs:types-devices ledgerjs npm
@ledgerhq/types-live pnpm ljs:types-live ledgerjs npm
---- ----- ----- -------
@ledgerhq/icons-ui pnpm ui:icons ui npm
@ledgerhq/native-ui pnpm ui:native ui npm
@ledgerhq/react-ui pnpm ui:react ui npm
@ledgerhq/ui-shared pnpm ui:shared ui npm

/tools - Tools

⚠️ 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.

Contributing

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.

Nightly Releases

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.

Ledger Live Desktop

  • 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.

Ledger Live Mobile

Libraries

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

License

Please check each project LICENSE file, most of them are under the MIT license.