import React from 'react' import PropTypes from 'prop-types' import QRCode from 'qrcode.react' import styles from './WalletDetails.scss' const WalletDetails = ({ info, address }) => (

Node Alias

Testing

Node Public Key

{info.data.identity_pubkey}

Deposit Address

{address}

Network

) WalletDetails.propTypes = { info: PropTypes.object.isRequired, address: PropTypes.string.isRequired } export default WalletDetails