import React from "react"; import SubHeader from "component/subHeader"; import Link from "component/link"; class BackupPage extends React.PureComponent { render() { const { daemonSettings } = this.props; if (!daemonSettings || Object.keys(daemonSettings).length === 0) { return (
{__("Failed to load settings.")}
); } return (

{__("Backup Your LBRY Credits")}

{__( "Your LBRY credits are controllable by you and only you, via wallet file(s) stored locally on your computer." )}

{__( "Currently, there is no automatic wallet backup. If you lose access to these files, you will lose your credits permanently." )}

{__( "However, it is fairly easy to back up manually. To backup your wallet, make a copy of the folder listed below:" )}

{__(`${daemonSettings.lbryum_wallet_dir}`)}

{__( "Access to these files are equivalent to having access to your credits. Keep any copies you make of your wallet in a secure place." )}

For more details on backing up and best practices,{" "} .

); } } export default BackupPage;