Socket
Socket
Sign inDemoInstall

@ledgerhq/devices

Package Overview
Dependencies
3
Maintainers
12
Versions
246
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ledgerhq/devices

Ledger devices


Version published
Maintainers
12
Install size
5.10 MB
Created

Package description

What is @ledgerhq/devices?

@ledgerhq/devices is an npm package that provides a comprehensive set of tools and utilities for interacting with Ledger hardware wallets. It includes functionalities for managing device information, handling firmware updates, and interfacing with various Ledger applications.

What are @ledgerhq/devices's main functionalities?

List Supported Devices

This feature allows you to retrieve information about a specific Ledger device model. In this example, the code fetches details about the Ledger Nano S model.

const { getDeviceModel } = require('@ledgerhq/devices');

const deviceModel = getDeviceModel('nanoS');
console.log(deviceModel);

Identify Device by USB Product ID

This feature helps you identify a Ledger device based on its USB product ID. The code sample demonstrates how to get device information using a specific USB product ID.

const { identifyUSBProductId } = require('@ledgerhq/devices');

const deviceInfo = identifyUSBProductId(0x0001);
console.log(deviceInfo);

List All Devices

This feature provides a list of all supported Ledger devices. The code sample prints out the entire list of devices supported by the @ledgerhq/devices package.

const { devices } = require('@ledgerhq/devices');

console.log(devices);

Other packages similar to @ledgerhq/devices

Readme

Source

@ledgerhq/devices

Logic for all Ledger devices.

API

Table of Contents

createHIDframing

Parameters

IIGenericHID

The USB product IDs will be defined as MMII, encoding a model (MM) and an interface bitfield (II)

  • Model Ledger Nano S : 0x10 Ledger Blue : 0x00 Ledger Nano X : 0x40

  • Interface support bitfield Generic HID : 0x01 Keyboard HID : 0x02 U2F : 0x04 CCID : 0x08 WebUSB : 0x10

Type: number

ledgerUSBVendorId

Type: number

getDeviceModel

Parameters

Returns DeviceModel

identifyUSBProductId

Parameters

Returns DeviceModel?

getBluetoothServiceUuids

getInfosForServiceUuid

Parameters

Returns BluetoothInfos?

DeviceModelId

Type: $Keys<any>

DeviceModel

Type: {id: DeviceModelId, productName: string, productIdMM: number, legacyUsbProductId: number, usbOnly: boolean, memorySize: number, blockSize: number, bluetoothSpec: Array<{serviceUuid: string, writeUuid: string, notifyUuid: string}>?}

Properties

BluetoothInfos

Type: {deviceModel: DeviceModel, serviceUuid: string, writeUuid: string, notifyUuid: string}

Properties

Type: {id: DeviceModelId, productName: string, usbProductId: number, bluetoothSpec: Array<{serviceUuid: string, writeUuid: string, notifyUuid: string}>?}

Type: {id: string, productName: string, usbProductId: number, usbOnly: boolean, bluetoothSpec: Array<{serviceUuid: string, writeUuid: string, notifyUuid: string}>?}

master

Properties

BluetoothInfos

Type: {deviceModel: DeviceModel, serviceUuid: string, writeUuid: string, notifyUuid: string}

Properties

Keywords

FAQs

Last updated on 28 Nov 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc