import './LedgerNano.scss'; import React, { Component } from 'react'; import translate, { translateRaw } from 'translations'; import DeterministicWalletsModal from './DeterministicWalletsModal'; import LedgerWallet from 'libs/wallet/ledger'; import Ledger3 from 'vendor/ledger3'; import LedgerEth from 'vendor/ledger-eth'; import DPATHS from 'config/dpaths'; const DEFAULT_PATH = DPATHS.LEDGER[0].value; interface Props { onUnlock(param: any): void; } interface State { publicKey: string; chainCode: string; dPath: string; error: string | null; isLoading: boolean; } export default class LedgerNanoSDecrypt extends Component { public state: State = { publicKey: '', chainCode: '', dPath: DEFAULT_PATH, error: null, isLoading: false }; public render() { const { dPath, publicKey, chainCode, error, isLoading } = this.state; const showErr = error ? 'is-showing' : ''; return (
Guides:
How to use MyEtherWallet with your Nano S
How to secure your tokens with your Nano S
{error || '-'}
{translate('Don’t have a Ledger? Order one now!')}
); } private handlePathChange = (dPath: string) => { this.handleConnect(dPath); }; private handleConnect = (dPath: string = this.state.dPath) => { this.setState({ isLoading: true, error: null }); const ledger = new Ledger3('w0w'); const ethApp = new LedgerEth(ledger); ethApp.getAddress( dPath, (res, err) => { if (err) { err = ethApp.getError(err); } if (res) { this.setState({ publicKey: res.publicKey, chainCode: res.chainCode, isLoading: false }); } else { this.setState({ error: err, isLoading: false }); } }, false, true ); }; private handleCancel = () => { this.setState({ publicKey: '', chainCode: '', dPath: DEFAULT_PATH }); }; private handleUnlock = (address: string, index: number) => { this.props.onUnlock(new LedgerWallet(address, this.state.dPath, index)); }; private handleNullConnect = (): void => { return this.handleConnect(); }; }