@onflow/ledger
TypeScript icon, indicating that this package has built-in type declarations

0.10.0 • Public • Published

@onflow/ledger

License npm version

This package provides a basic client library to communicate with the Flow App running in a Ledger Nano S/X

We recommend using the npmjs package in order to receive updates/fixes.

Notes

Use yarn install to avoid issues.

Minimal example

This is very simple. First you need to use one of the transport classes provided by Ledger.

import TransportWebUSB from "@ledgerhq/hw-transport-webusb";
import FlowApp from "@onflow/ledger";

transport = await TransportWebUSB.create();
const app = new FlowApp(transport);

The FlowApp object will provide:

const response = await app.getVersion();

if (response.returnCode !== FlowApp.ERROR_CODE.NoError) {
      console.log(`Error [${response.returnCode}] ${response.errorMessage}`);
} else {
    console.log(response);
}

Tests running on ledger device

This folder's test folder contains tests to run on ledger device. The aim of the testing code is:

  • To verify that the app works on the ledger device.
  • Testing in the early stages of feature development (this is, in some cases, easier done with ledger than with Zemu). To attain this, we provide only some very basic tests (it does not make sense to have two parallel full scale integration tests). In development you should be able to easily modify the tests to suit your needs.

To use the tests you first need to deploy the app to the ledger (with up to date firmware). As of now, you have to use non-containerized build (container's SDK is not up to date ATM). Then run yarn test.

Acknowledgements

Developed by Zondax GmbH and Vacuumlabs.

Readme

Keywords

Package Sidebar

Install

npm i @onflow/ledger

Homepage

onflow.org

Weekly Downloads

127

Version

0.10.0

License

Apache-2.0

Unpacked Size

65.5 kB

Total Files

15

Last publish

Collaborators

  • bthaile
  • jribbink
  • nialexsan
  • bakii_agl
  • han210
  • gregorggg
  • chasefleming
  • dapperj
  • gregsantos
  • derrickpelletier
  • dapper_labs
  • jeffreydoyle
  • harry.eth
  • turbolent_flow