@@ -151,6 +151,21 @@ <h1>Digital Cash Wallet</h1>
151
151
disabled
152
152
/>
153
153
</ label >
154
+
155
+ < label
156
+ > Address for WIF Export
157
+ < small > base58check-encoded pkh</ small >
158
+ < input
159
+ type ="text "
160
+ data-id ="export-address "
161
+ placeholder ="ex: ybLxVb3aspSHFgxM1qTyuBSXnjAqLFEG8P "
162
+ />
163
+ </ label >
164
+ < pre > < code data-id ="export-wif "> < em > output: private key as wif</ em > </ code > </ pre >
165
+ < button type ="submit " onclick ="App.exportWif(event) ">
166
+ Export WIF
167
+ </ button >
168
+
154
169
< hr />
155
170
< label
156
171
> Coins (< code data-id ="total-balance "> 0.0000</ code > )
@@ -241,6 +256,41 @@ <h1>Digital Cash Wallet</h1>
241
256
</ label >
242
257
243
258
< button type ="submit " onclick ="App.sendDash(event) "> Send DASH</ button >
259
+ < hr />
260
+ < label
261
+ > Send Memo
262
+ < small > hex-encoded op_return</ small >
263
+ < br />
264
+ < label style ="display: inline-block "
265
+ > < input
266
+ type ="radio "
267
+ name ="memo-encoding "
268
+ value ="hex "
269
+ onchange ="document.querySelector('[name=memo]').placeholder = 'ex: 48656c6c6f2c20576f726c6421' "
270
+ checked ="checked "
271
+ />
272
+ hex
273
+ </ label >
274
+ < label style ="display: inline-block "
275
+ > < input
276
+ type ="radio "
277
+ name ="memo-encoding "
278
+ value ="string "
279
+ onchange ="document.querySelector('[name=memo]').placeholder = 'ex: Hello, World!' "
280
+ />
281
+ string (utf-8)
282
+ </ label >
283
+ < input
284
+ type ="text "
285
+ name ="memo "
286
+ placeholder ="ex: 48656c6c6f2c20576f726c6421 "
287
+ />
288
+ </ label >
289
+ < small
290
+ > Share: < a href ="" data-id ="memo-link " target ="_blank "> </ a
291
+ > </ small >
292
+ < pre > < code data-id ="memo-txid "> < em > output: txid</ em > </ code > </ pre >
293
+ < button type ="button " onclick ="App.sendMemo(event) "> Send Memo</ button >
244
294
245
295
< hr />
246
296
< label
@@ -427,57 +477,6 @@ <h1>Digital Cash Wallet</h1>
427
477
< button type ="button " onclick ="App.denominateCoins(event) ">
428
478
Denominate Coins
429
479
</ button >
430
-
431
- < hr />
432
- < label
433
- > Send Memo
434
- < small > hex-encoded op_return</ small >
435
- < br />
436
- < label style ="display: inline-block "
437
- > < input
438
- type ="radio "
439
- name ="memo-encoding "
440
- value ="hex "
441
- onchange ="document.querySelector('[name=memo]').placeholder = 'ex: 48656c6c6f2c20576f726c6421' "
442
- checked ="checked "
443
- />
444
- hex
445
- </ label >
446
- < label style ="display: inline-block "
447
- > < input
448
- type ="radio "
449
- name ="memo-encoding "
450
- value ="string "
451
- onchange ="document.querySelector('[name=memo]').placeholder = 'ex: Hello, World!' "
452
- />
453
- string (utf-8)
454
- </ label >
455
- < input
456
- type ="text "
457
- name ="memo "
458
- placeholder ="ex: 48656c6c6f2c20576f726c6421 "
459
- />
460
- </ label >
461
- < small
462
- > Share: < a href ="" data-id ="memo-link " target ="_blank "> </ a
463
- > </ small >
464
- < pre > < code data-id ="memo-txid "> < em > output: txid</ em > </ code > </ pre >
465
- < button type ="button " onclick ="App.sendMemo(event) "> Send Memo</ button >
466
-
467
- < hr />
468
- < label
469
- > Address for WIF Export
470
- < small > base58check-encoded pkh</ small >
471
- < input
472
- type ="text "
473
- data-id ="export-address "
474
- placeholder ="ex: ybLxVb3aspSHFgxM1qTyuBSXnjAqLFEG8P "
475
- />
476
- </ label >
477
- < pre > < code data-id ="export-wif "> < em > output: private key as wif</ em > </ code > </ pre >
478
- < button type ="submit " onclick ="App.exportWif(event) ">
479
- Export WIF
480
- </ button >
481
480
</ form >
482
481
</ section >
483
482
< br />
0 commit comments