import PrintableWallet from 'components/PrintableWallet'; import PrivKeyWallet from 'libs/wallet/privkey'; import React, { Component } from 'react'; import { Link } from 'react-router-dom'; import translate from 'translations'; import './PaperWallet.scss'; import Template from './Template'; interface Props { wallet: PrivKeyWallet; } export default class PaperWallet extends Component { public render() { const { wallet } = this.props; const content = (
{/* Private Key */}

{translate('GEN_Label_5')}

{/* Download Paper Wallet */}

{translate('x_Print')}

{/* Warning */}

Do not lose it! It cannot be recovered if you lose it.

Do not share it! Your funds will be stolen if you use this file on a malicious/phishing site.

Make a backup! Secure it like the millions of dollars it may one day be worth.

{/* Continue button */} {translate('NAV_ViewWallet')} →
); const help = (

{translate('GEN_Help_4')}

{translate('GEN_Help_17')}

{translate('x_PrintDesc')}

); return