copay-crown
Version:
A Secure Crown Wallet
25 lines (24 loc) • 1.04 kB
HTML
<ion-header>
<ion-navbar>
<ion-title>{{'Wallet Service URL' | translate}}</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<page-wallet-item [wallet]="wallet"></page-wallet-item>
<ion-list>
<form [formGroup]="walletServiceForm" (ngSubmit)="save()">
<ion-item>
<ion-label stacked translate>Wallet Service URL</ion-label>
<ion-input type="text" formControlName="bwsurl" [value]="walletServiceForm.value.bwsurl" required></ion-input>
</ion-item>
<ion-item-divider text-wrap>
<span translate>{{appName}} depends on Bitcore Wallet Service (BWS) for blockchain information, networking and Copayer synchronization.
The default configuration points to https://bws.bitpay.com (BitPay's public BWS instance).</span>
<a (click)="resetDefaultUrl()" translate>
Use default url
</a>
</ion-item-divider>
<button ion-button block clear type="submit" [disabled]="!walletServiceForm.valid">Save</button>
</form>
</ion-list>
</ion-content>