-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathlegacy_wallet.html
1478 lines (1474 loc) · 81.4 KB
/
legacy_wallet.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" class="notranslate" translate="no">
<head>
<meta charset="utf-8">
<meta name="google" content="notranslate" />
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="https://wallet.duinocoin.com/assets/duco.svg">
<link rel="shortcut icon" href="https://wallet.duinocoin.com/assets/duco.svg">
<title>Duino-Coin | Web Wallet</title>
<meta name="apple-mobile-web-app-title" content="Duino-Coin | Web Wallet">
<meta name="application-name" content="Duino-Coin | Web Wallet">
<meta name="twitter:title" content="Duino-Coin | Web Wallet">
<meta property="og:title" content="Duino-Coin | Web Wallet">
<meta name="description" content="Official online wallet for Duino-Coin (DUCO)">
<meta name="twitter:description" content="Official online wallet for Duino-Coin (DUCO)">
<meta property="og:description" content="Official online wallet for Duino-Coin (DUCO)">
<meta name="keywords" content="Duino-Coin, duco, Duino Coin, DUCO">
<meta name="author" content="revox from the Duino-Coin Team">
<meta property="og:url" content="https://wallet.duinocoin.com">
<meta name="msapplication-TileColor" content="#f0932b">
<meta name="theme-color" content="#f0932b">
<meta name="twitter:site" content="@DuinoCoin">
<meta name="twitter:image" content="https://wallet.duinocoin.com/img/banner_wallet.png">
<meta property="og:image" content="https://wallet.duinocoin.com/img/banner_wallet.png">
<meta property="og:image:url" content="https://wallet.duinocoin.com/img/banner_wallet.png">
<meta name="twitter:card" content="summary_large_image">
<link rel="manifest" href="wallet.webmanifest">
<!-- Preconnect ReCaptcha resources -->
<!-- Prevent some errors [for example timeout] -->
<link rel="preconnect" href="https://www.google.com">
<link rel="preconnect" href="https://www.gstatic.com" crossorigin>
<!-- JS -->
<script src="https://www.google.com/recaptcha/api.js?render=6LdJ9XsgAAAAAMShiVvOtZ4cAbvvdkw7sHKQDV-6"></script>
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.8.1/lottie.min.js" as="script">
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.8.1/lottie.min.js"></script>
<link rel="preload" as="script" href="js/jquery-3.6.0.min.js">
<script type="text/javascript" src="js/jquery-3.6.0.min.js"></script>
<link rel="preload" as="script" href="js/fontawesome.js">
<script type="text/javascript" src="js/fontawesome.js"></script>
<link rel="preload" as="script" href="js/qr-scanner.js">
<script type="text/javascript" src="js/qr-scanner.js"></script>
<link rel="preload" as="script" href="js/qr-code-styling.js">
<script type="text/javascript" src="js/qr-code-styling.js"></script>
<link rel="preload" as="script" href="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js">
<link rel="preload" as="script" href="js/chart.js">
<script type="text/javascript" src="js/chart.js"></script>
<link rel="preload" as="script" href="js/jquery-ui.min.js">
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script src="https://unpkg.com/detect-autofill/dist/detect-autofill.js"></script>
<script type="text/javascript" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Bulma -->
<link rel="preload" href="css/style.css" as="style">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preload" href="css/bulma.min.css" as="style">
<link rel="stylesheet" href="css/bulma.min.css" type="text/css">
<link rel="preload" href="css/bulma-prefers-dark.min.css" as="style">
<link rel="stylesheet" href="css/bulma-prefers-dark.min.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/bulma-modal-fx/dist/css/modal-fx.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@creativebulma/[email protected]/dist/bulma-divider.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/font-awesome-animation.min.css">
</head>
<body>
<div id="tooltipFixed" class="tooltip">
</div>
<div id="pageloaders">
<div id="loader"></div>
</div>
<canvas id="background"></canvas>
<div class="egg" id="screen">
<span class='blinker'> </span>
</div>
<div id="hidden">
</div>
<div class="login-content" class="mt-0">
<form class="box blur" id="form">
<p class="title is-size-5 mb-0">
<span class="icon-text">
<span class="icon">
<img id="ducologo" src="https://wallet.duinocoin.com/assets/duco.svg">
</span>
<span style="word-break: break-all;">
<span class="has-text-weight-bold">
Duino-Coin
</span>
<wbr>
<span class="has-text-weight-light">
Web Wallet
</span>
</span>
</span>
</p>
<br>
<p class="title is-size-3 mb-5">
<span class="has-text-weight-bold">
Sign in
</span>
<span class="has-text-weight-normal">
to your account
</span>
</p>
<div class="input-div one" id="usernamediv">
<div class="i">
<i class="fas fa-user"></i>
</div>
<div class="div">
<h5>Username</h5>
<input id="usernameinput" type="text" class="input" autocomplete="username" required>
</div>
</div>
<div class="input-div pass" id="passworddiv">
<div class="i">
<i class="fas fa-lock"></i>
</div>
<div class="div">
<h5>Passphrase (key)</h5>
<input id="passwordinput" type="password" class="input" autocomplete="current-password" required>
</div>
</div>
<div class="field">
<div class="is-flex is-justify-content-flex-start is-align-items-center mt-4" style="width: 100%;">
<input class="is-checkbox is-small" type="checkbox" id="rememberinput">
<label for="rememberinput" style="margin-left:8px; font-size: 1em;"> Remember me</label>
</div>
</div>
<div>
<button type="submit" id="submit" class="btn button g-recaptcha" data-sitekey="6LdJ9XsgAAAAAMShiVvOtZ4cAbvvdkw7sHKQDV-6" data-callback="login">Login</button>
</div>
<a href="recovery.html">Forgot your passphrase?</a>
<a href="register.html">Need to create a wallet?</a>
</form>
</div>
<div id="wallet" style="display:none;">
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box blur">
<article class="media">
<a href="https://gravatar.com" target="_blank">
<div class="media-left is-relative">
<figure class="image is-64x64" data-tooltip="Synced with Gravatar">
<img class="is-rounded" id="useravatar" alt="User avatar">
</figure>
<img id="hat" style="height:50px;width:50px;position:absolute;top:-1.75em;margin-left:10px;display:none;pointer-events: none;opacity:0.9">
<img id="sunglasses" style="height:64px;width:64px;position:absolute;top:-0.25em;display:none;pointer-events: none;opacity:0.9">
<img id="bowtie" style="height:44px;width:44px;position:absolute;top:2.3em;left:.6em;display:none;pointer-events: none;opacity:0.9">
<p class="mt-1 has-text-centered">
<a class="modal-button" data-tooltip="Settings" data-target="modal-settings">
<i class="fa fa-cog"></i>
</a>
<a data-tooltip="Item shop" class="modal-button" data-target="modal-shop">
<i class="fa fa-shopping-bag"></i>
<!--<span class="red-dot"></span>-->
</a>
<a data-tooltip="Achievements" class="modal-button" data-target="modal-achievements">
<i class="fa fa-trophy"></i>
<!--<span class="red-dot"></span>-->
</a>
<a data-tooltip="QR Code" class="modal-button" data-target="modal-qrcode">
<i class="fa fa-qrcode"></i>
</a>
</p>
</div>
</a>
<div class="media-content" style="overflow-wrap: anywhere;">
<div class="content has-text-left mb-0">
<div class="columns is-gapless">
<div class="column">
<p>
<strong id="username">
username
</strong>
<small id="verify">?</small>
<span id="badge"></span>
<small id="email" class="hidden">([email protected])</small>
</p>
</div>
</div>
</div>
<div class="columns is-gapless">
<div class="column">
<p class="title is-size-5 has-text-left has-text-weight-normal mb-0">
<strong class="has-text-weight-bold" id="balance">?</strong> DUCO
</p>
<p class="title is-size-6 has-text-left has-text-weight-normal mb-0 mt-0">
≈<span class="has-text-weight-bold" id="balancefiat">?</span>
USD (<b id="best_exchage">unknown exchange</b> rate)
</p>
<p>
<small class="has-text-weight-normal">
<span id="estimatedprofit">
<i class="fas fa-spinner fa-pulse"></i>
Calculating est. daily profit
</span>
<span id="estimatedprofitusd">
</span>
</small>
</p>
</div>
<div class="column">
<div id="stake_info"></div>
</div>
</div>
</div>
</article>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box blur">
<ins class="adsbygoogle" style="display:block" align="center" data-ad-client="ca-pub-4670059148424169" data-ad-slot="4342121726" data-ad-format="horizontal" data-full-width-responsive="true"></ins>
<div class="content" id="adblocker_detected" style="display:none">
<p class="title is-size-5 mb-0">
An ad should be here but
<span class="has-text-weight-bold">
you're using an adblocker 😞
</span>
</p>
<p class="content">
We spend <b class="has-text-danger-dark">our own money</b> to maintain the servers and keep official exchanges running. A <b>single ad</b> here helps in covering these costs.
If you like the project consider buying our
<a href="https://store.duinocoin.com" target="_blank">official merch</a>
or
<a href="https://duinocoin.com/donate" target="_blank">donating</a>.
<span class="has-text-success-dark">Thanks in advance and please, <b>whitelist us in your adblocker</b> 😕</span>
</p>
</div>
</div>
</div>
</div>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="columns is-multiline takolumna">
<div class="column is-full">
<div class="tile is-child box blur tenbox">
<div class="heading">
<div class="columns is-mobile is-multiline">
<div class="column">
<span class="is-size-6">
<span class="icon-text is-size-6">
<i class="icon mdi mdi-24px mdi-devices"></i>
</span>
<span>
Your <strong>Miners</strong>
<small class="has-text-weight-normal">
(<span id="minercount">0</span>/<span id="maxminercount">50</span>,
<b id="total_hashrate">0 H/s</b>)
</small>
<a id="expandbutton" data-tooltip="Expand"><i class="fa fa-expand-alt" onclick="toggleexpand()"></i></a>
</span>
</span>
</div>
<div class="column is-narrow">
<p class="subtitle is-size-6 has-text-right">
Mining key:
<a class="modal-button" data-target="modal-mining-key">
<b style="text-transform: initial;" class="hidden" id="miner_pass">None</b>
<i class="fa fa-edit"></i>
</a>
</p>
</div>
</div>
</div>
<div id="mcontainer">
<table class="table is-fullwidth" id="minertable">
<thead>
<th colspan="2" style="word-break: break-all">
<span>Miner</span>
<span class="icon-text">
<span class="icon" style="color:#6c5ce7">
<i class="mdi mdi-counter"></i>
</span>
</span>
</th>
<th style="word-break: break-all">
<span>Hashrate</span>
<span class="icon-text">
<span class="icon" style="color:#f0932b">
<i class="mdi mdi-pickaxe animated faa-slow faa-wrench"></i>
</span>
</span>
</th>
<th style="word-break: break-all">
<span>Accuracy</span>
<span class="icon-text">
<span class="icon has-text-success-dark">
<i class="mdi mdi-check-underline"></i>
</span>
</span>
</th>
<th></th>
</thead>
<tbody id="miners">
</tbody>
</table>
<div class="content" id="nominers">
<span class="has-text-weight-bold">
No miners detected.
</span>
<span class="has-text-weight-normal">
If you've turned them on recently it will take a minute
or two until their stats will appear here.
</span><br>
<p class="has-text-weight-normal mt-2">
<span class="has-text-weight-bold">
Having problems?
</span>
Make sure you put the correct username in the miner config - capitalization matters!<br>
<span class="has-text-danger">If you have enabled the mining key, make sure you also enter it in your miners</span> - they won't be able to mine on your account with invalid key entered.<br>
<span class="has-text-weight-bold">
Facing connection issues?
</span>
Check the <a href="https://status.duinocoin.com" target="_blank">server status page</a> for possible ongoing server maintenances.<br>
Join our <a href="https://www.reddit.com/r/Duinocoin/" target="_blank">Reddit</a> or <a href="https://discord.gg/kvBkccy" target="_blank">Discord</a> if you need more help.
</p>
</div>
</div>
</div>
</div>
<div class="column" id="iotbox">
<div class="box blur">
<div class="heading">
<div class="columns is-mobile is-multiline">
<div class="column">
<span class="is-size-6">
<span class="icon-text">
<i class="icon mdi mdi-24px mdi-access-point-network"></i>
</span>
<span>
Duino <strong>IoT</strong>
</span>
</span>
</div>
<div class="column is-narrow has-text-right">
<a href="https://github.com/revoxhere/duino-coin/wiki/Duino's-take-on-the-Internet-of-Things" target="_blank" class="is-link is-size-6">
Docs
<i class="fa fa-link"></i>
</a>
</div>
</div>
</div>
<div id="iot"></div>
</div>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child">
<div class="columns is-multiline">
<div class="column is-full">
<div class="box blur">
<div class="heading">
<div class="columns is-mobile is-multiline">
<div class="column">
<span class="is-size-6">
<span class="icon-text">
<i class="icon fa fa-calendar"></i>
</span>
<span>
Weekly <strong>event</strong>
</span>
</span>
</div>
<div class="column">
<progress id="week_end" value="32" max="100"> 32%</progress>
</div>
</div>
</div>
<p>
Topic: <b id="week_topic">unknown</b>
</p>
<p>
Description: <span id="week_desc">unknown</span>
</p>
<p>
Ends on <b id="week_date">never</b>
</p>
</div>
</div>
<div class="column">
<div class="box blur">
<div class="heading">
<div class="columns is-mobile is-multiline">
<div class="column">
<span class="is-size-6">
<span class="icon-text">
<i class="icon fa fa-stream"></i>
</span>
<span>
Your <strong>last transactions</strong>
</span>
</span>
</div>
<div class="column is-narrow has-text-right">
<div class="select mb-0" id="txsel">
<select id="txcount">
<option selected value="5">5</option>
<option value="15">15</option>
<option value="30">30</option>
<option value="7777">All</option>
</select>
</div>
</div>
</div>
</div>
<div class="columns is-gapless is-multiline tparent">
<div class="column is-full tcontainer">
<div id="transactions_table" class="columns is-multiline">
<div class="column is-full">
<p class="title is-size-6">
Fetching data
</p>
</div>
</div>
</div>
<div class="column is-full mt-0 mb-0">
<div class="transactionscontainer">
<div class="columns is-multiline mt-0 is-hidden-mobile">
<div class="column">
<a id="sendbutton" class="button is-fullwidth modal-button" data-target="modal-send">
<i class="fa fa-paper-plane"></i>
<span>Send coins</span>
</a>
</div>
<div class="column">
<a id="wrapbutton" class="button is-fullwidth modal-button" data-target="modal-wrap">
<i class="mdi mdi-vector-link"></i>
<span>Wrap coins</span>
</a>
</div>
<div class="column">
<a id="stakebutton" class="button is-fullwidth modal-button" data-target="modal-stake">
<i class="fa fa-layer-group"></i>
<span>Stake coins</span>
</a>
</div>
</div>
<div class="columns mt-0 is-hidden-desktop">
<div class="column" style="display:inline-block;width:32%">
<a id="sendbutton" class="button modal-button is-fullwidth" data-target="modal-send">
<i class="fa fa-paper-plane"></i>
</a>
</div>
<div class="column" style="display:inline-block;width:32%">
<a id="wrapbutton" class="button modal-button is-fullwidth" data-target="modal-wrap">
<i class="mdi mdi-vector-link"></i>
</a>
</div>
<div class="column" style="display:inline-block;width:32%">
<a id="stakebutton" class="button modal-button is-fullwidth" data-target="modal-stake">
<i class="fa fa-layer-group"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tile is-ancestor">
<div class="tile is-parent">
<div class="tile is-child box blur">
<div class="heading">
<div class="columns is-mobile is-multiline">
<div class="column">
<p class="is-size-6">
<span class="icon-text">
<i class="icon far fa-newspaper"></i>
</span>
<span>
<strong>News</strong> center
</span>
</p>
</div>
<div class="column">
<p class="is-size-6 has-text-right has-text-link">
<span class="icon-text">
<a href="https://server.duinocoin.com/news.html" target="_blank">
<i class="icon is-small fa fa-eye"></i>
<span>View all</span>
</a>
</span>
</p>
</div>
</div>
</div>
<div class="iframe-container" style="height: 100%;max-height:90%">
<iframe id="news_iframe" style="display: none" frameborder="0" allowtransparency="true">Please wait</iframe>
</div>
</div>
</div>
<div class="tile is-parent">
<div class="tile is-child box blur" style="padding: 0 !important;">
<div class="heading" style="margin: 1.25rem;">
<div class="columns is-mobile is-multiline">
<div class="column">
<p class="is-size-6" style="height: 1.2em;">
<span class="icon-text">
<i class="icon fa fa-coins"></i>
</span>
<span>
<strong>Duino-Coin</strong> prices
</span>
</p>
</div>
<div class="column is-one-quarter">
<div id="switch-container">
<label class="switch">
<input type="checkbox" onclick="toggleGraph();">
<span class="slider round">
</span>
</label>
</div>
</div>
</div>
</div>
<div style="max-height: 48em;" class="is-hidden" id="heightFix">
<canvas id="historicPrices" class="is-fullwidth is-hidden fadeIn"></canvas>
</div>
<div class="contain" style="margin: 1.25rem;" id="userData">
<div class="columns is-multiline is-mobile">
<div class="column is-full">
<p class="has-text-weight-normal icon-text">
<img class="icon" alt="DUCO Exchange" src="assets/ducoexchange.png">
<a href="https://exchange.duinocoin.com" target="_blank">
<span>
<span class="has-text-weight-bold">DUCO</span>
<span>Exchange</span>
</span>
</a>
<span class="has-text-success-dark" data-tooltip="Official exchange page">
<i class="fa fa-check-circle"></i>
</span>
</p>
<div class="columns is-mobile is-multiline">
<div class="column is-half-mobile">
<p id="ducousd_xmg" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
DUCO <i class="fa fa-arrows-alt-h"></i> XMG
</p>
</div>
<div class="column is-half-mobile">
<p id="ducousd_bch" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
DUCO <i class="fa fa-arrows-alt-h"></i> BCH
</p>
</div>
<div class="column is-half-mobile">
<p id="ducousd_trx" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
DUCO <i class="fa fa-arrows-alt-h"></i> TRX
</p>
</div>
<div class="column is-half-mobile">
<p id="ducousd_nano" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
DUCO <i class="fa fa-arrows-alt-h"></i> NANO
</p>
</div>
</div>
</div>
<div class="column is-half-mobile">
<p class="has-text-weight-normal icon-text">
<img class="icon" alt="FluffySwap" src="assets/fluffyswap.png">
<a href="https://fluffyswap.com" target="_blank">
<span>
<span class="has-text-weight-bold">Fluffy</span>
</span>
</a>
<span class="has-text-success-dark" data-tooltip="Official exchange page">
<i class="fa fa-check-circle"></i>
</span>
</p>
<p id="duco_fluffyswap" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
DUCO <i class="fa fa-arrows-alt-h"></i> all
</p>
</div>
<div class="column is-half-mobile">
<p class="has-text-weight-normal icon-text">
<img class="icon" alt="UbeSwap" src="assets/ubeswap.png">
<a href="https://info.ubeswap.org/pair/0x7703874bd9fdacceca5085eae2776e276411f171" target="_blank">
<span>
<span class="has-text-weight-bold">Ube</span>
</span>
</a>
</p>
<p id="duco_ubeswap" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
celoDUCO <i class="fa fa-arrows-alt-h"></i> mCUSD
</p>
</div>
<div class="column is-half-mobile">
<p class="has-text-weight-normal icon-text">
<img class="icon" alt="SunSwap" src="assets/sunswap.png">
<a href="https://sunswap.com/#/scan/detail/TWYaXdxA12JywrUdou3PFD1fvx2PWjqK9U" target="_blank">
<span>
<span class="has-text-weight-bold">Sun</span>
</span>
</a>
</p>
<p id="duco_justswap" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
wDUCO <i class="fa fa-arrows-alt-h"></i> TRX
</p>
</div>
<div class="column is-half-mobile">
<p class="has-text-weight-normal icon-text">
<img class="icon" alt="PancakeSwap" src="assets/pancake.png">
<a href="https://pancakeswap.finance/swap?inputCurrency=0xcf572ca0ab84d8ce1652b175e930292e2320785b" target="_blank">
<span>
<span class="has-text-weight-bold">Pancake</span>
</span>
</a>
</p>
<p id="duco_pancake" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
bscDUCO <i class="fa fa-arrows-alt-h"></i> BSC
</p>
</div>
<div class="column is-half-mobile">
<p class="has-text-weight-normal icon-text">
<img class="icon" alt="SushiSwap" src="assets/sushi.png">
<a href="https://medium.com/@johnny.mnemonic/guide-to-swapping-duino-coin-on-sushi-com-12bca3192ea2" target="_blank">
<span>
<span class="has-text-weight-bold">Sushi</span>
</span>
</a>
</p>
<p id="duco_sushi" class="title is-size-6">
Fetching data
</p>
<p class="subtitle is-size-7">
maticDUCO <i class="fa fa-arrows-alt-h"></i> MATIC
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<br>
</div>
<div class="footer-container blur is-hidden-mobile">
<div class="footer-content ">
<a href="https://status.duinocoin.com" target="_blank">
Server status
</a>
•
<a href="https://github.com/revoxhere/duino-coin#terms-of-service" target="_blank">
ToS & Privacy policy
</a>
•
<a class="modal-button" data-target="modal-credits">
Credits
</a>
</div>
</div>
<style>
.notification {
width: 300px;
position: fixed;
right: 1em;
bottom: 0.5em;
}
.red-dot {
height: 10px;
width: 10px;
background: red;
border-radius: 50%;
opacity: 0.9;
position: absolute;
right: 35%;
}
</style>
<div id="magi_notify" class="notification is-info" style="display:none">
<button class="delete" onclick="$(this).parent().fadeOut();"></button>
<b>Are you a CPU miner?</b><br>
Maybe our sister coin will suit your needs better - check out <a href="https://magi.duinocoin.com">Coin Magi</a>, also maintained by the Duino Team
</div>
<div id="modal-settings" class="modal modal-fx-fadeInScale">
<div class="modal-background"></div>
<div class="modal-content">
<div class="box blur">
<p class="modal-card-title mb-5">
<span class="icon-text">
<span class="icon">
<i class="fa fa-cog"></i>
</span>
<span>Settings</span>
</span>
</p>
<div class="content">
<p class="subtitle mb-1">
Account and appearance
</p>
<div class="columns is-multiline mb-0">
<div class="column is-half">
<input class="is-checkbox" id="showWarnings" type="checkbox">
<label for="showWarnings">Don't display warnings</label>
</div>
<div class="column is-half">
<input class="is-checkbox" id="disableAnims" type="checkbox">
<label for="disableAnims">Disable background animations</label>
</div>
<div class="column is-half">
<input class="is-checkbox" id="disableIoT" type="checkbox">
<label for="disableIoT">Disable Duino IoT</label>
</div>
<div class="column is-half">
Duino IoT <b>legacy</b> units:
<div class="dropdown">
<div class="dropdown-trigger">
<a>
<b style="text-transform: initial;" id="temp-unit">Celcius</b>
<svg class="svg-inline--fa fa-edit fa-w-18" aria-hidden="true" focusable="false" data-prefix="fa" data-icon="edit" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg="">
<path fill="currentColor" d="M402.6 83.2l90.2 90.2c3.8 3.8 3.8 10 0 13.8L274.4 405.6l-92.8 10.3c-12.4 1.4-22.9-9.1-21.5-21.5l10.3-92.8L388.8 83.2c3.8-3.8 10-3.8 13.8 0zm162-22.9l-48.8-48.8c-15.2-15.2-39.9-15.2-55.2 0l-35.4 35.4c-3.8 3.8-3.8 10 0 13.8l90.2 90.2c3.8 3.8 10 3.8 13.8 0l35.4-35.4c15.2-15.3 15.2-40 0-55.2zM384 346.2V448H64V128h229.8c3.2 0 6.2-1.3 8.5-3.5l40-40c7.6-7.6 2.2-20.5-8.5-20.5H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V306.2c0-10.7-12.9-16-20.5-8.5l-40 40c-2.2 2.3-3.5 5.3-3.5 8.5z"></path>
</svg>
</a>
</div>
<div class="dropdown-menu" id="dropdown-menu" role="menu">
<div class="dropdown-content" id="temp-unit-select">
<a href="#!" class="dropdown-item">Celcius</a>
<a href="#!" class="dropdown-item">Fahrenheit</a>
<a href="#!" class="dropdown-item">Kelvin</a>
<a href="#!" class="dropdown-item">Rankine</a>
</div>
</div>
</div>
</div>
<div class="column">
<a class="button modal-button" data-target="modal-changepass" class="button">
<i class="icon is-small fa fa-key"></i>
<span>Change password</span>
</a>
</div>
<div class="column">
<a class="button" onclick="logout()" class="button">
<i class="icon is-small fa fa-sign-out-alt"></i>
<span>Log out</span>
</a>
</div>
</div>
<div class="columns">
<div class="column">
<p class="subtitle is-size-6 mt-0">Account creation date: <b id="account_creation"></b></p>
</div>
<div class="column is-narrow mt-0">
<p class="subtitle is-size-6">Last login: <b id="last_login"></b></p>
</div>
</div>
<p class="subtitle mb-1">
Useful links and apps
</p>
<div class="buttons">
<a href="https://server.duinocoin.com/webminer.html" class="button">
<img class="icon is-small" src="assets/webminer.png">
<span>Online Duino-Coin miner</span>
</a>
<a href="https://server.duinocoin.com/miniminer.html" class="button">
<img class="icon is-small" src="assets/miniminer.png">
<span>Mini Duino-Coin miner (for phones)</span>
</a>
<a href="https://explorer.duinocoin.com" target="_blank" class="button">
<img src="assets/explorer.png" class="icon is-small">
<span>Duino-Coin network stats & explorer</span>
</a>
<a href="https://duco.pcgeek.pl/" target="_blank" class="button">
<img src="assets/ducopcgeek.png" class="icon is-small">
<span>Duino-Coin in Charts</span>
</a>
<a href="https://siunus.github.io/duco-monitor/" target="_blank" class="button">
<i class="icon fa fa-search is-small"></i>
<span>DUCO Monitor</span>
</a>
<a href="https://furim.xyz/" target="_blank" class="button">
<img src="assets/furim_faucet.png" class="icon is-small">
<span>Furime Services</span>
</a>
<a href="https://magi.duinocoin.com/" target="_blank" class="button">
<img src="assets/magi.png" class="icon is-small">
<span>Duino-Coin x Coin Magi</span>
</a>
</div>
<p class="subtitle mb-1">
Faucets
</p>
<div class="buttons">
<a href="https://duco-faucet.pcgeek.pl" target="_blank" class="button">
<img src="assets/amogus_faucet.png" class="icon is-small">
<span>Amogus Faucet</span>
</a>
<a href="https://furim.xyz/faucet.html" target="_blank" class="button">
<img src="assets/furim_faucet.png" class="icon is-small">
<span>Furime Faucet</span>
</a>
<a href="https://pastelindustries.pl/faucet.php" target="_blank" class="button">
<img src="assets/pastelfaucet.png" class="icon is-small">
<span>Pastel Faucet</span>
</a>
<a href="https://faucet.duinocoin.com" target="_blank" class="button">
<span>Beyondtoshi's faucet</span>
</a>
<a href="https://duinocoin.com/faucet" target="_blank" class="button">
<span>Official faucet for new users</span>
</a>
</div>
<p class="subtitle mb-1">
Duino-Coin socials
</p>
<div class="buttons">
<a href="https://github.com/revoxhere/duino-coin" target="_blank" class="button">
<i class="fab fa-fw fa-github icon is-small"></i>
</a>
<a href="https://discord.gg/kvBkccy" target="_blank" class="button">
<i class="fab fa-fw fa-discord icon is-small"></i>
</a>
<a href="https://twitter.com/DuinoCoin/" target="_blank" class="button">
<i class="fab fa-fw fa-twitter icon is-small"></i>
</a>
<a href="https://www.reddit.com/r/Duinocoin/" target="_blank" class="button">
<i class="fab fa-fw fa-reddit icon is-small"></i>
</a>
<a href="https://www.instagram.com/duino_coin_official/" target="_blank" class="button">
<i class="fab fa-fw fa-instagram icon is-small"></i>
</a>
<a href="https://play.google.com/store/apps/details?id=com.protothis.duinocoin" target="_blank" class="button">
<i class="fa fa-fw fa-mobile icon is-small"></i>
</a>
<a href="https://duinocoin.com/donate" target="_blank" class="button">
<i class="fa fa-fw fa-heart icon is-small" style="color:#eb4d4b;"></i>
<span>Support us</span>
</a>
<a href="https://store.duinocoin.com" target="_blank" class="button">
<i class="fa fa-fw fa-tshirt icon is-small" style="color:#6ab04c;"></i>
<span>Duino merch</span>
</a>
</div>
</div>
</div>
</div>
<button class="modal-close is-large" aria-label="close"></button>
</div>
<div id="modal-credits" class="modal modal-fx-fadeInScale">
<div class="modal-background"></div>
<div class="modal-content">
<div class="box blur">
<p class="modal-card-title mb-5">
<span class="icon-text">
<span class="icon">
<img src="https://wallet.duinocoin.com/assets/duco.svg">
</span>
<span>Duino-Coin </span>
<span class="has-text-weight-light">
Web Wallet
</span>
</span>
</p>
<div class="content">
<span class="has-text-weight-bold">
Maintained by
<a href="https://revoxhere.github.io">
revox
</a>
</span>
from
<span class="has-text-weight-bold">
the
<a href="https://duinocoin.com/team">
Duino team
</a> 🔧
</span><br>
Background photos
<span class="has-text-weight-bold">
shot by
<a href="https://www.instagram.com/vlegle/">
Yennefer
</a>
<span class="has-text-weight-normal">
and from the game
</span>
Firewatch 📸
</span><br><br>
Made with the
<span class="has-text-weight-bold">
<a href="https://bulma.io">
Bulma
</a>
CSS framework
</span><br>
<span class="has-text-weight-bold">
JavaScript work
</span>
assisted with the help of
<span class="has-text-weight-bold">
<a href="https://jquery.com">
jQuery
</a>
</span><br><br>
This page is
<span class="has-text-weight-bold">
open-source
</span>
- you can
<span class="has-text-weight-bold">
improve it
<a href="https://github.com/revoxhere/duco-webservices">
on GitHub
</a>
</span>
<p>
MIT licensed • 2019-2024 the Duino-Coin Project
</p>
</div>
</div>
</div>
<button class="modal-close is-large" aria-label="close"></button>
</div>
<div id="modal-shop" class="modal modal-fx-fadeInScale">
<div class="modal-background"></div>
<div class="modal-content">
<div class="box blur">
<p class="modal-card-title mb-5">
<span class="icon-text">
<span class="icon">
<i class="fa fa-shopping-bag"></i>
</span>
<span>Item shop</span>
</span>
<div class="content">
Here you can buy various <b>official</b> things with your Duino-Coins. Some items are only for cosmetic purposes, but some provide extra functionality to your accounts, such as higher rewards or increased worker limits.<br>
<b>Please note</b> that purchased items cannot be returned.
</div>
<div class="columns">
<div class="column">
<div class="select">
<select id="categories">
<option value="kolka">Kolka</option>
<option value="cosmetic">Cosmetic</option>
<option value="card">Card</option>
<option value="upgrade">Upgrade</option>
</select>
</div>
</div>
<div class="column">
<div class="is-flex is-align-items-center">
Sort price by:
<div class="select">
<select id="sortPrices">
<option value="asc">Ascending</option>
<option value="des">Descending</option>
</select>
</div>
</div>
</div>
</div>
</p>
<div class="columns is-multiline" id="shop_items">
<div class="columns is-centered">
<div class="column"></div>
<div class="column">
<p class="title">Fetching data...</p>
</div>
<div class="column"></div>
</div>
</div>
<div class="columns is-centered">
<div class="column is-full">
<span id="shop_text" class="subtitle"></span>
</div>
</div>
</div>
</div>
<button class="modal-close is-large" aria-label="close"></button>
</div>
<div id="modal-achievements" class="modal modal-fx-fadeInScale">