Added placeholder text and fields for verify and broadcast pages
This commit is contained in:
parent
e9881777b2
commit
8abeb5eb8e
@ -38,7 +38,7 @@ export class InsightApp {
|
|||||||
this.pages = [
|
this.pages = [
|
||||||
{ title: 'Blocks', component: BlocksPage },
|
{ title: 'Blocks', component: BlocksPage },
|
||||||
{ title: 'Broadcast Transaction', component: BroadcastTxPage },
|
{ title: 'Broadcast Transaction', component: BroadcastTxPage },
|
||||||
{ title: 'Verify Message', component: VerifyMessagePage },
|
{ title: 'Verify Signed Message', component: VerifyMessagePage },
|
||||||
{ title: 'Node Status', component: NodeStatusPage }
|
{ title: 'Node Status', component: NodeStatusPage }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -8,5 +8,18 @@
|
|||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content padding>
|
<ion-content padding>
|
||||||
<h1>Broadcast Transaction</h1>
|
<ion-list>
|
||||||
|
<ion-item>
|
||||||
|
<p>This form can be used to broadcast a raw transaction in hex format over the Bitcoin network.</p>
|
||||||
|
</ion-item>
|
||||||
|
|
||||||
|
<ion-item>
|
||||||
|
<ion-label floating>Raw transaction data</ion-label>
|
||||||
|
<ion-input type="text"></ion-input>
|
||||||
|
</ion-item>
|
||||||
|
|
||||||
|
<ion-item>
|
||||||
|
<button ion-button outline>Send transaction</button>
|
||||||
|
</ion-item>
|
||||||
|
</ion-list>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|||||||
@ -8,9 +8,13 @@
|
|||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content padding>
|
<ion-content padding>
|
||||||
<h1>Verify Signed Message</h1>
|
|
||||||
|
|
||||||
<ion-list>
|
<ion-list>
|
||||||
|
<ion-item>
|
||||||
|
<p>Bitcoin comes with a way of signing arbitrary messages.</p>
|
||||||
|
|
||||||
|
<p>This form can be used to verify that a message comes from a specific Bitcoin address.</p>
|
||||||
|
</ion-item>
|
||||||
|
|
||||||
<ion-item>
|
<ion-item>
|
||||||
<ion-label floating>Address</ion-label>
|
<ion-label floating>Address</ion-label>
|
||||||
<ion-input type="text"></ion-input>
|
<ion-input type="text"></ion-input>
|
||||||
|
|||||||
@ -12,6 +12,6 @@ export class VerifyMessagePage {
|
|||||||
|
|
||||||
constructor(nav: NavController) {
|
constructor(nav: NavController) {
|
||||||
this.nav = nav;
|
this.nav = nav;
|
||||||
this.title = 'Verify Message';
|
this.title = 'Verify Signed Message';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user