Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@ledgerhq/devices

LedgerHQ1.4mApache-2.08.4.4TypeScript support: included

Ledger devices

Ledger

readme

changelog

@ledgerhq/devices

8.4.4

Patch Changes

8.4.4-next.0

Patch Changes

8.4.3

Patch Changes

8.4.3-next.0

Patch Changes

8.4.2

Patch Changes

8.4.2-hotfix.0

Patch Changes

8.4.1

Patch Changes

8.4.1-next.0

Patch Changes

8.4.0

Minor Changes

Patch Changes

8.4.0-next.0

Minor Changes

Patch Changes

8.3.0

Minor Changes

Patch Changes

8.3.0-next.0

Minor Changes

Patch Changes

8.2.2

Patch Changes

8.2.2-next.0

Patch Changes

8.2.1

Patch Changes

8.2.1-next.0

Patch Changes

8.2.0

Minor Changes

  • #5171 52a3732 Thanks @alexandremgo! - Feat: cleaner refactoring of BLE and USB HID frames encoding/decoding

    • Cleans up + documentation + tracing/logs + unit tests of BLE frame encoding and decoding: receiveAPDU and sendAPDU
    • Cleans up + documentation + tracing/logs + unit tests of HID USB frame encoding and decoding: hid-framing

Patch Changes

8.2.0-next.0

Minor Changes

  • #5171 52a3732 Thanks @alexandremgo! - Feat: cleaner refactoring of BLE and USB HID frames encoding/decoding

    • Cleans up + documentation + tracing/logs + unit tests of BLE frame encoding and decoding: receiveAPDU and sendAPDU
    • Cleans up + documentation + tracing/logs + unit tests of HID USB frame encoding and decoding: hid-framing

Patch Changes

8.1.0

Minor Changes

Patch Changes

8.1.0-next.0

Minor Changes

Patch Changes

8.0.8

Patch Changes

8.0.8-next.0

Patch Changes

8.0.7

Patch Changes

8.0.7-next.0

Patch Changes

8.0.6

Patch Changes

8.0.6-next.0

Patch Changes

8.0.5

Patch Changes

8.0.5-next.0

Patch Changes

8.0.4

Patch Changes

8.0.4-next.0

Patch Changes

8.0.3

Patch Changes

8.0.3-next.0

Patch Changes

8.0.2

Patch Changes

8.0.2-next.0

Patch Changes

8.0.1

Patch Changes

8.0.1-next.0

Patch Changes

8.0.0

Major Changes

  • #1991 62af25493e Thanks @valpinkman! - Remove the support for imports ending with / mapping to the index.js file.

    For instance:

    import { getCryptoCurrencyById } from "@ledgerhq/live-common/currencies/";

    Should be rewritten to:

    import { getCryptoCurrencyById } from "@ledgerhq/live-common/currencies/index";

    This trailing slash is poorly supported by some tools like vite.js and was meant as a transitional change. Time has come to remove the support for thos shorthand.

8.0.0-next.0

Major Changes

  • #1991 62af25493e Thanks @valpinkman! - Remove the support for imports ending with / mapping to the index.js file.

    For instance:

    import { getCryptoCurrencyById } from "@ledgerhq/live-common/currencies/";

    Should be rewritten to:

    import { getCryptoCurrencyById } from "@ledgerhq/live-common/currencies/index";

    This trailing slash is poorly supported by some tools like vite.js and was meant as a transitional change. Time has come to remove the support for thos shorthand.

7.0.7

Patch Changes

7.0.7-next.0

Patch Changes

7.0.6

Patch Changes

7.0.6-next.0

Patch Changes

7.0.5

Patch Changes

7.0.5-next.0

Patch Changes

7.0.4

Patch Changes

7.0.4-next.0

Patch Changes

7.0.3

Patch Changes

7.0.3-next.0

Patch Changes

7.0.2

Patch Changes

7.0.2-next.0

Patch Changes

7.0.1

Patch Changes

7.0.1-next.0

Patch Changes

7.0.0

Major Changes

  • #364 f538d2974 Thanks @elbywan! - #### Replace webpack with vite.js to speed up the ledger live desktop development process.

    To fully embrace the "bundleless" vite.js approach, it is necessary to transpile our packages contained in the monorepository to the ESM format, and subpath exports have been added to silently map to commonjs or esm depending on the need.

    🔥 BREAKING CHANGES for @ledgerhq/live-common, @ledgerhq/devices and @ledgerhq/hw-app-btc consumers.

    As highlighted here, it is not possible to target folders directly when using subpath exports.

    The workaround is to suffix the call with /index (or /).

    For instance…

    import * as currencies from "@ledgerhq/live-common/currencies";

    …must be rewritten to…

    import * as currencies from "@ledgerhq/live-common/currencies/index;";

    …or:

    import * as currencies from "@ledgerhq/live-common/currencies/;";

Patch Changes

7.0.0-next.0

Major Changes

  • #364 f538d2974 Thanks @elbywan! - #### Replace webpack with vite.js to speed up the ledger live desktop development process.

    To fully embrace the "bundleless" vite.js approach, it is necessary to transpile our packages contained in the monorepository to the ESM format, and subpath exports have been added to silently map to commonjs or esm depending on the need.

    🔥 BREAKING CHANGES for @ledgerhq/live-common, @ledgerhq/devices and @ledgerhq/hw-app-btc consumers.

    As highlighted here, it is not possible to target folders directly when using subpath exports.

    The workaround is to suffix the call with /index (or /).

    For instance…

    import * as currencies from "@ledgerhq/live-common/currencies";

    …must be rewritten to…

    import * as currencies from "@ledgerhq/live-common/currencies/index;";

    …or:

    import * as currencies from "@ledgerhq/live-common/currencies/;";

Patch Changes