-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
3361 lines (3038 loc) · 207 KB
/
index.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
<html lang="en">
<head>
<title>Dogecoin multisig online wallet</title>
<meta http-equiv="Content-Security-Policy"
content="default-src 'none'; font-src 'self'; media-src 'self'; frame-src https://www.youtube.com; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self' https://api.blockcypher.com; img-src 'self' data:; style-src 'self' 'unsafe-inline' 'unsafe-eval'">
<meta http-equiv="Access-Control-Allow-Origin" content="*" />
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta name="keywords" content="dogecoin, online wallet, multisig, dogecoin value" />
<meta name="description" content="A Dogecoin multisig wallet written in Javascript, for shibes to use to collaborate using multisignature technology to bring more value to dogecoin. To The Moon!" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css" media="screen">
<link rel="stylesheet" href="css/bootstrap-datetimepicker.min.css">
<link rel="stylesheet" href="css/style.css" media="screen">
<script type="text/javascript" src="js/jquery-1.9.1.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="js/coin.js"></script>
<script type="text/javascript" src="js/coinbin.js"></script>
<script type="text/javascript" src="js/language_pack.js"></script>
<script type="text/javascript" src="js/moist.js"></script>
<script type="text/javascript" src="js/banksuite.js"></script>
<script type="text/javascript" src="js/ramin.js"></script>
<script type="text/javascript" src="js/tripleshibe.js"></script>
<script type="text/javascript" src="js/quatroshibe.js"></script>
<script type="text/javascript" src="js/payspot.js"></script>
<script type="text/javascript" src="js/microinvoice.js"></script>
<script type="text/javascript" src="js/anbot.js"></script>
<script type="text/javascript" src="js/anbotR.js"></script>
<script type="text/javascript" src="js/newPaySpot.js"></script>
<script type="text/javascript" src="js/blockcypher.js"></script>
<script type="text/javascript" src="js/blockcypher_update.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
</head>
<body>
<!--a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo.gif" style="height:180px" ></a-->
<!--div id="wrap"-->
<!-- Fixed navbar -->
<div id="header" class="navbar navbar-default " role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--a href="http://dogecoinmultisig.org" class="navbar-brand" id="homeBtn"><img src="images/coinbin.gif" style="height:55px;margin-top:-5px"></a-->
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#bankSuite" data-toggle="tab"> Dogecoin Bankings Suite</a></li>
<!--li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> New<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#newAddress" data-toggle="tab">New Dogecoin Address</a></li>
<li class="divider"></li>
<li><a href="#newMultiSig" data-toggle="tab">Dogecoin MultiSig Address</a></li>
</ul>
</li-->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> Tools <b class="caret"></b></a>
<ul class="dropdown-menu">
<!--li><a href="#addressbookbot" data-toggle="tab">no-name dogecoin tipbot</a></li-->
<li><a href="#redeemMultiSig" data-toggle="tab">Withdraw</a></li>
<li><a href="#verify" data-toggle="tab">Verify</a></li>
<li><a href="#sign" data-toggle="tab">Sign</a></li>
<li><a href="#broadcast" data-toggle="tab"> Broadcast</a></li>
<li class="divider"></li>
<li><a href="#tripleshibe" data-toggle="tab">TripleShibe (x/3)</a></li>
<li><a href="#quatroshibe" data-toggle="tab">QuatroShibe (x/4)</a></li>
<li><a href="#newAddress" data-toggle="tab">New Dogecoin Address</a></li>
<li><a href="#newMultiSig" data-toggle="tab">New MultiSig Address</a></li>
<li class="divider"></li>
<li><a href="#newPaySpot" data-toggle="tab">Make a Payspot (v1.0)</a></li>
<li class="divider"></li>
<li><a href="#cpToolbox" data-toggle="tab">More Tools</a></li>
</ul>
</li>
<!--li><a href="#redeemMultiSig" data-toggle="tab"><span class="glyphicon glyphicon-ok"></span> Withdraw</a></li>
<li><a href="#verify" data-toggle="tab"><span class="glyphicon glyphicon-ok"></span> Verify</a></li>
<li><a href="#sign" data-toggle="tab"><span class="glyphicon glyphicon-pencil"></span> Sign</a></li>
<li><a href="#broadcast" data-toggle="tab"><span class="glyphicon glyphicon-globe"></span> Broadcast</a></li>
<li><a href="#cpToolbox" data-toggle="tab"><span class="glyphicon glyphicon-globe"></span> Tools</a></li-->
<!--li><a href="#bankSuite" data-toggle="tab"> Dogecoin Bankings Suite</a></li-->
<!--li><a href="#tripleshibe" data-toggle="tab"><span class="glyphicon glyphicon-globe"></span> TripleShibe</a></li>
<li><a href="#quatroshibe" data-toggle="tab"><span class="glyphicon glyphicon-globe"></span> QuatroShibe</a></li-->
<!--li><a href="#ramin" data-toggle="tab"><span class="glyphicon glyphicon-globe"></span>ramin</a></li-->
<!--li><a href="#wallet" data-toggle="tab"><span class="glyphicon glyphicon-briefcase"></span> Wallet</a></li-->
<!--li><a href="#about" data-toggle="tab"><span class="glyphicon glyphicon-info-sign"></span> About</a></li-->
<li class="hidden"><a href="#settings" data-toggle="tab"><span class="glyphicon glyphicon-cog"></span> Settings</a></li>
</ul>
</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" id="home">
<div class="row">
<div class="col-md-12">
<h2>Pineapple. <small>Welcome to the Dogecoin Blockchain</small></h2>
</div>
</div>
<div class="jumbotron">
<h1>DOGECOIN IS WOW</h1>
<p>start using Dogecoin. </p>
<p><a class="btn btn-primary btn-lg" href="#about" role="button">Learn more »</a></p>
</div>
<hr size="5">
<!--div class="row">
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-ok"></span> Open Source</h3>
<p>dogecoinmultisig.org/Coinbin is an open source web based wallet written in javascript and released under the <a href="LICENSE">MIT license</a> which means it's free to use and edit.</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-fullscreen"></span> MultiSig</h3>
<p>Hello Shibes. <a href="#newMultiSig">zee Dogecoin multisig!</a> Here's a solution which works seamlessly offline and with other dogecoin clients.</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-bitcoin"></span> Raw Transactions</h3>
<p><a href="#newTransaction">Create</a>, <a href="#verify">verify</a>, <a href="#sign">sign</a> and <a href="#broadcast">broadcast</a> custom raw transactions online with advanced features and minimal effort!</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-piggy-bank"></span> Wallet</h3>
<p>Quick access to an <a href="#wallet">online wallet</a> where only you have access to your own private keys!</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-globe"></span> Addresses</h3>
<p>We support <a href="#newAddress">regular addresses</a> but also <a href="#newMultiSig">multisig</a> and stealth, and access to your own private keys!</p>
</div>
<div class="col-md-4">
<h3><span class="glyphicon glyphicon-wrench"></span> Development</h3>
<p>Use what we've built to write your own projects! See our documention (coming soon), or contribute at <a href="https://github.com/OutCast3k/coinbin/">github</a>.</p>
</div>
</div-->
</div>
<div class="tab-pane tab-content" id="wallet">
<div class="row">
<div class="col-md-12">
<h2>Open Wallet <small> browser based Ðogecoin wow</small></h2>
<div id="openLogin">
<form class="form-signin" role="form" action="javascript:;">
<p>Use the form below to open a wallet and begin using this service.</p>
<div class="alert alert-warning">
<b>Notice</b>: Different email address and password combination will open different wallets, be careful when entering your details as lost accounts can not be recovered!
</div>
<input id="openEmail" type="email" class="form-control" placeholder="Email address" required autofocus>
<input id="openPass" type="password" class="form-control" placeholder="Password" required>
<input id="openPassConfirm" type="password" class="form-control" placeholder="Password confirm" required>
<br>
<div id="openLoginStatus" class="alert alert-danger hidden"></div>
<button id="openBtn" class="btn btn-primary" type="submit">Submit</button>
</form>
</div>
<div id="openWallet" class="hidden">
<div class="row">
<div class="col-md-12">
<p><span style="float:right;"><a href="javascript:;" id="walletLogout"><span class="glyphicon glyphicon-log-out"></span> Logout</a></span>Welcome to your wallet, enjoy your stay!</p>
</div>
<div class="col-md-12" align="center">
<div id="walletQrCode"></div> <br>
<div>
<span id="walletLoader" class="hidden"><img src="images/loader.gif"></span>
<span id="walletAddress"></span>
</div>
<br>
<div style="text-align:center; width:350px;">
<ul class="nav nav-pills" role="tablist">
<li role="presentation" class="active"><a href="javascript:;" id="walletBalance">0.00 BTC</a></li>
<li role="presentation"><a href="javascript:;" id="walletShowSpend">Spend</a></li>
<li role="presentation"><a id="walletHistory" href="javascript:;" target="_blank">History</a></li>
<li role="presentation"><a href="https://localbitcoins.com/?ch=173j" target="_blank">Buy</a></li>
<li role="presentation"><a href="javascript:;" id="walletShowKeys">Keys</a></li>
</ul>
<br>
<div id="walletKeys" class="hidden">
<label>Public Key</label>
<input class="form-control pubkey" type="text" readonly>
<label>Private key</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>
<label>Private Key (AES256 encrypted key)</label>
<input class="form-control privkeyaes" type="text" readonly>
</div>
<div id="walletSpend" class="hidden">
<div class="row">
<div class="form-inline output">
<div class="col-xs-8">
<label>Address</label>
</div>
<div class="col-xs-3">
<label>Amount</label>
</div>
</div>
</div>
<div class="row" id="walletSpendTo">
<div class="form-horizontal output">
<div class="col-xs-8">
<input type="text" class="form-control addressTo" data-original-title="" title="">
</div>
<div class="col-xs-3">
<input type="text" class="form-control amount" data-original-title="" title="" placeholder="0.00">
</div>
<a href="javascript:;" class="addressAdd"><span class="glyphicon glyphicon-plus"></span></a>
<br><br>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<label><abbr title="the amount to pay in network miner fees - 0.0001 or more recommended">Transaction Fee</abbr></label>
<input type="text" class="form-control" value="0.0001" id="txFee">
</div>
<div class="col-xs-5">
<label><abbr title="the amount to donate to coinb.in">Donation</abbr></label>
<input type="text" class="form-control" value="0.001" id="developerDonation">
</div>
</div>
<br>
<div id="walletSendStatus" class="alert alert-danger hidden"></div>
<button class="btn btn-primary" type="button" id="walletSendBtn">Send</button>
<button class="btn btn-default" type="button">Reset</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane tab-content" id="cpToolbox">
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo1.jpg" style="height:180px" ></a>
<h2>WELCOME to 'CP' ToolBox!.</h2>
<div class="alert-danger">
<h3><b>Such a very place.</b></h3>
</div>
<hr>
<div class="alert-success">
<p><b>Here you'll find several low level functions, if you need or want them!</b></p>
<p> (use the F12 Console for this)</p>
<p></p>
<p>Codes:</p>
<!--p>99 get doge network info.</p-->
<p>100 send Signed Transaction </p>
<p>777 get Balance for Ðogecoin address</p>
<p>778 get Unspent transactions for Ðogecoin address</p>
<p>779 get info about a txid</p>
<p>780 get Spent transactions for Ðogecoin address</p>
<p>1999 get latest dogecoin fees</p>
<!--textarea type="text" id="dogeScript" class="form-control" style="height:125px"></textarea-->
<input type="button" class="btn btn-primary" value="Moon!" id="moist2">
</div>
<hr>
<div class="alert-info">
<p><b>Put any text here, then make a QR code or copy to clipboard:</b></p>
<div class="input-group">
<input id="anynamehere001" type="text" class="js-copytextarea9 form-control address" value="" >
<span class="input-group-btn">
<button class="btn btn-default js-textareacopybtn9" type="button">
<span class="glyphicon glyphicon-copy"></span>
</button>
</span>
<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>
<br>
</div>
</div>
<div class="tab-pane tab-content" id="newPaySpot">
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo3.jpg" style="height:180px" ></a>
<hr size="8">
<h2>Make a PaySpot</h2>
<a href="https://imgur.com/a/FHPFI"><small><small>ELI5 with pictures</small></small></a>
<hr size="8">
<p>Your dogecoin address:</p>
<textarea type="text" id="npsMyAddressR" class="form-control" style="height:30px"></textarea>
<input type="button" class="btn btn-success" value="Next" id="npsBtn05R">
<hr size="8">
</div>
<div class="tab-pane tab-content" id="convertScreen1">
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo3.jpg" style="height:180px" ></a>
<h2>WELCOME to the Conversion to Dogecoin screen!</h2>
<hr>
<div class="alert-info">
<h3><b>Convert Any Currency to XDG here</b><small> (this will take you off this site) </small></h3>
<form method="GET" action="https://coinmill.com/currency" onsubmit="if (this.currencyamount.value==''){alert('Please enter an amount');return false;} return true;">
<table border="0" cellpadding="2" cellspacing="0" summary=""><tr><td>
Amount:</td><td><input type="text" size="8" name="currencyamount">
</td></tr><tr><td>
From:
</td><td>
<select name="currencyfrom">
<option value="USD">United States Dollar (USD)</option>
<option value="AFN">Afghan Afghani (AFN)</option>
<option value="ALL">Albanian Lek (ALL)</option>
<option value="DZD">Algerian Dinar (DZD)</option>
<option value="AOA">Angolan Kwanza (AOA)</option>
<option value="ANC">Anoncoin (ANC)</option>
<option value="APH">Aphroditecoin (APH)</option>
<option value="ARS">Argentine Peso (ARS)</option>
<option value="ARG">Argentum (ARG)</option>
<option value="AMD">Armenian Dram (AMD)</option>
<option value="AWG">Aruban Florin (AWG)</option>
<option value="AUR">Auroracoin (AUR)</option>
<option value="AUD">Australian Dollar (AUD)</option>
<option value="AZN">Azerbaijani Manat (AZN)</option>
<option value="BQC">BBQCoin (BQC)</option>
<option value="BSD">Bahamian Dollar (BSD)</option>
<option value="BHD">Bahraini Dinar (BHD)</option>
<option value="BDT">Bangladeshi Taka (BDT)</option>
<option value="BBD">Barbados Dollar (BBD)</option>
<option value="BYR">Belarusian Ruble (BYR)</option>
<option value="BZD">Belize Dollar (BZD)</option>
<option value="BMD">Bermuda Dollar (BMD)</option>
<option value="BET">BetaCoin (BET)</option>
<option value="BTN">Bhutanese Ngultrum (BTN)</option>
<option value="BIL">Billioncoin (BIL)</option>
<option value="BTB">BitBar (BTB)</option>
<option value="BTC">Bitcoin (BTC)</option>
<option value="BTL">Bitleu (BTL)</option>
<option value="XMR">Bitmonero (XMR)</option>
<option value="BLC">BlackCoin (BLC)</option>
<option value="BOB">Bolivian Boliviano (BOB)</option>
<option value="BAM">Bosnia-Herzegovina Convertible Mark (BAM)</option>
<option value="BWP">Botswana Pula (BWP)</option>
<option value="BRL">Brazilian Real (BRL)</option>
<option value="BND">Brunei Dollar (BND)</option>
<option value="BGN">Bulgarian Lev (BGN)</option>
<option value="BIF">Burundian Franc (BIF)</option>
<option value="BTE">Bytecoin (BTE)</option>
<option value="BCN">Bytecoin (BCN) (BCN)</option>
<option value="KHR">Cambodian Riel (KHR)</option>
<option value="CAD">Canadian Dollar (CAD)</option>
<option value="CVE">Cape Verde Escudo (CVE)</option>
<option value="CSC">CasinoCoin (CSC)</option>
<option value="KYD">Cayman Islands Dollar (KYD)</option>
<option value="XAF">Central African CFA (XAF)</option>
<option value="CLP">Chilean Peso (CLP)</option>
<option value="CLF">Chilean Unidad de Fomento (CLF)</option>
<option value="CNH">Chinese Offshore Yuan (CNH)</option>
<option value="CNY">Chinese Yuan (CNY)</option>
<option value="CIN">Cinni (CIN)</option>
<option value="COP">Colombian Peso (COP)</option>
<option value="KMF">Comorian Franc (KMF)</option>
<option value="CLR">Copperlark (CLR)</option>
<option value="CRC">Costa Rican Colon (CRC)</option>
<option value="ZCP">Counterparty (ZCP)</option>
<option value="XCC">CraftCoin (XCC)</option>
<option value="HRK">Croatian Kuna (HRK)</option>
<option value="CGB">CryptogenicBullion (CGB)</option>
<option value="CUC">Cuban Convertible Peso (CUC)</option>
<option value="CYP">Cypriot Pound (CYP)</option>
<option value="CZK">Czech Koruna (CZK)</option>
<option value="DKK">Danish Krone (DKK)</option>
<option value="DRK">DarkCoin (DRK)</option>
<option value="DTC">Datacoin (DTC)</option>
<option value="DEE">Deutsche eMark (DEE)</option>
<option value="DVC">Devcoin (DVC)</option>
<option value="DMD">DiamondCoins (DMD)</option>
<option value="DGC">Digitalcoin (DGC)</option>
<option value="DJF">Djiboutian Franc (DJF)</option>
<option value="XDG">DogeCoin (XDG)</option>
<option value="DOP">Dominican Peso (DOP)</option>
<option value="EZC">EZCoin (EZC)</option>
<option value="XCD">East Caribbean Dollar (XCD)</option>
<option value="EGP">Egyptian Pound (EGP)</option>
<option value="ELC">Elacoin (ELC)</option>
<option value="EFL">Electronic Gulden (EFL)</option>
<option value="ERN">Eritrean Nakfa (ERN)</option>
<option value="ETB">Ethiopian Birr (ETB)</option>
<option value="EUR">Euro (EUR)</option>
<option value="FAC">Faircoin (FAC)</option>
<option value="FKP">Falkland Islands Pound (FKP)</option>
<option value="FST">Fastcoin (FST)</option>
<option value="FTC">Feathercoin (FTC)</option>
<option value="FJD">Fiji Dollar (FJD)</option>
<option value="FLO">FlorinCoin (FLO)</option>
<option value="FLT">FlutterCoin (FLT)</option>
<option value="CDF">Franc Congolais (CDF)</option>
<option value="FRK">Franko (FRK)</option>
<option value="FRC">Freicoin (FRC)</option>
<option value="XPF">French Pacific Franc (XPF)</option>
<option value="GMD">Gambian Dalasi (GMD)</option>
<option value="GME">GameCoin (GME)</option>
<option value="GEL">Georgian Lari (GEL)</option>
<option value="GHS">Ghanaian Cedi (GHS)</option>
<option value="GIP">Gibraltar Pound (GIP)</option>
<option value="GLC">GlobalCoin (GLC)</option>
<option value="GLD">GoldCoin (GLD)</option>
<option value="GDC">GrandCoin (GDC)</option>
<option value="GTQ">Guatemalan Quetzal (GTQ)</option>
<option value="GNF">Guinean Franc (GNF)</option>
<option value="GYD">Guyanese Dollar (GYD)</option>
<option value="HTG">Haitian Gourde (HTG)</option>
<option value="HBN">HoboNickel (HBN)</option>
<option value="HNL">Honduran Lempira (HNL)</option>
<option value="HKD">Hong Kong Dollar (HKD)</option>
<option value="HUF">Hungarian Forint (HUF)</option>
<option value="XIC">I0Coin (XIC)</option>
<option value="ISK">Icelandic Krona (ISK)</option>
<option value="INR">Indian Rupee (INR)</option>
<option value="IDR">Indonesian Rupiah (IDR)</option>
<option value="IFC">Infinitecoin (IFC)</option>
<option value="IRR">Iranian Rial (IRR)</option>
<option value="IQD">Iraqi Dinar (IQD)</option>
<option value="ISR">Isracoin (ISR)</option>
<option value="ILS">Israeli New Shekel (ILS)</option>
<option value="IXC">Ixcoin (IXC)</option>
<option value="JMD">Jamaican Dollar (JMD)</option>
<option value="JPY">Japanese Yen (JPY)</option>
<option value="JEP">Jersey Pound (JEP)</option>
<option value="JOD">Jordanian Dinar (JOD)</option>
<option value="XJO">Joulecoin (XJO)</option>
<option value="JKC">Junkcoin (JKC)</option>
<option value="KAR">KarpelesCoin (KAR)</option>
<option value="KZT">Kazakhstani Tenge (KZT)</option>
<option value="KES">Kenyan Shilling (KES)</option>
<option value="KRW">Korean Won (KRW)</option>
<option value="KWD">Kuwaiti Dinar (KWD)</option>
<option value="KGS">Kyrgyzstani Som (KGS)</option>
<option value="LAK">Lao Kip (LAK)</option>
<option value="LBP">Lebanese Pound (LBP)</option>
<option value="LSL">Lesotho Loti (LSL)</option>
<option value="LRD">Liberian Dollar (LRD)</option>
<option value="LYD">Libyan Dinar (LYD)</option>
<option value="LTC">Litecoin (LTC)</option>
<option value="LTL">Lithuanian Litas (LTL)</option>
<option value="LKY">Luckycoin (LKY)</option>
<option value="MOP">Macau Pataca (MOP)</option>
<option value="MKD">Macedonia Denar (MKD)</option>
<option value="XMS">MaidSafeCoin (XMS)</option>
<option value="MGA">Malagasy Ariary (MGA)</option>
<option value="MWK">Malawian Kwacha (MWK)</option>
<option value="MYR">Malaysian Ringgit (MYR)</option>
<option value="MVR">Maldives Rufiyaa (MVR)</option>
<option value="MTC">Marinecoin (MTC)</option>
<option value="MSC">Mastercoin (MSC)</option>
<option value="MRO">Mauritania Ouguiya (MRO)</option>
<option value="MUR">Mauritian Rupee (MUR)</option>
<option value="MAX">MaxCoin (MAX)</option>
<option value="MEC">Megacoin (MEC)</option>
<option value="MXN">Mexican Peso (MXN)</option>
<option value="MXV">Mexican Unidad De Inversion (MXV)</option>
<option value="MNC">Mincoin (MNC)</option>
<option value="XMT">Mintcoin (XMT)</option>
<option value="MDL">Moldovan Leu (MDL)</option>
<option value="MNT">Mongolian Tugrik (MNT)</option>
<option value="MAD">Moroccan Dirham (MAD)</option>
<option value="MMK">Myanmar Kyat (MMK)</option>
<option value="NEM">NEMstake (NEM)</option>
<option value="NMC">Namecoin (NMC)</option>
<option value="NAD">Namibian Dollar (NAD)</option>
<option value="NAS">Nas (NAS)</option>
<option value="NPR">Nepalese Rupee (NPR)</option>
<option value="NET">NetCoin (NET)</option>
<option value="ANG">Netherlands Antillean Guilder (ANG)</option>
<option value="NTR">Neutrino (NTR)</option>
<option value="MZN">New Mozambican Metical (MZN)</option>
<option value="TWD">New Taiwan Dollar (TWD)</option>
<option value="NZD">New Zealand Dollar (NZD)</option>
<option value="NIO">Nicaraguan Cordoba Oro (NIO)</option>
<option value="NGN">Nigerian Naira (NGN)</option>
<option value="NRB">Noirbits (NRB)</option>
<option value="NDL">NoodlyAppendageCoin (NDL)</option>
<option value="KPW">North Korean Won (KPW)</option>
<option value="NOK">Norwegian Krone (NOK)</option>
<option value="NVC">Novacoin (NVC)</option>
<option value="NXT">Nxt (NXT)</option>
<option value="OMR">Omani Rial (OMR)</option>
<option value="ORB">Orbitcoin (ORB)</option>
<option value="XAL">Ounces of Aluminum (XAL)</option>
<option value="XCP">Ounces of Copper (XCP)</option>
<option value="XAU">Ounces of Gold (XAU)</option>
<option value="XPD">Ounces of Palladium (XPD)</option>
<option value="XPT">Ounces of Platinum (XPT)</option>
<option value="XAG">Ounces of Silver (XAG)</option>
<option value="PKR">Pakistan Rupee (PKR)</option>
<option value="PAB">Panamanian Balboa (PAB)</option>
<option value="PGK">Papua New Guinea Kina (PGK)</option>
<option value="PYG">Paraguay Guarani (PYG)</option>
<option value="PPC">Peercoin (PPC)</option>
<option value="PEN">Peruvian Nuevo Sol (PEN)</option>
<option value="PTC">Pesetacoin (PTC)</option>
<option value="PHP">Philippine Peso (PHP)</option>
<option value="PHS">Philosopher Stones (PHS)</option>
<option value="PXC">Phoenixcoin (PXC)</option>
<option value="PLN">Polish Zloty (PLN)</option>
<option value="POT">PotCoin (POT)</option>
<option value="GBP">Pound Sterling (GBP)</option>
<option value="XPM">Primecoin (XPM)</option>
<option value="PTS">ProtoShares (PTS)</option>
<option value="QAR">Qatari Riyal (QAR)</option>
<option value="QRA">Qora (QRA)</option>
<option value="QRK">QuarkCoin (QRK)</option>
<option value="RDD">ReddCoin (RDD)</option>
<option value="XRP">Ripple (XRP)</option>
<option value="RON">Romanian Leu (RON)</option>
<option value="RUB">Russian Ruble (RUB)</option>
<option value="RWF">Rwandan Franc (RWF)</option>
<option value="SHP">Saint Helena Pound (SHP)</option>
<option value="WST">Samoa Tala (WST)</option>
<option value="STD">Sao Tome Dobra (STD)</option>
<option value="SAR">Saudi Arabian Riyal (SAR)</option>
<option value="RSD">Serbian Dinar (RSD)</option>
<option value="SXC">Sexcoin (SXC)</option>
<option value="SCR">Seychelles Rupee (SCR)</option>
<option value="SLL">Sierra Leonean Leone (SLL)</option>
<option value="XSV">SiliconValleyCoin (XSV)</option>
<option value="SGD">Singapore Dollar (SGD)</option>
<option value="SLR">SolarCoin (SLR)</option>
<option value="SBD">Solomon Islands Dollar (SBD)</option>
<option value="SOS">Somali Shilling (SOS)</option>
<option value="ZAR">South African Rand (ZAR)</option>
<option value="SPA">SpainCoin (SPA)</option>
<option value="SDR">Special Drawing Right (SDR)</option>
<option value="LKR">Sri Lankan Rupee (LKR)</option>
<option value="SBC">StableCoin (SBC)</option>
<option value="SDG">Sudanese Pound (SDG)</option>
<option value="SRD">Suriname Dollar (SRD)</option>
<option value="SZL">Swazi Lilangeni (SZL)</option>
<option value="SEK">Swedish Krona (SEK)</option>
<option value="CHF">Swiss Franc (CHF)</option>
<option value="SYP">Syrian Pound (SYP)</option>
<option value="TAG">TagCoin (TAG)</option>
<option value="TJS">Tajikistan Somoni (TJS)</option>
<option value="TZS">Tanzanian Shilling (TZS)</option>
<option value="TRC">Terracoin (TRC)</option>
<option value="THB">Thai Baht (THB)</option>
<option value="THO">Thai Offshore Baht (THO)</option>
<option value="TIX">Tickets (TIX)</option>
<option value="TGC">Tigercoin (TGC)</option>
<option value="TOP">Tongan Pa'Anga (TOP)</option>
<option value="TTD">Trinidad and Tobago Dollar (TTD)</option>
<option value="TND">Tunisian Dinar (TND)</option>
<option value="TRY">Turkish Lira (TRY)</option>
<option value="TMT">Turkmenistan Manat (TMT)</option>
<option value="UGX">Uganda Shilling (UGX)</option>
<option value="UAH">Ukrainian Hryvnia (UAH)</option>
<option value="AED">United Arab Emirates Dirham (AED)</option>
<option value="USD">United States Dollar (USD)</option>
<option value="UNO">Unobtanium (UNO)</option>
<option value="UYU">Uruguayan peso (UYU)</option>
<option value="UZS">Uzbekistani Som (UZS)</option>
<option value="VUV">Vanuatu Vatu (VUV)</option>
<option value="VEF">Venezuelan Bolivar Fuerte (VEF)</option>
<option value="VRC">VeriCoin (VRC)</option>
<option value="VTC">Vertcoin (VTC)</option>
<option value="VND">Viet Nam Dong (VND)</option>
<option value="XOF">West African CFA (XOF)</option>
<option value="WHC">WhiteCoin (WHC)</option>
<option value="WDC">WorldCoin (WDC)</option>
<option value="XXC">XC (XXC)</option>
<option value="YAC">Yacoin (YAC)</option>
<option value="YBC">YbCoin (YBC)</option>
<option value="YER">Yemeni Rial (YER)</option>
<option value="ZMW">Zambian Kwacha (ZMW)</option>
<option value="ZTC">Zeitcoin (ZTC)</option>
<option value="ZET">Zetacoin (ZET)</option>
</select>
</td></tr><tr><td>
To:
</td><td>
<select name="currencyto">
<option value="XDG">DogeCoin (XDG)</option>
<option value="UNO">Unobtanium (UNO)</option>
<option value="VEF">Venezuelan Bolivar Fuerte (VEF)</option>
<option value="VND">Viet Nam Dong (VND)</option>
<option value="USD">United States Dollar (USD)</option>
<option value="RUB">Russian Ruble (RUB)</option>
<option value="AUD">Australian Dollar (AUD)</option>
<option value="MXN">Mexican Peso (MXN)</option>
<option value="NZD">New Zealand Dollar (NZD)</option>
<option value="EUR">Euro (EUR)</option>
<option value="JPY">Japanese Yen (JPY)</option>
<option value="CNH">Chinese Offshore Yuan (CNH)</option>
<option value="CNY">Chinese Yuan (CNY)</option>
<option value="INR">Indian Rupee (INR)</option>
<option value="ARS">Argentine Peso (ARS)</option>
</select>
</td></tr><tr><td>
</td><td>
<input type="submit" value="Convert">
</td></tr></table>
Currency conversion powered by <a href="https://coinmill.com/">coinmill.com</a>
</form>
</div>
</div>
<div class="tab-pane tab-content" id="menuAbout">
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo1.jpg" style="height:180px" ></a>
<h2>About<small> this website.</small></h2>
<p><strong>If you don't know anything about multisigs, or dogecoin/cryptocurrencies for that matter, but you are ready to dive in, then this site is for you.</strong></p>
<p>This site/project is associated with the <a href="https://reddit.com/r/dogecoin/">R/DOGECOIN</a> community on reddit. Visit that reddit and say hi, become a shibe.</p>
<p><strong>TLDR:</strong>Check out the Dogecoin Bankings Suite, below</p>
<hr>
<h3> Dogecoin Bankings Suite</h3>
<p><strong>The <a href="index.html#bankSuite">Dogecoin Bankings Suite</a> (DBS) is a multi-signature multi-wallet: Six separate accounts that are controlled by a single password.</strong></p>
<p>This is the <strong>FASTEST AND EASIEST</strong> way to get a Dogecoin Account. Just store 2 pieces of information in a text file.</p>
<p>Look for the green HELP button.</p>
<hr>
<h3> TripleShibe </h3>
<p><strong>The <a href="index.html#tripleshibe">TripleShibe 2/3 Multisig </a> is another wallet. It has the basic functionality required to support the 2/3 Dogecoin Multisig</strong>. And more.</p>
<p>It can be used by one or three people. Use the tool that suits your purpose.</p>
<p>Find the Instruction Manual for the Triple Shibe, in the following languages:</p>
<p><a href="docs/TSdoc_v.001.pdf" >English</a></p>
<p><a href="docs/TSdoc_v.001(Russian).pdf" >Pусский</a></p>
<p><a href="docs/TSdoc_v.001(Finnish).pdf" >Suomi</a></p>
<p><a href="docs/TSdoc_v.001(Spanish).pdf" >Español</a></p>
<p><a href="docs/TSdoc_v.001(German).pdf" >Deutsch</a></p>
<p><a href="docs/TSdoc_v.001(Dutch).pdf" >Nederlands</a></p>
<p><a href="docs/TSdoc_v.001(Italian).pdf" >Italiano</a></p>
<p><a href="docs/TSdoc_v.001(Mandarin).pdf" >普通话</a></p>
<p><a href="docs/TSdoc_v.001(Hungarian).pdf" >Magyar</a></p>
<p><a href="docs/TSdoc_v.001(Hindi).pdf" >हिंदी</a></p>
<p><small>(these are available offline)</small></p>
<hr>
<h3> QuatroShibe <small><small>new!</small></small></h3>
<p>The 3/4<strong> Dogecoin</strong> multisig is here.</p>
<p>Create various <strong>4-person</strong> contracts.</p>
<p>Add unlimited side contracts to existing TripleShibe arrangements.</p>
<p>Free and generatable offline just like everything else on this site.</p>
<hr>
<h3> So you want to tinker and poke around with the Dogecoin Blockchain?</h3>
<p>This website is basically a large blob of different tools and functionalities. And it's growing. It's like a Swiss Army knife with the DBS and TripleShibe and QuatroShibe as the big blades. It's like the vi of dogecoin multisigs. A big steampunk-style digital wallet with tools.</p>
<p>Use a QR code reading program on your phone to enable peer-to-peer processing with this site. You'll be reading in QRs for URL (website) addresses and/or addresses, possibly more.</p>
<p>The user can also get closer to the blockchain, using this site.</p>
<p>The TripleShibe Doges are color coded:</p>
<a href="images/about_color_code.jpg" ><img src="images/about_color_code.jpg" style="height:360" ></a>
<p>If using the dogecoin-qt (core) for transactions processing is considered Advanced, and usage of fully wrapped transactions processing (dogetipbot derp on reddit or dogechain.info) is considered Easy, then consider this website to be<strong> INTERMEDIATE LEVEL</strong>
<strong>. This site is centered between ease-of-use and maximizing security for the user<em>. You hold onto your keys, we will never see them. </em>
</strong> Check out the 'How To' section for videos showing you how to use this site. You will need basic cut n'pasting skills, and a little patience.</p>
<p><strong>All computations are performed in Javascript within the browser. The so-called "Broadcast" transaction takes this Javascript output and loads it to the Dogecoin Network. This means that you are able<em> to create your dogecoin addresses and multisig address (and handle the private key, etc) OFFLINE</em></strong><em> (this is a security feature).</em></p>
<p><strong>This program will support up to 60 unspent transactions per pass.</strong></p>
<p>This site is a self-service bankings tool; it does not have a formalized support system.</p>
<p><strong>Use F12-Console for detailed information on what the program is doing, etc.</strong></p>
<p>Version .292 (this statement last touched 20220924). This website is in<strong> Beta</strong>. This is open source freeware.</p>
<p><strong>This site is a work in progress</strong><strong> that will continue growing over time.</strong></p>
<p>Here's the source code:<a title="dogecoinmultisig.org" href="https://github.com/tomcarbon/dogecoinmultisig/">https://github.com/tomcarbon/dogecoinmultisig</a>. dogecoinmultisig.org is turnkey. Just copy it from github,and run index.html</p>
<hr> <p></p>
<h3><strong>Acknowledgements</strong></h3>
<p>This site was started with coinb.in open source source code. Please help support them at: 1CWHWkTWaq1K5hevimJia3cyinQsrgXUvg(BTC)</p>
<p><a title="very" href="https://blockcypher.com/">blockcypher.com</a> is the primary dogecoin network interface.</p>
<p>岡崎正広created the logo! If you like it let him know with doge! 9vfQTSv7GtBA5YaU58VwhZFKBgGne7rcpX (DOGE)</p>
<p>The community at <a title="to" href="https://reddit.com/r/dogecoin/">r/dogecoin</a>. Special thanks to u/1waterhole, u/erkan_yilmaz, u/greenbigfrog, u/pta2002, u/buurp, u/cody50055 and u/neuro-tic (very testing). Very Thanks helping with Translations and stuff: u/Bomsusik, u/pandoge, u/maerco, u/desoroo, u/LeoNeeson, u/tomcarbon, u/peoplma, u/ChateauLafite1827, u/MrDogeMeister, u/to-the-moon-de, u/GeriGeriGeri, u/Cryptodoc </p>
<p></p> <hr>
<h3><strong>What is Dogecoin?</strong></h3>
<p><strong><a title="dogecoin.com" href="http://dogecoin.com">Dogecoin</a> is money with a picture of a dog on it.</strong> The dogecoin network is quite similar to the bitcoin network, but with a few changes made that serve to differentiate it from the bitcoin network.</p>
<p>With its 5.2B coin annual rate of inflation, Dogecoin stands alone among its peers. While other coins such as bitcoin are more <em><strong>deflationary</strong></em> in nature, the dogecoin network is<strong><em> inflationary </em></strong>in nature, lending to a more predictable as well as an ostensibly more decentralized and rationally sustainable worldwide economic monetary system.</p>
<p>The Dogecoin Network inflates at the rate of 5.2 Billion dogecoins created per year.This network can handle several times the volume of the Bitcoin Network, as measured in terms of transactions per second. In this way dogecoin and other cryptocurrencies are assisting Bitcoin as regards possibly looming bandwidth issues.</p>
<hr>
<p><strong>Prepare me for Multisigs</strong></p>
<p>You can think of a standard Dogecoin Address as having three primary components:</p>
<p> <em> PrivateKey->PublicKey->Address</em></p>
<p>The Private Key can create the Public Key, and the Public Key can create the Address(es).</p>
<p>The Private Key can make everything, that's why we need to keep it safe.</p>
<p>The Public Key can be used to generate both regular and multisig Dogecoin addresses.</p>
<p>So, it's the Public Keys that are used to make Multisig Addresses.</p>
<p><strong>What is a Multisig?</strong></p>
<p>A Multi-Signature Ðogecoin address, or Multisig, is a special Ðogecoin address that is created from one or more regular Ðogecoin Public Keys. Ðogecoin multisigs always start with an 'A' or a '9' (regular addresses start with a 'D'). Multisigs do not come from a random number generator like regular addresses, but instead are created from combinations of Public Keys.</p>
<p>Here is a sample multisig Address: 9sxA7zvcNyJ57W7vND3CfrqaocrEid2p8Z.</p>
<p>Multisigs can be powerful tools. We're really just learning about their potential.</p>
<p><strong>More about Multisigs:</strong><strong> Key Holders</strong>,<strong> PRIVATE KEYS</strong> and<strong> Signatures</strong></p>
<p>Multisigs have<strong> Key Holders</strong>. These are individuals who are assigned to hold a<strong> PRIVATE KEY</strong>, which is basically a string of 50 or so random looking characters and digits(don't lose it).One Key Holder can hold multiple keys, as in the case of<strong> Personal Use.</strong></p>
<p>Here's a sample<strong> PRIVATE KEY</strong>: QP5crz1QEYtfjedrx9oN2sT7V5y1SBsH3tNfm72FdwGkxkf7DP2M.To learn more about it, copy it and plug it in <a href="index.html#verify">here.</a></p>
<p>The number of<strong> Key Holders</strong> is assigned at multisig creation time and can never be changed. Each<strong> Key Holder</strong> gets their own<strong> PRIVATE KEY</strong>.</p>
<p>When a<strong> Key Holder</strong> provides their<strong> PRIVATE KEY</strong>, it is called a<strong> Signature.</strong> Along with choosing the number<strong> Key Holders</strong> when you're making the multisig, you also choose the number of<strong> Signatures</strong> required to unlock the funds.</p>
<p>Afterthe<strong> Key Holders</strong> agree on a location to send x amount of Ðogecoins, and then after the required number of<strong> Signatures</strong> are collected, the money moves!</p>
<p></p>
<p><strong>What are some things you can do with a multisig?</strong></p>
<p>Of course, you can smoosh them altogether into the<a href="index.html#bankSuite"> DBS</a> or the <a href="index.html#tripleshibe">TripleShibe</a>. You can share the private keys or just keep them to yourself and use it personally. Here's a rundown on what we've got, with how-to-use examples:</p>
<p>A<strong> 1/1 Multisig</strong> is like giving any regular Ðogecoin address an additional address. One Private Key yieldstwo Dogecoin addresses to use: The regular address, and the "new" 1/1 multisig address associated with the Public Key.</p>
<p>A<strong> 1/2</strong><strong> Multisig</strong> is like a shared checkingaccount. Except you could create 50 of them, for free, and use them anywhere around the world, instantly, 24 hours/day.</p>
<p>A<strong> 1/3 Multisig</strong> is a fund where any of the 3 people holding keys can take the funds -- How abouta 'break-glass-in-case-of-emergency' type of fund, or even just a pre-budgeted spending pool? You'll get to trace where the money went, and how much -- that's recorded in the dogecoin public ledger, for all to see. Or use it like a checking account.</p>
<p>A<strong> 2/2</strong><strong> MultiSig</strong> is another versatile option. Both Key Holders are needed to move the funds to an agreed-upon location. Maybe you want to store the private keys for each in different locations, for security purposes. Or maybe you're trying to get two people to work together, for whatever reason. If you want any two people to have to agree on how to spend the money, 2/2 is a great option.</p>
<p>A<strong> 2/3 MultiSig</strong> means that there are 3<strong> Key Holders,</strong> and 2<strong> Signatures</strong> are required to unlock the funds. This 2/3 arrangement is typical for an Arbitrated MultiSig contract. Or let's pretend someone has an idea for a charity effort, goes to the community for a crowdfunding push and wins the support of two trusted players in that community. A 2/3 multisig could be created for that charity and any funds collected can be moved out of the fund in a few different ways, but never by a single person. Wow!</p>
<p></p>
<h3><strong>More Information</strong></h3>
<p>This website is an interface to the Dogecoin Network, and while it is tuned for handling multi-signature transactions, non-multisig Dogecoin addresses (the regular ones) can also be used here. The website is designed to be usable offline.</p>
<p>Compatible with dogecoin-qt</p>
<p>Privacy: Keys are generated on client side and we never ever see them. Nor do we want to see them.</p>
<p>Check out dogecoinmultisig.org. This is something you can take from github and copy onto a memory stick. You can put the memory stick onto a computer that's not connected to the internet, and generate regular and multisig addresses. Why is that? In terms of this website, it's because the Private Key is generated first, using randomized number information. From the Private Key, the Public Key is generated, and from the Public Key, the Address is generated. These addresses don't need to be connected to some central authority, They don't need to be entered into a database... it's the spend transaction that does that. The blockchain consists of transactions that are weaved together to form the story of your address... that's how your address exists in the blockchain, in the transactions that mention it. To pull transactions from the blockchain, you're going to need access to the internet. Then you can (in theory) take those transactions with you, store them on an offline computer. You can sign them offline, creating the broadcast transaction -- a block of data that will be incorporated into the blockchain. That 'broadcast' happens online.</p>
<h3><strong>Thank You</strong></h3>
</div>
<!-- HOW TO SECTION. -->
<!-- HOW TO SECTION. -->
<!-- HOW TO SECTION. -->
<!-- HOW TO SECTION. -->
<div class="tab-pane tab-content" id="menuHowTo">
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo1.jpg" style="height:180px" ></a>
<h1 style="font-family: 'Open Sans', sans-serif; line-height: 28px; color: #333333; text-rendering: optimizelegibility; font-size: 26px; margin: 12px 0px 12px 0px;">DOGECOINMULTISIG.org</h1>
<h1 style="font-family: 'Open Sans', sans-serif; line-height: 28px; color: #333333; text-rendering: optimizelegibility; font-size: 26px; margin: 12px 0px 12px 0px;">The HOW TO section</h1>
<h1 style="font-family: 'Open Sans', sans-serif; line-height: 28px; color: #333333; text-rendering: optimizelegibility; font-size: 26px; margin: 12px 0px 12px 0px;"> </h1>
<p>Instruction Manual for TripleShibe, these also have instructions for withdraw transactions:</p>
<p><a href="docs/TSdoc_v.001.pdf" >English</a></p>
<p><a href="docs/TSdoc_v.001(Russian).pdf" >Pусский</a></p>
<p><a href="docs/TSdoc_v.001(Finnish).pdf" >Suomi</a></p>
<p><a href="docs/TSdoc_v.001(Spanish).pdf" >Español</a></p>
<p><a href="docs/TSdoc_v.001(German).pdf" >Deutsch</a></p>
<p><a href="docs/TSdoc_v.001(Dutch).pdf" >Nederlands</a></p>
<p><a href="docs/TSdoc_v.001(Italian).pdf" >Italiano</a></p>
<p><a href="docs/TSdoc_v.001(Mandarin).pdf" >普通话</a></p>
<p><a href="docs/TSdoc_v.001(Hungarian).pdf" >Magyar</a></p>
<p><a href="docs/TSdoc_v.001(Hindi).pdf" >हिंदी</a></p>
<p><small>(these are available offline)</small></p>
<br>
<hr>
<br>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;">Here are some quick videos and stuff that demonstrate How To:</p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>BEGINNER/EASY</strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>1) Create a "Dogecoin Bankings Suite" (DBS ) 6 dogecoin addresses) in 35 seconds:</strong> <strong><a href="https://www.youtube.com/watch?v=oxYot_RdrpE&feature=youtu.be">wow</a></strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>2) Use the Spend Button:</strong> <strong><a href="https://youtu.be/lKPULNwIt5g">wow</a></strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>INTERMEDIATE/ADVANCED</strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>3) Create two Dogecoin Addresses: <a href="https://www.youtube.com/watch?v=JnFCRGeFAc0&index=1&list=PLKNyF61Wqa0YBwXKodoDA7gnG3CHoVONd">Playlist 002: Create 2 Dogecoin Addresses</a></strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>4) Create a 2/2 Multisig Address: <a href="https://www.youtube.com/watch?v=GEli3Atr-KQ&list=PLKNyF61Wqa0YBwXKodoDA7gnG3CHoVONd&index=2">Playlist 003: Create 2/2 Dogecoin Multisig Address</a></strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>5) Withdraw from 1/2 Multisig Address: <a href="https://www.youtube.com/watch?v=v3fjCHBLr7Q&list=PLKNyF61Wqa0YBwXKodoDA7gnG3CHoVONd&index=3">Playlist 004: Withdraw from 1/2 Dogecoin Multsig Address</a></strong></p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>6) Access list of Unspent Transactions: <a href="http://imgur.com/a/x56L6">InfoGraphic 001: Get Unspent Transactions</a></strong></p>
<!--p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"><strong>7) Pay from Dogetipbot to an account here:</strong> <strong><a href="https://imgur.com/a/YhdrJ#DAaRuva">wow</a></strong></p-->
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"> </p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"> </p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"> </p>
<p style="font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; margin: 0px 0px 9px 0px;"> more videos coming soon!</p>
</div>
<div class="tab-pane tab-content" id="newAddress">
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo2.jpg" style="height:180px" ></a>
<h2>New Ðogecoin 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 Ðogecoins.</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-->
<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"></label>
</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>
<label>Add random information here:</label>
<textarea id="userRandom" class="form-control script" style="height:100px" ></textarea>
<input type="button" class="btn btn-primary" value="Make New Address (offline is OK)" id="newKeysBtn">
<!--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-->
<br>
</div>
<div class="tab-pane tab-content" id="payspot">
<a href="#payspot" ><img src="images/dcmslogo3.jpg" class="hidden" style="height:180px" ></a>
<div>
<input type="button" value="English" id="PSenglishbutton" />
<input type="button" value="日本語" id="PSjapanesebutton" />
<input type="button" value="Nederlands" id="PSdutchbutton" />
<input type="button" value="Espanol" id="PSspanishbutton" />
<input type="button" value="Français" id="PSfrenchbutton" />
<input type="button" value="Italiano" id="PSitalianbutton" />
<input type="button" value="Русский" id="PSrussianbutton" />
<input type="button" value="Deutsch" id="PSgermanbutton" />
<input type="button" value="Magyar" id="PShungarianbutton" />
</div>
<div id="langdisp00d"></div>
<a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo3.jpg" style="height:180px" ></a>
<!--h2>Pay Spot <small> Dogecoin is accepted here.</small></h2-->
<h2><div id="langdisp68"></div></h2>
<input id="psQuickInstructions" type="button" class="btn btn-xs btn-success" value="Click Here for Instructions!" >
<div class="alert-success" id="psNewScreen01">
<h3>INSTRUCTIONS</h3>
<hr>
<a href="https://imgur.com/a/FHPFI"><small><small>ELI5 with pictures</small></small></a>
<p>This is the Pay Spot page.</p>
<p>Its primary purpose is to display one Dogecoin Multisig Address, and its balance.</p>
<p>Mobile to Mobile, the webpage is easily transferable via URL or QR code.</p>
<hr>
<strong>THE BUTTONS</strong>
<p>The <strong>Load Reddit Postings</strong> Button will find you all related reddit posts regarding that Pay Spot Dogecoin Address
<small> (sort by new)</small></p>
<hr>
<!--p>The <strong>Reddit Dogetipbot</strong> Button will bring you to the dogetipbot withdraw screen at reddit.com, and allow easy Peer-to-Peer Payment:</p>
<p><strong><small>Show me your Pay Spot, then I scan your QR code, then use this button to pay doge from dogetipbot.</small></strong></p>
<p><small>(you must be logged into reddit to use this feature!)</small></p>
<hr>
<p>The <strong>Create Mini-Invoice</strong> Button is UNDER CONSTRUCTION! coming soon! (today's 20170314)</p-->
<hr>
<p>This page does not store sensitive data (only the address itself is used).</p>
<p><small>(you know, if you want to, you just plug any old Dogecoin address into the URL and it becomes *your* PaySpot)</small></p>
<hr>
</div>
<div class="alert-info" id="psmultiSigData">
<p><b><!--Address:--><div id="langdisp27g"></div></b></p>
<div class="row">
<div class="col-lg-6">
<div class="input-group">
<input id="psAddress" type="text" class="js-pscopytextarea2 form-control address" value="" readonly>
<span class="input-group-btn">
<button class="btn btn-default js-pstextareacopybtn2" type="button">
<span class="glyphicon glyphicon-copy"></span>
</button>
</span>
<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>
<b><p id="psBalance"></p></b>
<b><p id="psUCBalance"></b></p>
<br>
<p><b><!--Shareable URL for this page--><div id="langdisp69"></div></b></p>
<div class="input-group">
<input id="psRedeemScript" type="text" class="form-control hidden" value="" readonly>
<input id="psPageURL" type="text" class="js-pscopytextarea1 form-control address" value="" readonly>
<span class="input-group-btn">
<button class="btn btn-default js-pstextareacopybtn1" type="button">
<span class="glyphicon glyphicon-copy"></span>
</button>
</span>
<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>
<br>
<input type="button" class="btn btn-info" value="Deposit funds here using your Reddit SoDogeTip Account" id="psSoDogeTipBtn">
<input type="button" class="btn btn-danger" value="Load related Reddit Postings if any" id="psRedditBtn">
<!--input type="button" class="btn btn-info" value="Deposit funds here using your Reddit Dogetipbot Account" id="psRedditLoadBtn"-->
<!--input type="button" class="btn btn-success" value="Create Micro Invoice" id="psMicroInvoiceBtn"-->
<hr>
<div class="alert-info" id="psNewScreen03">
<!-- this is the SoDogeTip Box that opens up -->
<hr>
<!--h6>Enter the amount you would like to deposit into this account from SoDogeTip:</h6>
<span>Amount : <input id="psSTBAmount" type="text" class="form-control address" value=""></span-->
<span>Enter the amount you would like to deposit into this account from SoDogeTip:<input id="psSoDogeTipAmt" type="text"
class="form-control address" value="">
</span>
<!--span>Contact: <input id="psMI03" type="text" class="form-control address" value=""></span-->
<!--span>IMGUR photo code (e.g.: 3LYHD40): <input id="psMI04" type="text" class="form-control address" value=""></span-->
<input type="button" class="btn btn-xs btn-info" value="NEXT" id="psRedditLoadBtn">
<hr>
</div>
<div class="alert-success" id="psNewScreen02">
<hr>
<span>Amount : <input id="psMI02" type="text" class="form-control address" value=""></span>
<!--span>Contact: <input id="psMI03" type="text" class="form-control address" value=""></span-->
<!--span>IMGUR photo code (e.g.: 3LYHD40): <input id="psMI04" type="text" class="form-control address" value=""></span-->
<input type="button" class="btn btn-xs btn-info" value="NEXT" id="psMicroInvoiceNextBtn">
<hr>
</div>
</div>
</div>
<div class="tab-pane tab-content" id="microinvoice">
<a href="#microinvoice" ><img src="images/dcmslogo2.jpg" class="hidden" style="height:180px" ></a>
<!--a href="http://dogecoinmultisig.org" ><img src="images/dcmslogo2.jpg" style="height:180px" ></a-->
<h2>Micro Invoice!<small> Pay Dogecoin Here</small></h2>
<input id="MIQuickInstructions" type="button" class="btn btn-xs btn-success" value="Click Here for Instructions!" >
<div class="alert-success" id="MINewScreen01">