-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex_older_pw.html
1700 lines (1448 loc) · 81.4 KB
/
index_older_pw.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bitbay Wallet - Decentralized Markets and Smarts Contracts</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="keywords" content="bitbay, wallet, multisig, locktime, market, multisignature, address, browser, javascript, js, broadcast, transaction, verify, decode" />
<meta name="description" content="A Bitbay Wallet written in Javascript. Supports Multisig, Custom Transactions, nLockTime and more!" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy"
content="
default-src *;
style-src * 'self' 'unsafe-inline' 'unsafe-eval';
script-src * 'self' 'unsafe-inline' 'unsafe-eval';">
<!-- ****** faviconit.com favicons ****** -->
<link rel="shortcut icon" href="assets/images/favicon/favicon.ico">
<link rel="icon" sizes="16x16 32x32 64x64" href="assets/images/favicon/favicon.ico">
<link rel="icon" type="image/png" sizes="196x196" href="assets/images/favicon/favicon-192.png">
<link rel="icon" type="image/png" sizes="160x160" href="assets/images/favicon/favicon-160.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/images/favicon/favicon-96.png">
<link rel="icon" type="image/png" sizes="64x64" href="assets/images/favicon/favicon-64.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16.png">
<link rel="apple-touch-icon" href="assets/images/favicon/favicon-57.png">
<link rel="apple-touch-icon" sizes="114x114" href="assets/images/favicon/favicon-114.png">
<link rel="apple-touch-icon" sizes="72x72" href="assets/images/favicon/favicon-72.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/images/favicon/favicon-144.png">
<link rel="apple-touch-icon" sizes="60x60" href="assets/images/favicon/favicon-60.png">
<link rel="apple-touch-icon" sizes="120x120" href="assets/images/favicon/favicon-120.png">
<link rel="apple-touch-icon" sizes="76x76" href="assets/images/favicon/favicon-76.png">
<link rel="apple-touch-icon" sizes="152x152" href="assets/images/favicon/favicon-152.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/favicon-180.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="/assets/images/favicon/favicon-114.png">
<meta name="msapplication-config" content="/assets/images/favicon/browserconfig.xml">
<!-- ****** faviconit.com favicons ****** -->
<link rel="stylesheet" href="assets/css/themes/Cerulean/bootstrap.min.css" media="screen" id="bootstrap-css">
<link rel="stylesheet" href="assets/css/bootstrap-datetimepicker.min.css">
<link rel="stylesheet" href="assets/css/pnotify.custom.min.css" media="all" >
<link rel="stylesheet" href="assets/css/style.css?v=1.13" media="screen">
<script type="text/javascript" src="assets/js/errors.js"></script>
<!--
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
-->
<script type="text/javascript" src="js/jquery-1.12.4.min.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/transition.js"></script>
<script type="text/javascript" src="js/collapse.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/bootstrap-datetimepicker.min.js"></script>
<script type="text/javascript" src="js/crypto-min.js"></script>
<script type="text/javascript" src="js/crypto-sha256.js"></script>
<script type="text/javascript" src="js/crypto-sha256-hmac.js"></script>
<script type="text/javascript" src="js/sha512.js"></script>
<script type="text/javascript" src="js/ripemd160.js"></script>
<script type="text/javascript" src="js/aes.js"></script>
<script type="text/javascript" src="js/qrcode.js"></script>
<script type="text/javascript" src="js/qcode-decoder.min.js"></script>
<script type="text/javascript" src="js/jsbn.js"></script>
<script type="text/javascript" src="js/ellipticcurve.js"></script>
<script type="text/javascript" src="https://wallet.bitbay.market/servers.js?v=1.12"></script>
<script type="text/javascript" src="js/coin.js?v=1.12"></script>
<script type="text/javascript" src="js/coinbin_older_pw.js?v=1.12"></script>
<script type="text/javascript" src="assets/js/bootstrap-select.min.js"></script>
<script type="text/javascript" src="assets/js/html5storage/HTML5.sessionStorage.js"></script>
<script type="text/javascript" src="assets/js/custom.js?v=1.12"></script>
<script type="text/javascript" src="assets/js/pnotify.custom.min.js"></script>
</head>
<body class="loggedout">
<div id="wrap">
<!-- Fixed navbar -->
<div id="header" class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<ul class="nav navbar-nav navbar-right newmenu">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<span class="glyphicon glyphicon-menu-hamburger"></span>
</a>
<ul class="dropdown-menu">
<li class="loginhide active"><a href="#wallet" data-toggle="tab">Regular Wallet</a></li>
<li class="loginhide"><a href="#wallet" data-toggle="tab" id="multisigwalletLink">Individual MultiSig Wallet</a></li>
<li class="logouthide">
<a href="#wallet" data-toggle="tab">Wallet
<p class="text-left small walletEmail"></p>
<p class="walletBalance"></p>
</a>
</li>
<li class="divider-text"></li>
<li class="hidden"><a href="#newAddress" data-toggle="tab">New Address</a></li>
<li class="hidden"><a href="#newTimeLocked" data-toggle="tab">Time Locked Address</a></li class="hidden">
<li class="hidden"><a href="#newMultiSig" data-toggle="tab">MultiSig Address</a></li class="hidden">
<li><a href="#verify" data-toggle="tab">Verify</a></li class="hidden">
<li class="hidden"><a href="#newTransaction" data-toggle="tab">Transaction</a></li class="hidden">
<li class="hidden"><a href="#sign" data-toggle="tab">Sign</a></li class="hidden">
<li class="hidden"><a href="#broadcast" data-toggle="tab">Broadcast</a></li class="hidden">
<li class="divider-text logouthide"></li>
<li>
<a id="walletLogout" href="#" class="logouthide" role="button" data-destroy="true">Logout</a>
</li>
</ul>
</li>
</ul>
<a href="/" class="navbar-brand" id="homeBtn2">
<img class="large logouthide" src="assets/images/logo-dark.svg">
<img class="small logouthide" src="assets/images/logo-dark-small.svg">
<img class="loginhide" height="52" src="assets/images/logo.svg"/>
</a>
<div class="row accountSessionLogout hide top-status">
<a href="#wallet">
<p class="text-left small walletEmail"></p>
</a>
<a id="walletLogout" href="javascript:;" class="color-link" role="button" data-destroy="true">Logout</a>
<a href="#" class="walletBalance"></a>
</div>
</div>
</div>
</div>
<div id="content" class="container">
<noscript class="alert alert-danger center-block"><span class="glyphicon glyphicon-exclamation-sign"></span> This page uses javascript, please enable it to continue!</noscript>
<div class="tab-content">
<div class="tab-pane tab-content active" id="wallet">
<div class="row">
<div class="col-md-12">
<!-- <h2>Bitbay offline Wallet <small> browser based offline wallet</small></h2> !-->
<!-- User Wallet Login Form !-->
<div class="row">
<div id="openLogin" class="col-xs-12">
<form name="form-signin" id="form-signin" class="form-signin" role="form" action="javascript:;" autocomplete="off">
<fieldset>
<div class="form-wallettype">
<a id="regularwallet" class="active" href="#">Regular</a>
<a id="multisigwallet" href="#">Multi-sig</a>
</div>
<div class="form-group form-openWalletType">
Wallet type:
<select class="form-control" id="openWalletType" >
<option value="regular" selected="selected">Regular</option>
<option value="multisig">Multisig 2-of-2</option>
</select>
</div>
<div class="form-group form-email">
<input id="openEmail" type="email" class="form-control confirm-email" placeholder="Email Address" required autofocus>
</div>
<div class="form-group form-email-confirm">
<input id="openEmail-confirm" type="email" class="form-control confirm-input" placeholder="Email Address Confirm" confirm="#openEmail">
</div>
<div class="form-group input-group form-password">
<input id="openPass" type="password" class="form-control" placeholder="Password" required >
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div class="form-group input-group form-password-confirm">
<input id="openPass-confirm" type="password" class="form-control confirm-input" placeholder="Password Confirm" confirm="#openPass">
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div class="form-group input-group form-password2 hidden">
<input id="openPass2" type="password" class="form-control" placeholder="Password2" >
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div class="form-group input-group form-password2-confirm hidden">
<input id="openPass2-confirm" type="password" class="form-control confirm-input" placeholder="Password2 Confirm" confirm="#openPass2">
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div class="form-group">
<div id="openLoginStatus" class="alert alert-danger hidden"></div>
</div>
<div class="form-group form-confirm-pass">
<input id="confirmPass" type="checkbox" checked>
<label for="confirmPass">Display email and password confirmation fields (recommended)</label>
</div>
<div class="form-group form-accept">
<p class="underterms">No email/password is stored on our server. If you forget your email or password it CANNOT be recovered! You can print/backup your wallet after you login.</p>
<input id="acceptTerms" type="checkbox">
<label for="acceptTerms">I have read the
<a href="#disclaimer" role="button" class="btn-flat" data-toggle="modal">disclaimer</a>
and have stored my login information
</label>
</div>
<div class="form-group">
<span class="button-checkbox">
<input id="remember" type="checkbox"><label for="remember">Stay Logged in (until browser tab closes)</label>
<button type="button" class="btn-flat hidden" data-color="info">Remember Me</button>
<select class="form-control hide" id="rememberMe">
<option value="false" selected="selected">No</option>
<option value="true">Yes</option>
</select>
</span>
</div>
<div class="form-group form-submit">
<input id="openBtn" type="submit" class="btn-flatbay btn-flatbay-inactive" value="Load/Create Wallet">
</div>
<div id="errormessages"></div>
</fieldset>
</form>
</div>
</div>
<!-- Modal HTML -->
<div id="disclaimer" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header danger-area">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h2><span class="glyphicon glyphicon-warning-sign"></span> Warning - Disclaimer</h2>
</div>
<div class="modal-body">
<div class="form-group form-notice">
<h3>Understand the Risks in Using the BitBay Web Wallet</h3>
<p>
Cryptocurrencies provide people with the power to control and own their money. Cryptocurrency wallets are not a bank. Moving away from the use of the typical banking system requires new responsibilities upon cryptocurrency users. We highly recommend using the Markets wallet vs this web wallet for the sake of added security. This BitBay web wallet is a free, open-source, client-side interface. It allows you to transact and store BitBay without the need to run a full BitBay node. The web wallet has 2 formats to access it, either through a stand alone offline wallet or through a legitimate website host for the sake of hosting multisignature services. <strong>What makes it so secure</strong> is that <strong>legitimate website hosts</strong> do not in any way store any private data on their server for accessing the wallet - the wallet is completely independent of the website. This wallet grants the ability for websites to provide simplified payment services without any security risk on their part for hosting it. In other words, if the website is ever hacked, your wallet will still be safe! However, <strong>what makes it insecure</strong> is when entering your login credentials on a fraudulent website it will result in you losing your coins. Scammers tend to use fear tactics to startle your common sense. Any emails received pertaining to the security of your web wallet will <strong>ALWAYS be malicious in nature</strong> and responding to these emails could lead to the <strong>LOSS OF YOUR COINS!</strong>
</p>
<h3>Notice of your Private Login Key</h3>
<p>
When creating new accounts, emails are requested because they provide a failsafe against duplicating passwords, since no two email addresses are the same. However, understand that IN NO WAY DOES THIS PROVIDE YOU WITH A FAILSAFE FOR PASSWORD RECOVERY. We highly recommend creating a new email account just for the sake of creating your web wallet - and do not use the account for sending and receiving emails. Different email password combinations are what create distinctive individual wallets. Be careful when entering your details as LOST LOGIN CREDENTIALS CAN NOT BE RECOVERED! We do not store any data about our users, not even email addresses. We do not confirm if an email is valid. It is only used to create your private key.
</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn-flatbay" data-dismiss="modal">I understand the risks</button>
</div>
</div>
</div>
</div>
<!-- User Wallet !-->
<div id="openWallet" class="hidden">
<div class="row">
<!-- Wallet Panel -->
<div class="row">
<div id="warning" class="col-md-12">
<div class="col-md-12">
<strong>IMPORTANT NOTICE: </strong> The BitBay Web Wallet is currently in development mode while we update it to work with the Dynamic Peg protocol. Your funds are safe, but we advise you to use the software to participate in the network. If you want to access funds in the Web wallet please read the <strong><a href="https://bitbay.market/forum-archive/t/how-to-import-your-bitbay-web-wallet-private-key-into-the-bitbay-qt-wallet/2227.html">support article</a></strong>
</div>
</div>
<div class="col-md-12">
<!-- Wallet User Panel -->
<div class="col-md-8">
<div class="bs-component">
<ul class="nav nav-tabs">
<li class="hidden">
<a data-toggle="tab" href="#walletInfo">Wallet Info</a>
</li>
<li class="active">
<a data-toggle="tab" href="#walletSpendTab">Send</a>
</li>
<li>
<a data-toggle="tab" href="#walletKeysTab">Receive</a>
</li>
<li class="">
<a data-toggle="tab" href="#walletBackup">Wallet Backup</a>
</li>
<li class="dropdown hidden">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Bitbay <span class="caret"></span></a>
<ul class="dropdown-menu">
<li>
<a href="http://bitbay.market" target="_blank">Bitbay Website</a>
</li>
<li class="divider"></li>
<li>
<a href="http://explorer.bitbay.market" target="_blank">Bitbay Blockexplorer</a>
</li>
<li class="divider"></li>
<li>
<a href="https://bitcointalk.org/index.php?topic=890531.0" target="_blank">Bitbay - Bitcointalk</a>
</li>
<li class="divider"></li>
<li>
<a href="https://twitter.com/bitbayofficial" target="_blank">Bitbay - Twitter</a>
</li>
</ul>
</li>
</ul>
<div class="tab-content" id="WalletTabContent">
<div class="tab-pane fade" id="walletBackup">
<div class="backuptext">
The following information can be used to recover your account and funds. You can manually copy them or print them and store them in a safe place.
<span class="warning">Do not share them with anyone as it provides access to your wallet and therefore your funds.</span>
</div>
<div class="backupfunctions">
<a href="#print" id="print" class="ul">Print Wallet Information <span class="glyphicon glyphicon-print"></span></a><br>
</div>
<div id="printArea" class="hidden">
in here will populate with wallet info
</div>
<div id="walletKeys">
<div class="share-yes">
<label>Address (Share)</label>
<input class="form-control address can-copy" type="text" readonly>
<label class="wallet_multisig_keys">RedeemScript (Share)</label>
<input class="form-control can-copy redeemScript_wallet wallet_multisig_keys" type="text" readonly>
<label class="wallet_maybe_multisig_keys">Public key (Share)</label>
<input class="form-control pubkey wallet_maybe_multisig_keys can-copy" type="text" readonly>
<input class="form-control pubkey2 wallet_multisig_keys wallet_maybe_multisig_keys can-copy" type="text" readonly>
</div>
<div class="share-no">
<label>Private key - WIF key (Private - Don't share)</label>
<div class="input-group ">
<input class="form-control privkey" type="password" readonly>
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div class="input-group wallet_multisig_keys">
<input class="form-control privkey2" type="password" readonly>
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<label class="wallet_maybe_multisig_keys hide">AES-256 Encrypted WIF key (Private - Don't share)</label>
<div class="input-group wallet_maybe_multisig_keys hide">
<input class="form-control privkeyaes" type="password" readonly>
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div class="input-group wallet_multisig_keys wallet_maybe_multisig_keys hide">
<input class="form-control privkeyaes2" type="password" readonly>
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
</div>
</div>
<div class="walletnotice">
<p class="text-muted">This page uses javascript to generate your addresses and sign your transactions within your browser, this means we <i>never</i> receive your private keys, this can be independently verified by reviewing the source code on <a href="https://github.com/bitbaymarket/web-wallet" target="_blank">github</a>.</p>
</div>
</div>
<div class="tab-pane fade" id="walletInfo">
- <a class="ul" href="https://bitcointalk.org/index.php?topic=890531.0" target="_blank">Bitcointalk</a><br>
- <a class="ul" href="https://twitter.com/bitbaytalk" target="_blank">Twitter</a><br>
- <a class="ul" href="https://www.facebook.com/bitbaymarket" target="_blank">Facebook</a><br>
- <a class="ul" href="https://plus.google.com/communities/114750118216930193130" target="_blank">Google+</a><br>
- <a class="ul" href="http://bitbay.market/" target="_blank">The new and improved Official Site!</a><br>
- <a class="ul" href="http://bitbaymarket.net/" target="_blank">The original Mirror Site linking directly to Halo ftp</a><br>
<br>
Telegram: <a href="https://t.me/bitbayofficial" target="_blank">@bitbayofficial</a><br>
Slack: <a href="http://bitbay.slack.com/" target="_blank">http://bitbay.slack.com/</a><br>
<br>
Want to see where all the action is?<br>
Most of the fun, testing and core community chat happens on slack! Please join us there by using this link:<br>
<a class="ul" href="http://bitbay.market/wp-login.php?action=slack-invitation" target="_blank">http://bitbay.market/wp-login.php?action=slack-invitation</a>
</div>
<div class="tab-pane fade active in" id="walletSpendTab">
<div id="walletSpend">
<div class="row" id="walletSpendTo">
<div class="form-horizontal output">
<div class="col-sm-7">
<label>Address</label>
<input class="form-control addressTo" data-original-title="" title="Address to send to" type="text">
</div>
<div class="col-sm-4">
<label>Amount</label>
<div class="input-group">
<input class="form-control form-control-div amount" data-original-title="" placeholder="0.00000000" title="Amount to send" type="text"><span class="input-group-addon amountCoinSymbol">Coin</span>
</div>
</div><a class="addressAdd" href="javascript:;" title="add/remove address to send to"><span class="glyphicon glyphicon-plus"></span></a><br>
<br>
</div>
</div>
<div class="row">
<div class="col-sm-7">
<label>Transaction Fee</label>
<div class="input-group">
<input class="form-control form-control-div" id="txFee" placeholder="0.00000000" type="text" value="0.002" title="The amount to pay in network miner fees - 0.002 or more recommended">
<span class="input-group-addon amountCoinSymbol">Coin</span>
</div>
</div>
<div class="col-sm-4">
<label>BitBay Development Fund</label>
<div class="input-group">
<input class="form-control form-control-div" id="developerDonation" placeholder="0.00000000" type="text" value="0" title="The amount to donate to the BitBay Development Fund">
<span class="input-group-addon amountCoinSymbol">Coin</span>
</div>
</div>
</div><br>
<div class="alert alert-danger hidden" id="walletSendStatus"></div>
<div class="form-send-buttons">
<button class="btn-flatbay btn-flatbay-inactive" id="walletSendBtn" type="button" disabled>Send</button>
<button class="btn-flat-purple" id="walletSendReset" type="button">Reset</button>
</div>
</div>
</div>
<div class="tab-pane fade" id="walletKeysTab">
<div id="walletKeysCopy">
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="bs-component panel-right">
<div class="panel panel-default panel-balance">
<div class="panel-body">
<label>Your Balance:</label>
<div>
<a href="javascript:;" id="walletBalance" class="walletBalance fade in">0.00</a>
<span class="hidden" id="walletLoader"><span class="glyphicon glyphicon-repeat glyphicon-spin"></span></span>
</div>
<a href="javascript:;" id="walletHistory" target="_blank">History</a>
</div>
</div>
<!-- QR Code -->
<div class="panel panel-default panel-qrcode">
<div class="panel-heading">
<label>Your Address:</label>
<span class="hide" id="walletAddress"></span> <a href="#" id="walletAddressExplorer" target="_blank"></a>
</div>
<div class="panel-body text-center">
<div id="walletQrCode"></div>
</div>
</div>
</div>
</div><!-- Wallet Unspend UTXO Wallet-->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane tab-content" id="newAddress">
<h2>New Address <small>create a new address</small></h2>
<p>Any keys used you will need to manually store safely as they will be needed later to redeem the $BAY.</p>
<label>Address (Share)</label>
<div class="input-group">
<input id="newBitcoinAddress" type="text" class="form-control address" value="" readonly>
<span class="input-group-btn">
<button class="qrcodeBtn btn btn-default" type="button" data-toggle="modal" data-target="#modalQrcode"><span class="glyphicon glyphicon-qrcode"></span></button>
</span>
</div>
<label>Public key (Share)</label>
<input id="newPubKey" type="text" class="form-control" readonly>
<label>Private key (WIF key)</label>
<div class="input-group">
<input id="newPrivKey" type="password" class="form-control" value="" readonly>
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<div id="aes256wifkey" class="hidden">
<label>AES-256 Encrypted WIF key</label>
<input id="newPrivKeyEnc" type="text" class="form-control" value="" readonly>
</div>
<h3>Address Options</h3>
<p>You can use the advanced options below to generate different kind of keys and addresses.</p>
<div class="checkbox">
<label><input type="checkbox" id="newCompressed" class="checkbox-inline" checked> Compress <span class="text-muted">(recommended)</span></label>
</div>
<div class="checkbox">
<label><input type="checkbox" id="newBrainwallet" class="checkbox-inline"> Custom Seed or Brain Wallet</label>
<input type="text" class="form-control hidden" id="brainwallet">
</div>
<div class="checkbox">
<label><input type="checkbox" id="encryptKey" class="checkbox-inline"> Encrypt Private Key with AES-256 Password</label>
<div id="aes256passform" class="row hidden">
<div class="col-md-6">
<input type="password" class="form-control" id="aes256pass" placeholder="Password">
</div>
<div class="col-md-6">
<input type="password" class="form-control" id="aes256pass_confirm" placeholder="Confirm Password">
</div>
</div>
<div id="aes256passStatus" class="row hidden">
<div class="col-md-12">
<br>
<div class="alert alert-danger"> <span class="glyphicon glyphicon-exclamation-sign"></span> Your passwords do not match, please try again!</div>
</div>
</div>
</div>
<input type="button" class="btn-flatbay" value="Generate" id="newKeysBtn">
<br>
</div>
<div class="tab-pane tab-content" id="newSegWit">
<h2>New SegWit Address <small> Smaller & Faster Transactions</small></h2>
<p>Any keys used you will need to manually store safely as they will be needed later to redeem the $BAY.</p>
<label>SegWit Address (Share)</label>
<div class="input-group">
<input id="newSegWitAddress" type="text" class="form-control address" value="" readonly>
<span class="input-group-btn">
<button class="qrcodeBtn btn btn-default" type="button" data-toggle="modal" data-target="#modalQrcode"><span class="glyphicon glyphicon-qrcode"></span></button>
</span>
</div>
<label>RedeemScript</label>
<input id="newSegWitRedeemScript" type="text" class="form-control" readonly>
<label>Public key</label>
<input id="newSegWitPubKey" type="text" class="form-control" readonly>
<label>Private key (WIF key)</label>
<div class="input-group">
<input id="newSegWitPrivKey" type="password" class="form-control" value="" readonly>
<span class="input-group-btn">
<button class="showKey btn btn-default" type="button">Show</button>
</span>
</div>
<h3>Address Options</h3>
<p>You can use the advanced options below to generate different kind of keys and addresses.</p>
<div class="checkbox">
<label><input type="checkbox" id="newSegWitBrainwallet" class="checkbox-inline"> Custom Seed or Brain Wallet</label>
<input type="text" class="form-control hidden" id="brainwalletSegWit">
</div>
<input type="button" class="btn-flatbay " value="Generate" id="newSegWitKeysBtn">
<br>
</div>
<div class="tab-pane tab-content" id="newMultiSig">
<!-- <h2>New Secure Multisig Address <small>Secure multisig address</small></h2>-->
<h2>New Secure Multisig Address</h2>
<div class="row">
<div class="col-md-8">
<p>Public keys can be <a href="#newAddress">generated in your browser</a> or from your BitBay client.</p>
<p>Enter the public keys of all the participants, to create a <a href="https://en.bitcoin.it/wiki/Address#Multi-signature_addresses" target="_blank">multi signature address</a>. Maximum of 15 allowed. Compressed and uncompressed public keys are accepted.</p>
</div>
<div class="col-md-3">
<p class="alert alert-info">
<span class="glyphicon glyphicon-info-sign"></span>
<a href="https://bitbay.market/forum-archive/t/multisig-wallet-creation-and-redeeming-of-funds-web-wallet-tutorial/1024.html" target="_blank">
<abbr>Tutorial on Multisig Creation and Spending</abbr>
</a>
</p>
<p class="alert alert-info hidden"><span class="glyphicon glyphicon-info-sign"></span> <a href="javascript:;" data-toggle="modal" data-target="#modalMediator"><abbr>Need a Mediator?</abbr></a></p>
</div>
<div class="col-md-1">
</div>
</div>
<div id="multisigPubKeys" class="row">
<div class="form-horizontal">
<div class="col-xs-11">
<input type="text" class="form-control pubkey">
</div>
<a href="javascript:;" class="pubkeyAdd"><span class="glyphicon glyphicon-plus"></span></a>
<br><br>
</div>
</div>
<p>Enter the least amount of signatures required to release the coins</p>
<div class="row">
<div class="col-xs-3">
<select id="releaseCoins" class="form-control">
<option>1</option>
<option selected>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
</select>
</div>
</div>
<br>
<div id="multiSigErrorMsg" class="alert alert-danger" style="display:none;"></div>
<div class="alert alert-success hidden" id="multiSigData">
<label>Address</label>
<p>Payment should be made to this address:</p>
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control address" value="" readonly>
<span class="input-group-btn">
<button class="qrcodeBtn btn btn-default" type="button" data-toggle="modal" data-target="#modalQrcode"><span class="glyphicon glyphicon-qrcode"></span></button>
</span>
</div>
</div>
</div>
<label>Redeem Script</label>
<p>This script should be <i>saved and should be shared with all the participants before a payment is made</i>, so they may validate the authenticity of the address, it will also be used later to release the coins.</p>
<textarea class="form-control script" style="height:160px" readonly></textarea>
<label>Shareable URL</label>
<input type="text" class="scriptUrl form-control" readonly>
</div>
<input type="button" class="btn-flatbay " value="Submit" id="newMultiSigAddress">
<br>
</div>
<div class="tab-pane tab-content" id="newTimeLocked">
<h2>New Time Locked Address <small>Coins can be released only after a certain date</small></h2>
<div class="row">
<div class="col-md-9">
<p>Use <i><a href="https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki" target="_blank">OP_CHECKLOCKTIMEVERIFY</a></i> (OP_HODL) to create a time locked address where the funds are unspendable until a set date and time has passed.</p>
<p>Public keys can be <a href="#newAddress">generated in your browser</a> or from your BitBay client.</p>
<p>Enter the public key that will be able to unlock the funds after a certain date.</p>
</div>
<div class="col-md-3">
<p class="alert alert-info">
<span class="glyphicon glyphicon-info-sign"></span>
<a href="https://bitbay.market/forum-archive/t/time-locked-wallet-creation-and-redeeming-of-funds-web-wallet-tutorial/1008.html" target="_blank">
<abbr>Tutorial on TimeLocked Wallet</abbr>
</a>
</p>
</div>
</div>
<div class="row">
<div class="form-horizontal">
<div class="col-xs-12">
<input id="timeLockedPubKey" type="text" class="form-control pubkey">
</div>
</div>
</div>
<p id="timeLockedRbTypeBox">
Enter the
<input type="radio" id="timeLockedRbTypeDate" name="timeLockedRbType" value="date" checked="checked">
<label for="timeLockedRbTypeDate">date and time</label>
or
<input type="radio" id="timeLockedRbTypeBlockHeight" name="timeLockedRbType" value="blockheight">
<label for="timeLockedRbTypeBlockHeight">blockheight</label>
required to release the coins:
</p>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<div>
<div class="input-group date" id="timeLockedDateTimePicker">
<input type="text" class="form-control" placeholder="MM/DD/YYYY hh:mm" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
<div class="alert alert-danger hidden delete">
This must be a UTC/GMT time - Need help to convert your time to UTC/GMT? <a href="http://time.unitarium.com/utc/" target="_blank">http://time.unitarium.com/utc/</a>
</div>
</div>
<div class="hidden" id="timeLockedBlockHeight">
<input type="text" id="timeLockedBlockHeightVal" class="form-control" placeholder="Blockheight" />
</div>
</div>
</div>
</div>
<br>
<div id="timeLockedErrorMsg" class="alert alert-danger" style="display:none;"></div>
<div class="alert alert-success hidden" id="timeLockedData">
<label>Address</label>
<p>Payment should be made to this address:</p>
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control address" value="" readonly>
<span class="input-group-btn">
<button class="qrcodeBtn btn btn-default" type="button" data-toggle="modal" data-target="#modalQrcode"><span class="glyphicon glyphicon-qrcode"></span></button>
</span>
</div>
</div>
</div>
<label>Redeem Script</label>
<p>This script should be <i>saved and should be shared with all the participants before a payment is made</i>, so they may validate the authenticity of the address, it will also be used later to release the coins.</p>
<textarea class="form-control script" style="height:160px" readonly></textarea>
<label>Shareable URL</label>
<input type="text" class="scriptUrl form-control" readonly>
</div>
<input type="button" class="btn-flatbay" value="Submit" id="newTimeLockedAddress">
<br>
</div>
<div class="tab-pane tab-content" id="newHDaddress">
<h2>New HD Address <small>making bip32 even easier</small></h2>
<p>Use the form below to generate a <i>master</i> hierarchical deterministic address.</p>
<label>xPub Address</label>
<div class="input-group">
<input id="newHDxpub" type="text" class="form-control" value="" readonly>
<span class="input-group-btn">
<button class="deriveHDbtn btn btn-default" type="button"><span title="Derive from key" class="glyphicon glyphicon-chevron-right"></span></button>
</span>
</div>
<label>xPrv Address</label>
<div class="input-group">
<input id="newHDxprv" type="text" class="form-control" value="" readonly>
<span class="input-group-btn">
<button class="deriveHDbtn btn btn-default" type="button"><span title="Derive from key" class="glyphicon glyphicon-chevron-right"></span></button>
</span>
</div>
<h3>Address Options</h3>
<p>You can use the advanced options below to generate different kinds of master addresses.</p>
<div class="checkbox">
<label><input type="checkbox" id="newHDBrainwallet" class="checkbox-inline"> Custom Seed or Brain Wallet</label>
<input type="text" class="form-control hidden" id="HDBrainwallet">
</div>
<input type="button" class="btn-flatbay " value="Generate" id="newHDKeysBtn">
</div>
<div class="tab-pane tab-content" id="newTransaction">
<h2>Transaction <small>Create a new transaction</small></h2>
<p>Use this page to create a raw transaction</p>
<b>Address, WIF key or Redeem Script</b>:
<div class="input-group">
<span class="input-group-btn">
<button class="btn btn-info2 qrcodeScanner" type="button" data-toggle="modal" data-target="#modalQrcodeScanner" forward-result="#redeemFrom"><span class="glyphicon glyphicon-camera"></span></button>
</span>
<input type="text" id="redeemFrom" class="form-control" value="">
<span class="input-group-btn">
<button id="redeemFromBtn" class="btn btn-info2" type="button">Load</button>
</span>
</div>
<br>
<div class="hidden alert alert-danger" id="redeemFromStatus"></div>
<div class="hidden alert alert-info" id="redeemFromAddress"></div>
<div>
<a href="javascript:;" id="optionsCollapse"><div class="well well-sm"><span class="glyphicon glyphicon-collapse-down" id="glyphcollapse"></span> Advanced Options</div></a>
<div class="hidden" id="optionsAdvanced">
<label>Clear Inputs</label>
<p class="checkbox">
<label><input type="checkbox" id="clearInputsOnLoad" class="checkbox-inline" checked> Clear existing inputs when new inputs are loaded.</label>
</p>
<hr>
<label>Null Data</label> <span class="text-muted text-normal">(80 byte limit, <i>40 bytes recommended</i>)</span>
<p class="checkbox">
<label><input type="checkbox" id="opReturn" class="checkbox-inline"> Allow data to be sent within the transaction and stored in the blockchain by using <a href="https://bitcoin.org/en/developer-guide#null-data" target="_blank">OP_RETURN</a>.
</label>
<div class="text-muted">When using this option you may enter a hex string or address into the address field on the output tab.</div>
</p>
<hr>
<label>Lock Time</label>
<p>The <a href="https://bitcoin.org/en/developer-guide#locktime-and-sequence-number">locktime</a> indicates the earliest time a transaction can be added to the block chain.</p>
<input type="text" class="form-control" value="0" id="nLockTime">
<hr>
<div id="txTimeOptional">
<label>Extra time field</label>
<p>Indicates the timestamp of a transaction.</p>
<input type="text" class="form-control" value="0" id="nTime">
<hr>
</div>
<label>Replace By Fee (RBF)</label>
<p class="checkbox">
<label><input type="checkbox" id="txRBF" class="checkbox-inline"> Make this a <a href="https://en.bitcoin.it/wiki/Transaction_replacement" target="_blank">RBF transaction</a>.</label>
</p>
<hr>
<label>Network</label>
<p>The <a href="#settings">settings</a> page can be used to select alternative networks of which you can retrieve your unspent outputs and broadcast a signed transaction into.</p>
<hr>
</div>
</div>
<ul class="nav nav-tabs" id="putTabs">
<li class="active"><a href="#txoutputs" data-toggle="tab">Outputs <small>(<span id="totalOutput">0.00000000</span>)</small></a></li>
<li><a href="#txinputs" data-toggle="tab">Inputs <small>(<span id="totalInput">0.00000000</span>)</small></a></li>
</ul>
<br>
<div class="tab-content">
<div class="tab-pane fade in active" id="txoutputs">
<span class="pull-right"><a href="javascript:;" id="donateTxBtn" class="btn btn-link"><span class="glyphicon glyphicon-heart"></span> Donate!</a></span>
<p>Enter the address and amount you wish to make a payment to.</p>
<div class="row">
<div class="col-xs-8">
<label><abbr title="Address to send to">Address</abbr></label>
</div>
<div class="col-xs-3">
<label><abbr title="Amount to send">Amount</abbr></label>
</div>
<div class="col-xs-1">
</div>
</div>
<div id="recipients">
<div class="row recipient">
<div class="col-xs-8">
<input type="text" class="form-control address" placeholder="1">
</div>
<div class="col-xs-3">
<div class="input-group">
<input type="text" class="form-control form-control-div amount" placeholder="0.00000000"> <span class="input-group-addon amountCoinSymbol">Coin</span>
</div>
</div>
<div class="col-xs-1">
<a href="javascript:;" class="addressAddTo"><span class="glyphicon glyphicon-plus"></span></a>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="txinputs">
<p>Enter the details of inputs you wish to spend.</p>
<div class="row">
<div class="col-xs-5">
<label><abbr title="Transaction ID">Transaction ID:</abbr></label>
</div>
<div class="col-xs-1">
<label><abbr title="Transaction Input Number">N</abbr></label>
</div>
<div class="col-xs-3">
<label>Script</label>
</div>
<div class="col-xs-2">
<label><abbr title="This field is for accounting purposes only - the entire input will be spent!">Amount</abbr></label>
</div>
<div class="col-xs-1">
</div>
</div>
<div id="inputs">
<div class="row inputs">
<div class="col-xs-5">
<input type="text" class="form-control txId" placeholder="">
</div>
<div class="col-xs-1">
<input type="text" class="form-control txIdN" placeholder="0">
</div>
<div class="col-xs-3">
<input type="text" class="form-control txIdScript">
</div>
<div class="col-xs-2">
<div class="input-group">
<input type="text" class="form-control form-control-div txIdAmount" placeholder="0.00000000"> <span class="input-group-addon amountCoinSymbol">Coin</span>
</div>
</div>
<div class="col-xs-1">
<a href="javascript:;" class="txidAdd"><span class="glyphicon glyphicon-plus"></span></a>
<a href="javascript:;" class="txidClear"><span class="glyphicon glyphicon-minus"></span></a>
</div>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-xs-3">
<label><abbr title="What is not spent will be used as a transaction fee">Transaction Fee</abbr> <a href="#no" target="_blank"><span class="glyphicon glyphicon-question-sign"></span></a></label>
<div class="input-group">
<input id="transactionFee" class="form-control form-control-div amount" readonly placeholder="0.00000000" type="text"> <span class="input-group-addon amountCoinSymbol">Coin</span>
</div>
</div>
</div>
<br>
<div id="transactionCreateStatus" class="alert alert-danger hidden"></div>
<div id="transactionCreate" class="alert alert-success hidden">
<label>Transaction</label>
<button class="qrcodeBtn btn btn-default" type="button" data-toggle="modal" data-target="#modalQrcode" style="float:right;"><span class="glyphicon glyphicon-qrcode"></span></button>
<p>The transaction below has been generated and encoded. It can be broadcasted once it has been signed.</p>
<br>
<textarea class="form-control" style="height:150px" readonly></textarea>
<p class="text-muted">Size: <span class="txSize">0</span> <i>bytes</i></p>
</div>
<input type="button" value="Submit" class="btn-flatbay " id="transactionBtn">
<br>
</div>
<div class="tab-pane tab-content" id="verify">
<h2>Verify <small>transactions and other scripts</small></h2>
<div class="row">
<div class="col-md-12">
<p>Enter the raw transaction, redeem script, pubkey, hd address or wif key to convert it into a readable format that can be verified manually.</p>
<textarea type="text" id="verifyScript" class="form-control" style="height:125px"></textarea>
</div>
</div>
<br>
<div class="hidden verifyData" id="verifyRsData">
<h4>Redeem Script</h4>
<p><span style="float:right"><a href="javascript:;" target="_blank" class="verifyLink" title="Link to this page"><span class="glyphicon glyphicon-link"></span></a></span>The above redeem script has been decoded</p>
<div class="hidden" id="verifyRsDataMultisig">
<label>Multi Signature Address</label>
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control address multisigAddress" value="" readonly>
<span class="input-group-btn">
<button class="qrcodeBtn btn btn-default" type="button" data-toggle="modal" data-target="#modalQrcode"><span class="glyphicon glyphicon-qrcode"></span></button>
</span>
</div>
</div>
</div>
<label>Required Signatures</label>
<p class="signaturesRequired">?</p>
<label>Signatures Required from</label>
<table class="table table-striped table-hover">
<tbody>
</tbody>
</table>
<br>
</div>
<div class="hidden verifyData" id="verifyRsDataSegWit">
<label>Segwit Address</label>
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control address segWitAddress" value="" readonly>