import React from 'react'; import Link from 'component/link'; import { Address } from 'component/common'; class WalletAddress extends React.Component { componentWillMount() { this.props.checkAddressIsMine(this.props.receiveAddress); } render() { const { receiveAddress, getNewAddress, gettingNewAddress } = this.props; return (

{__('Wallet Address')}

{__( 'Other LBRY users may send credits to you by entering this address on the "Send" page.' )}

{__( 'You can generate a new address at any time, and any previous addresses will continue to work. Using multiple addresses can be helpful for keeping track of incoming payments from multiple sources.' )}

); } } export default WalletAddress;