1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
-
4
3
< head >
5
4
< meta charset ="UTF-8 ">
6
5
< title > BLT Wallet - Testnet Wallet for Bitcoin & Litecoin</ title >
23
22
</ div >
24
23
< div class ="item ">
25
24
< strong > What is BLT wallet?</ strong >
26
- < br /> A web wallet for easy access to Bitcoin and Litecoin testnets. Please bookmark this URL if you want access to the same wallet again.
25
+ < br /> A web wallet for easy access to Bitcoin and Litecoin testnets. Please bookmark this URL if you want to access the same wallet again.
27
26
</ div >
28
27
< div class ="item ">
29
28
< div class ="four ui buttons ">
30
- < button :class ="color " class ="ui basic small icon button " data-tooltip ="Create new address " data-position ="top left " @click ="app. init(app. current) ">
29
+ < button :class ="color " class ="ui basic small icon button " data-tooltip ="Create new address " data-position ="top left " @click ="init(current) ">
31
30
< i class ="plus icon "> </ i >
32
31
</ button >
33
32
< button :class ="color " class ="ui basic small icon button " data-tooltip ="Switch Currency " @click ="switchCurrency(); ">
61
60
< div class ="item ">
62
61
< div class ="ui inverted header "> BLT Wallet</ div >
63
62
< div class ="ui four buttons ">
64
- < button :class ="color " class ="ui basic small icon button " data-tooltip ="Create new address " data-position ="bottom left " @click ="app. init(app. current) ">
63
+ < button :class ="color " class ="ui basic medium icon button " data-tooltip ="Create new address " data-position ="bottom left " @click ="init(current) ">
65
64
< i class ="plus icon "> </ i >
66
65
</ button >
67
- < button :class ="color " class ="ui basic small icon button " data-tooltip ="Switch Currency " data-position ="bottom left " @click ="switchCurrency(); ">
66
+ < button :class ="color " class ="ui basic medium icon button " data-tooltip ="Switch Currency " data-position ="bottom left " @click ="switchCurrency(); ">
68
67
< i class ="exchange icon "> </ i >
69
68
</ button >
70
- < button :class ="color " class ="ui basic top left pointing small dropdown icon button " data-tooltip ="Change Fiat Currency " data-position ="bottom left ">
69
+ < button :class ="color " class ="ui basic top left pointing medium dropdown icon button " data-tooltip ="Change Fiat Currency " data-position ="bottom left ">
71
70
< i class ="money icon "> </ i >
72
71
< div class ="menu ">
73
72
< div class ="divider "> </ div >
79
78
</ div >
80
79
</ div >
81
80
</ button >
82
- < button :class ="color " class ="ui basic top left pointing small dropdown icon button " data-tooltip ="Get coins " data-position ="bottom left ">
81
+ < button :class ="color " class ="ui basic top left pointing medium dropdown icon button " data-tooltip ="Get coins " data-position ="bottom left ">
83
82
< i class ="money icon "> </ i >
84
83
< div class ="menu ">
85
84
< div class ="divider "> </ div >
@@ -119,7 +118,7 @@ <h2>Transactions</h2>
119
118
</ thead >
120
119
< tbody >
121
120
< tr v-for ="tx in transactions ">
122
- < td v-if ="tx.vin[0].addr == app. address ">
121
+ < td v-if ="tx.vin[0].addr == address ">
123
122
< i class ="medium circular inverted red arrow right icon "> </ i >
124
123
< i v-if ="tx.confirmations < 1 " class ="medium hourglass start icon ">
125
124
</ td >
@@ -128,9 +127,9 @@ <h2>Transactions</h2>
128
127
< i v-if ="tx.confirmations < 1 " class ="medium hourglass start icon ">
129
128
</ td >
130
129
< td > < span v-bind:data-livestamp ="tx.time "> </ span > </ td >
131
- < td > < a v-bind:href ="app. baseURL + '/tx/' + tx.txid " target ="_blank "> {{ tx.txid }}</ a > </ td >
132
- < td v-if ="tx.vin[0].addr == app. address " class ="negative "> -{{ tx.vout[0].value }} {{ symbol }}</ td >
133
- < td v-else class ="positive "> +{{ app. getOutputValue(tx.vout) }} {{ symbol }}</ td >
130
+ < td > < a v-bind:href ="baseURL + '/tx/' + tx.txid " target ="_blank "> {{ tx.txid }}</ a > </ td >
131
+ < td v-if ="tx.vin[0].addr == address " class ="negative "> -{{ tx.vout[0].value }} {{ symbol }}</ td >
132
+ < td v-else class ="positive "> +{{ getOutputValue(tx.vout) }} {{ symbol }}</ td >
134
133
</ tr >
135
134
</ tbody >
136
135
</ table >
@@ -150,9 +149,9 @@ <h2>Transactions</h2>
150
149
</ div >
151
150
< div class ="field ">
152
151
< label > Recipient Address</ label >
153
- < input id ="receive-address " placeholder ="Address " type ="text ">
152
+ < input id ="receive-address " placeholder ="Address " type ="text " value =" mmC1VMVwYXh2YqP6GFdSL6vABgooCRMcGz " >
154
153
</ div >
155
- < button :class ="color " class ="ui button " id ="send-button " onclick ="sendTransaction(); ">
154
+ < button :class ="color " class ="ui button " id ="send-button " @click ="sendTransaction() ">
156
155
Send
157
156
</ button >
158
157
< button class ="ui deny button " onclick ="$('.modal').modal('hide'); ">
0 commit comments