1.1.0 ā€¢ Published 4 years ago

@kompose-app/hw-subproviders-klaytn v1.1.0

Weekly downloads
7
License
Apache-2.0
Repository
github
Last release
4 years ago

hw-subproviders-klaytn

A higher-level JS package to work with hardware wallets that support Klaytn. Encodes Klaytn transactions using CaverJS and signs with HD keys managed by corresponding HW subprovider:

  • LedgerSubprovider supports Ledger App Klaytn for Ledger Blue, Nano S and (possibly) Nano X.
  • TrezorSubprovider ā€” TODO šŸ˜
  • D'Cent Wallet ā€” TODO šŸ˜

Notice

The package is made and provided by community of Klaytn and it is not affiliated with GroundX and other Klaytn official partners. However, we work close with Klaytn and Ledger teams to make the original Ledger app approved.

Contact

For any feedback and communication about this package and "Klaytn" app for Ledger, please join Telegram group @kompose

API

Examples

The LedgerSubprovider internally relies on @kompose-app/hw-app-klaytn which makes all heavy lifting of APDU communication according to this spec.

Simple start with U2F Transport (Chrome, Brave, Firefox)

import {
    LedgerSubprovider,
    ledgerKlaytnBrowserClientFactoryAsync
} from '@kompose-app/hw-subproviders-klaytn'

(async () => {
    const subprovider = new LedgerSubprovider({
        networkId: 8217,
        ledgerKlaytnClientFactoryAsync: ledgerKlaytnBrowserClientFactoryAsync,
    })

    try {
        const accounts = await subprovider.getAccountsAsync()
        console.log("Address:", accounts[0])
    } catch (e) {
        console.log(`Error (${e.name}): ${e.message}`)
    }
})()

If you get Error (TransportError): U2F browser support is needed, then your environement (e.g. NodeJS) is not supporting U2F. And you must use HID or another transports, see the full list at LedgerHQ's documentation on transports.

IMPORTANT! āš ļø Recently U2F support has been degraded in Windows 10 operating system, which may cause some issues with Ledger interaction and bad user experience. More information about this can see in this post by Ledger team. ledgerKlaytnBrowserClientFactoryAsync provided by this package automatically tries to use WebUSB by default, compatible with all major platforms. If failed, U2F will be used as a fallback.

Using a HID transport (e.g. from NodeJS)

import TransportNodeHid from '@ledgerhq/hw-transport-node-hid'
import { LedgerSubprovider } from '@kompose-app/hw-subproviders-klaytn'
import Klaytn from '@kompose-app/hw-app-klaytn'

(async () => {
    const subprovider = new LedgerSubprovider({
        networkId: 8217,
        ledgerKlaytnClientFactoryAsync: async () => {
            const ledgerConnection = await TransportNodeHid.create()
            return new Klaytn(ledgerConnection)
        }
    })

    try {
        const accounts = await subprovider.getAccountsAsync()
        console.log("Address:", accounts[0])
    } catch (e) {
        console.log(`Error (${e.name}): ${e.message}`)
    }
})()

Result when Ledger Nano S app is locked:

$ BABEL_ENV=development babel-node src/index.js
Error (TransportStatusError): Ledger device: UNKNOWN_ERROR (0x6804)
āœØ  Done in 3.30s.

Result when app is unlocked:

$ BABEL_ENV=development babel-node src/index.js
Address: 0x0cbe753e2c47f383eb8c9186f20b660c6e3f79ae
āœØ  Done in 2.62s.

License

Apache License 2.0