A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/components/app/qr-hardware-popover/qr-hardware-wallet-importer/qr-hardware-wallet-importer...

38 lines
1.1 KiB

import React from 'react';
import PropTypes from 'prop-types';
import {
submitQRHardwareCryptoAccount,
submitQRHardwareCryptoHDKey,
} from '../../../../store/actions';
import BaseReader from '../base-reader';
import { useI18nContext } from '../../../../hooks/useI18nContext';
const QRHardwareWalletImporter = ({ handleCancel, setErrorTitle }) => {
const t = useI18nContext();
const handleSuccess = async (ur) => {
if (ur.type === 'crypto-hdkey') {
return await submitQRHardwareCryptoHDKey(ur.cbor.toString('hex'));
} else if (ur.type === 'crypto-account') {
return await submitQRHardwareCryptoAccount(ur.cbor.toString('hex'));
}
setErrorTitle(t('QRHardwareUnknownQRCodeTitle'));
throw new Error(t('unknownQrCode'));
};
return (
<BaseReader
isReadingWallet
handleCancel={handleCancel}
handleSuccess={handleSuccess}
setErrorTitle={setErrorTitle}
/>
);
};
QRHardwareWalletImporter.propTypes = {
handleCancel: PropTypes.func.isRequired,
setErrorTitle: PropTypes.func.isRequired,
};
export default QRHardwareWalletImporter;