mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-21 16:52:06 -07:00
Merge branch 'master' into dh-copy-visual
This commit is contained in:
@@ -20,24 +20,31 @@ class Wallet extends React.Component {
|
|||||||
return (
|
return (
|
||||||
<Content>
|
<Content>
|
||||||
<InfoWallets />
|
<InfoWallets />
|
||||||
|
{/* Show wallet info is this exists */}
|
||||||
{_this.props.walletInfo.mnemonic && (
|
{_this.props.walletInfo.mnemonic && (
|
||||||
<WalletInfo walletInfo={_this.props.walletInfo} />
|
<WalletInfo walletInfo={_this.props.walletInfo} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<NewWallet
|
{/** Shows the 'create' and 'import' cards
|
||||||
updateBalance={_this.props.updateBalance}
|
* if there's not a wallet created
|
||||||
setWalletInfo={_this.props.setWalletInfo}
|
*/}
|
||||||
setBchWallet={_this.props.setBchWallet}
|
{!_this.props.walletInfo.mnemonic && (
|
||||||
walletInfo={_this.props.walletInfo}
|
<>
|
||||||
/>
|
<NewWallet
|
||||||
|
updateBalance={_this.props.updateBalance}
|
||||||
|
setWalletInfo={_this.props.setWalletInfo}
|
||||||
|
setBchWallet={_this.props.setBchWallet}
|
||||||
|
walletInfo={_this.props.walletInfo}
|
||||||
|
/>
|
||||||
|
|
||||||
<ImportWallet
|
<ImportWallet
|
||||||
updateBalance={_this.props.updateBalance}
|
updateBalance={_this.props.updateBalance}
|
||||||
setWalletInfo={_this.props.setWalletInfo}
|
setWalletInfo={_this.props.setWalletInfo}
|
||||||
setBchWallet={_this.props.setBchWallet}
|
setBchWallet={_this.props.setBchWallet}
|
||||||
walletInfo={_this.props.walletInfo}
|
walletInfo={_this.props.walletInfo}
|
||||||
/>
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
{this.props.importComponents}
|
{this.props.importComponents}
|
||||||
</Content>
|
</Content>
|
||||||
|
|||||||
@@ -28,7 +28,8 @@ class InfoWallets extends React.Component {
|
|||||||
<p>
|
<p>
|
||||||
This is an open source, non-custodial web wallet
|
This is an open source, non-custodial web wallet
|
||||||
supporting Bitcoin Cash (BCH) and SLP tokens. Web wallets
|
supporting Bitcoin Cash (BCH) and SLP tokens. Web wallets
|
||||||
offer user convenience, by they are inherently insecure.{' '}
|
offer user convenience, but they are inherently insecure and
|
||||||
|
bad for privacy.{' '}
|
||||||
<b>Storing large amounts of money on a web wallet is not
|
<b>Storing large amounts of money on a web wallet is not
|
||||||
recommended!
|
recommended!
|
||||||
</b>
|
</b>
|
||||||
|
|||||||
Reference in New Issue
Block a user