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

Package detail

@meey-sdk-js/meey-ledger-app

meeyio2MIT0.3.6TypeScript support: included

Meey Ledger App

readme

Meey Ledger App JavaScript bindings

npm

How to use

npm install --save @meey-sdk-js/meey-pedger-app

Getting address and signing transaction

import MeeyLedgerApp from '@meey-sdk-js/meey-ledger-app';
// Pick a transport. See https://github.com/LedgerHQ/ledgerjs
import Transport from '@ledgerhq/hw-transport-node-hid';
import MeeyClient, { Tx } from '@meey-sdk-js/client';

async () => {
    const meey = new MeeyClient();
    const transport = await Transport.create(3000, 1500);
    const app = new MeeyLedgerApp(transport);
    const path = "m/44'/441'/0'/0/" + i;
    const address = await app.getWalletAddress(path);
    const tx = {
        from: address,
        to: address,
        chainIdHash: await meey.getChainIdHash(),
        type: Tx.Type.TRANSFER,
        nonce: await meey.getNonce(address) + 1,
        limit: 100000,
        nonce: 1,
    };
    const result = await app.signTransaction(tx); // { hash, signature }
    tx.sign = result.signature;
    tx.hash = await hashTransaction(tx, 'bytes');
    const txHash = await meey.sendSignedTransaction(tx);
    const txReceipt = await meey.waitForTransactionReceipt(txHash); // { status: 'SUCCESS', blockno: number, ... }
}()