Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Latest commit

 

History

History
63 lines (45 loc) · 1.93 KB

README.md

File metadata and controls

63 lines (45 loc) · 1.93 KB

ledger-litecoin

A Flutter plugin to scan, connect & sign transactions using Ledger Nano devices using USB & BLE
« Explore the docs »

Report Bug · Request Feature


Overview

Ledger Nano devices are the perfect hardware wallets for managing your crypto on the go. This Flutter package is a plugin for the ledger_flutter package to get accounts and sign transactions using the Litecoin and Bitcoin Cash blockchains.

Supported devices

BLE USB
Android ✔️ ✔️
iOS ✔️

Installation

Install the latest version of this package via pub.dev:

ledger_litcoin: ^latest-version

For integration with the Ledger Flutter package, check out the documentation here.

Setup

Create a new instance of an LitecoinLedgerApp and pass an instance of your Ledger object.

final app = LitecoinLedgerApp(ledger);

Usage

Get public keys

Depending on the required blockchain and Ledger Application Plugin, the getAccounts() method can be used to fetch the public keys from the Ledger Nano device.

Based on the implementation and supported protocol, there might be only one public key in the list of accounts.

final accounts = await app.getAccounts(device);