copay-crown
Version:
A Secure Crown Wallet
23 lines (22 loc) • 975 B
HTML
<ion-header>
<ion-navbar>
<ion-title>{{'Extended Private Key' | translate}}</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<page-wallet-item [wallet]="wallet"></page-wallet-item>
<div class="container" *ngIf="wallet && !credentialsEncrypted">
<h1 translate>Warning!</h1>
<div class="warning-message">
<p translate>
Your extended private keys are all that is needed to access your bitcoin funds. Be sure to protect your private
keys and store them only on secure devices. BitPay does not have access to your private keys, so you alone are responsible
for your keys. If you share key access with external services, you take responsibility for the risk of theft or breach.
Only advanced users should handle extended private keys directly.
</p>
</div>
<div copy-to-clipboard="{{xPrivKey}}">
<button ion-button block clear translate>Copy to clipboard</button>
</div>
</div>
</ion-content>