/* @flow */ 'use strict'; import React from 'react'; import { findSelectedDevice } from '../../reducers/TrezorConnectReducer'; const ConfirmAddress = (props: any): any => { const account = props.accounts.find(a => a.deviceState === props.receive.deviceState && a.index === props.receive.accountIndex && a.network === props.receive.network); const { config } = props.localStorage; const selectedCoin = config.coins.find(c => c.network === account.network); return (

Confirm address on TREZOR

Please compare your address on device with address shown bellow.

{ account.address }

); } export default ConfirmAddress; export const ConfirmUnverifiedAddress = (props: any): any => { const account = props.accounts.find(a => a.deviceState === props.receive.deviceState && a.index === props.receive.accountIndex && a.network === props.receive.network); const { onCancel } = props.modalActions; const { showUnverifiedAddress, showAddress } = props.receiveActions; return (

Your TREZOR is not connected

To prevent phishing attacks, you should verify the address on your TREZOR first. Please reconnect your device to continue with the verification process.

); }