forked from DigiByte-Core/DigiByte.org
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
2046 lines (1560 loc) · 114 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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<script src="js/languagerouter.js"></script>
<!--- Google analytics
================================================== -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129492671-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129492671-3', { 'anonymize_ip': true });
</script>
<!--- Basic page needs
================================================== -->
<title>DigiByte Blockchain | DGB Coin | DigiAssets | Digi-ID</title>
<meta charset="utf-8">
<meta name="description" content="DigiByte official website. DigiByte is an open-source and highly decentralized global blockchain that hosts DGB Coin, DigiAssets, Digi-ID and more.">
<meta name="keywords" content="DigiByte, DGB, Blockchain, Decentralized, Coin, Asset, Digital, Crypto, Currency, DigiAssets, Digi-ID, Cybersecurity, Authentication, Smart Contract, dApp, Payments, Wallet, Community, Exchange, Buy, Price, Official">
<link rel="canonical" href="https://digibyte.org/" />
<!-- Mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor1g.css">
<link rel="stylesheet" href="css/main3p.css">
<!-- Scripts
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- RSS Feed
================================================== -->
<link rel="alternate" type="application/rss+xml" title="DigiByte News" href="https://digibyte.org/news.xml" />
<!-- Favicons
================================================== -->
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<link rel="manifest" href="favicons/site.webmanifest">
<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#002352">
<meta name="apple-mobile-web-app-title" content="DigiByte">
<meta name="application-name" content="DigiByte">
<meta name="msapplication-TileColor" content="#002352">
<meta name="msapplication-config" content="favicons/browserconfig.xml">
<meta name="theme-color" content="#002352">
<!-- Twitter preview
================================================== -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="DigiByte Blockchain | DGB Coin | DigiAssets | Digi-ID" />
<meta name="twitter:description" content="DigiByte is an open-source and highly decentralized global blockchain that hosts DGB Coin, DigiAssets, Digi-ID and more." />
<meta name="twitter:image" content="https://digibyte.org/favicons/twitter.png" />
<!-- Facebook preview
================================================== -->
<meta property="og:image" content="https://digibyte.org/favicons/og-image.jpg">
<meta property="og:image:width" content="955">
<meta property="og:image:height" content="500">
<meta property="og:description" content="DigiByte is an open-source and highly decentralized global blockchain that hosts DGB Coin, DigiAssets, Digi-ID and more.">
<meta property="og:title" content="DigiByte Blockchain | DGB Coin | DigiAssets | Digi-ID">
<meta property="og:url" content="https://digibyte.org/">
</head>
<body id="top">
<!-- Preloader
================================================== -->
<div id="preloader">
<div id="loader">
<div><img src="images/preloader.svg" loading="eager" alt="Preloader logo"></div>
</div>
</div>
<!-- Ticker
================================================== -->
<header class="pticker">
<div class="row">
<div includeHTML="langmenu/ticker.html"></div>
</div>
</header>
<!-- Header
================================================== -->
<header class="s-header">
<div class="row">
<div class="header-logo">
<a class="site-logo smoothscroll" href="#top" onClick="homeButton()"><img src="images/logo.svg" loading="eager" alt="Home">
</a>
</div>
<nav class="header-nav-wrap">
<ul class="header-main-nav">
<li id="dbc"><a class="ssbc" href="#blockchain" title="Blockchain">Blockchain</a></li>
<li id="mbc"><a class="ssbcm" href="#blockchain" title="Blockchain">Blockchain</a></li>
<li><a class="smoothscroll" href="#currency" title="Currency">Currency</a></li>
<li><a class="smoothscroll" href="#digiassets" title="DigiAssets">DigiAssets</a></li>
<li><a class="smoothscroll" href="#digi-id" title="Digi-ID">Digi-ID</a></li>
<li><a class="smoothscroll" href="#community" title="Community">Community</a></li>
<li><a class="smoothscroll" href="#downloads" title="Downloads">Downloads</a></li>
</ul>
<div class="dropdown header-cta" id="langmenu">
<a href="javascript:void(0)" onclick="lmenu()" class="dropbtn" id="lmenuname"></a>
<div includeHTML="langmenu/desktop.html"></div>
</div>
<div includeHTML="langmenu/mobile.html"></div>
</nav>
<a class="header-menu-toggle" href="#"><span>Menu</span></a>
</div>
</header>
<!-- Home
================================================== -->
<section id="home" class="s-home target-section" data-parallax="scroll" data-image-src="images/hero-bg4.jpg" data-natural-width="3200" data-natural-height="1590" data-position-y="center" data-speed="0.0" data-z-index="1">
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<div class="mapps">
<div class="mappscell">
<a class="smoothscroll" href="#software">
<img class="mappsimg" src="images/icons/software.svg" loading="eager" alt="Software Wallets">
</a>
</div>
<div class="mappscell">
<a class="smoothscroll" href="#hardware">
<img class="mappsimg" src="images/icons/hardware.svg" loading="eager" alt="Hardware Wallets">
</a>
</div>
</div>
<div class="home-content__left">
<h1>
More secure, Faster,<br/>
Forward thinking.
</h1>
<h3>
DigiByte is more than a faster digital currency. It is an innovative blockchain that can be used for digital assets, smart contracts, decentralized applications and secure authentication.
</h3>
<div class="home-content__btn-wrap">
<a href="#about" class="btn btn--primary home-content__btn smoothscroll">
Learn More
</a>
<a href="#ecosystem" class="btn btn--primary home-content__btn smoothscrollup">
Buy DGB
</a>
</div>
<a href="docs/infopaper.pdf" target="_blank" class="infopaper"><i class="fab fa-readme"></i> Read the info paper</a>
</div>
<!-- <div class="home-content__right">
<img src="images/hero-app-screens-800.png" alt="DigiByte App" srcset="images/hero-app-screens-800.png 1x, images/hero-app-screens-1600.png 2x">
</div> -->
</div>
<ul class="home-content__social">
<li><a href="https://digibytefoundation.io" target="_blank">Foundation</a></li>
<li><a href="https://www.dgballiance.org" target="_blank">Alliance</a></li>
<li><a href="https://dgbat.org" target="_blank">DGBAT</a></li>
<li><a href="https://www.dgbwiki.com" target="_blank">Wiki</a></li>
<li><a href="https://dgbsupport.digiassetx.com" data-lity>Support</a></li>
</ul>
</div>
<a href="#footer" class="home-scroll smoothscroll">
<span class="home-scroll__icon"></span>
</a>
</section>
<!-- About
================================================== -->
<section id="about" class="s-about target-section">
<a href="#footer" class="home-scroll2 smoothscroll">
<span class="home-scroll__icon"></span>
</a>
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">
What makes DigiByte stronger than others?
</h1>
<p class="lead">
DigiByte is a rapidly growing open-source blockchain created in late 2013 and released in early 2014. After 9 years of forward thinking development, DigiByte has become one of the safest, fastest, longest and most decentralized <a href="https://wikipedia.org/wiki/Unspent_transaction_output" target="_blank">UTXO</a> blockchain in existence.
</p>
</div>
</div>
<div class="row wide about-desc" data-aos="fade">
<div class="col-full slick-slider about-desc__slider">
<div class="about-desc__slide">
<h3 class="item-title">Truly decentralized.</h3>
<p>
DigiByte has never been funded through an <a href="https://wikipedia.org/wiki/Initial_coin_offering" target="_blank">ICO</a> or significant amount of <a href="https://www.dgbwiki.com/index.php?title=DigiByte_History#The_Launch" target="_blank">premined coins</a>. There is no CEO or a company controlling the DigiByte blockchain. It is a volunteer based and global community driven project.
</p>
</div>
<div class="about-desc__slide">
<h3 class="item-title">More secure.</h3>
<p>
DigiByte uses 5 cryptographic algorithms and <a href="https://www.dgbwiki.com/index.php?title=DigiShield" target="_blank">real time difficulty adjustment</a> to prevent malicious mining centralization and hash power fluctuation. One of which is Odocrypt that changes itself every 10 days for ASIC resistance.
</p>
</div>
<div class="about-desc__slide">
<h3 class="item-title">Much faster.</h3>
<p>
DigiByte blocks occur every 15 seconds which is 40x faster than Bitcoin and 10x faster than Litecoin. Early <a href="https://wikipedia.org/wiki/SegWit" target="_blank">SegWit</a> implementation and blockchain rigidity enable up to <a href="https://www.dgbwiki.com/index.php?title=DigiSpeed" target="_blank">1066</a> on-chain transactions per second with negligible fees.
</p>
</div>
<div class="about-desc__slide">
<h3 class="item-title">Forward thinking.</h3>
<p>
Over the past 7 years, DigiByte has repeatedly set itself apart with multiple blockchain firsts, such as <a href="https://www.dgbwiki.com/index.php?title=DigiShield" target="_blank">DigiShield</a> guard, <a href="https://www.dgbwiki.com/index.php?title=MultiAlgo" target="_blank">MultiAlgo</a> mining, <a href="https://www.dgbwiki.com/index.php?title=DigiSync" target="_blank">SegWit</a> implementation, <a href="https://www.dgbwiki.com/index.php?title=Odocrypt" target="_blank">Odocrypt</a> algorithm, <a href="https://www.dgbwiki.com/index.php?title=Dandelion%2B%2B" target="_blank">Dandelion++</a> privacy protocol, <a href="#digiassets" class="smoothscroll">DigiAssets</a> and <a href="#digi-id" class="smoothscroll">Digi-ID</a>.
</p>
</div>
</div>
</div>
</section>
<!-- What is DigiByte Video
================================================== -->
<section class="s-about-how target-section" id="blockchain">
<div class="row">
<div class="col-full video-bg" data-aos="zoom-in">
<div class="shadow-overlay"></div>
<a class="btn-video" href="https://www.youtube.com/embed/bsHA7TBbbWE?autoplay=1&loop=1&modestbranding=1&iv_load_policy=3&rel=0&showinfo=0" data-lity>
<span class="video-icon"></span>
</a>
<div class="stats">
<div class="item-stats">
<span class="item-stats__num">
What is DigiByte?
</span>
<span class="item-stats__title">
Watch the introduction video
</span>
</div>
</div>
</div>
</div>
<!-- Blockchain
================================================== -->
<div class="row process-wrap">
<div class="section-header align-center has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">
This is how the DigiByte blockchain works.
</h1>
<p class="lead">
The three layers are the most innovative parts of the DigiByte blockchain providing the network infrastructure, security and communications to function with cutting edge speed.
</p>
</div>
</div>
<div class="process" data-aos="fade">
<div class="process__steps block-1-2 block-tab-full group">
<div class="col-block step">
<h3 class="item-title">Applications / DigiAssets.</h3>
<p>The top layer is like an app store with clear real-world uses. All types of digital assets can be created with the <a href="#digiassets" class="smoothscroll">DigiAssets</a> protocol on top of the DigiByte blockchain. Decentralized applications (dApps) can be built on top of the DigiByte blockchain. Also smart contracts that leverage the rigidity and security of the DigiByte blockchain can be encoded easily.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Digital asset / Public ledger.</h3>
<p>The middle layer provides security and administration. A <strong>Digi</strong>tal <strong>Byte</strong> of data, a representation of larger data or a unit that holds value, and cannot be counterfeited, duplicated or hacked. An immutable public ledger where all transactions of DigiBytes are recorded. DigiByte uses <a href="https://www.dgbwiki.com/index.php?title=DigiByte_Mining_Breakdown" target="_blank">five proof of work algorithms</a> for security. New DigiBytes come from mining only.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Core protocol / Global network.</h3>
<p>The bottom layer provides communication and operating procedures. A very low-level way nodes on the DigiByte global network communicate. Thousands of people are running DigiByte software all across the planet. Any server, computer, tablet or mobile phone connected to the DigiByte network becomes a node that helps relay transactions.
<a href="https://www.dgbwiki.com/index.php?title=Port_forwarding_process_for_your_DigiByte_node" target="_blank">Start contributing to the DigiByte blockchain in the optimal way</a>.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Open source / Permissionless.</h3>
<p>Just like <a href="https://github.com/DigiByte-Core/DGBio" target="_blank">this website</a>, the DigiByte blockchain is completely open source and free to use released under the <a href="https://opensource.org/licenses/mit-license.php" target="_blank">MIT license</a>, which gives you the power to run and modify the software. Transparency allows for independent verification of binaries and their corresponding source code.<br />
<a href="https://github.com/DigiByte-Core/digibyte" target="_blank">DigiByte Protocol on GitHub</a>.
<br />
<a href="https://github.com/DigiByte-Core" target="_blank">DigiByte Core Development on GitHub</a>.
</p>
</div>
</div>
</div>
</div>
<div class="row s-stats" data-aos="fade">
<div class="stitle">DigiByte blockchain stats</div>
<div class="block-1-3">
<div class="col-block stats__col">
<div class="stats__count">9</div>
<div class="stats_text"><a href="https://www.dgbwiki.com/index.php?title=DigiByte_History" target="_blank">years surpassed</a></div>
</div>
<div class="col-block stats__col">
<div class="stats__count" includeHTML="stats/blocks/blockinfo.php">11062775</div>
<div class="stats_text"><a href="https://chainz.cryptoid.info/dgb/" target="_blank">blocks produced</a></div>
</div>
<div class="col-block stats__col">
<div class="stats__count" includeHTML="stats/nodes/nodeinfo.php">303795</div>
<div class="stats_text"><a href="https://www.dgbwiki.com/index.php?title=DigiByte_Release_Stats" target="_blank">nodes downloaded</a></div>
</div>
</div>
</div>
<div class="testimonials-wrap" data-aos="fade" id="history">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="display-2">The history of DigiByte.</h2>
<p class="lead">
Discover major development milestones of the DigiByte blockchain.
</p>
</div>
</div>
<div class="row testimonials">
<div class="col-full slick-slider testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/development.png" loading="lazy" width="72" height="72" alt="Development" class="testimonials__avatar">
<p>Full-time development has been started to build the future of the DigiByte blockchain.</p>
<div class="testimonials__author">
<span class="testimonials__name">October, 2013</span>
<a href="https://twitter.com/jaredctate/status/1190673943876841475" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/launch.png" loading="lazy" width="72" height="72" alt="Launch" class="testimonials__avatar">
<p>Genesis block was successfully mined and the DigiByte blockchain officially launched. </p>
<div class="testimonials__author">
<span class="testimonials__name">January 10, 2014</span>
<a href="https://github.com/digibyte/digibyte/blob/master/src/chainparams.cpp#L40" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/digishield.png" loading="lazy" width="72" height="72" alt="DigiShield" class="testimonials__avatar">
<p>DigiShield activated to use real time difficulty adjustment against hash fluctuations.</p>
<div class="testimonials__author">
<span class="testimonials__name">February 28, 2014</span>
<a href="https://www.dgbwiki.com/index.php?title=DigiShield" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/multialgo.png" loading="lazy" width="72" height="72" alt="MultiAlgo" class="testimonials__avatar">
<p>MultiAlgo activated to use 5 different algorithms to prevent mining centralization.</p>
<div class="testimonials__author">
<span class="testimonials__name">September 1, 2014</span>
<a href="https://www.dgbwiki.com/index.php?title=MultiAlgo" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/multishield.png" loading="lazy" width="72" height="72" alt="MultiShield" class="testimonials__avatar">
<p>MultiShield activated to extend DigiShield protection over all the 5 mining algorithms.</p>
<div class="testimonials__author">
<span class="testimonials__name">December 10, 2014</span>
<a href="https://www.dgbwiki.com/index.php?title=MultiShield" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/digispeed.png" loading="lazy" width="72" height="72" alt="DigiSpeed" class="testimonials__avatar">
<p>DigiSpeed activated to reduce block time to 15 seconds for faster transactions.</p>
<div class="testimonials__author">
<span class="testimonials__name">December 4, 2015</span>
<a href="https://www.dgbwiki.com/index.php?title=DigiSpeed" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/segwit.png" loading="lazy" width="72" height="72" alt="SegWit" class="testimonials__avatar">
<p>SegWit activated before Bitcoin and Litecoin for the effective block size usage.
</p>
<div class="testimonials__author">
<span class="testimonials__name">April 28, 2017</span>
<a href="https://www.dgbwiki.com/index.php?title=DigiSync" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/digi-id.png" loading="lazy" width="72" height="72" alt="Digi-ID" class="testimonials__avatar">
<p>Digi-ID launched to empower users to effortlessly sign-in to websites and more.
</p>
<div class="testimonials__author">
<span class="testimonials__name">May, 2018</span>
<a href="https://www.dgbwiki.com/index.php?title=Digi-ID" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/digiassets.png" loading="lazy" width="72" height="72" alt="DigiAssets" class="testimonials__avatar">
<p>DigiAssets launched to allow for the decentralized issuance of assets and more.
</p>
<div class="testimonials__author">
<span class="testimonials__name">April, 2019</span>
<a href="https://www.dgbwiki.com/index.php?title=DigiAssets" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/dandelion.png" loading="lazy" width="72" height="72" alt="Dandelion++" class="testimonials__avatar">
<p>Dandelion++ protocol implemented which prevents IP and physical location tracking.
</p>
<div class="testimonials__author">
<span class="testimonials__name">May 3, 2019</span>
<a href="https://www.dgbwiki.com/index.php?title=Dandelion%2B%2B" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/odocrypt.png" loading="lazy" width="72" height="72" alt="Odocrypt" class="testimonials__avatar">
<p>Odocrypt activated which changes itself every 10 days for superior ASIC resistance.
</p>
<div class="testimonials__author">
<span class="testimonials__name">July 21, 2019</span>
<a href="https://www.dgbwiki.com/index.php?title=Odocrypt" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/roadmap.png" loading="lazy" width="72" height="72" alt="Roadmap" class="testimonials__avatar">
<p>A list of items that we want to do for DigiByte. Browse and start to contribute.
</p>
<div class="testimonials__author">
<span class="testimonials__name">Roadmap</span>
<a href="https://github.com/DigiByte-Core/DigiByte-Pipeline" target="_blank" class="testimonials__link">Learn more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Currency
================================================== -->
<section id="currency" class="s-features target-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">
A digital currency<br/>you would absolutely love.
</h1>
<p class="lead">
DigiByte (DGB) is a highly scalable peer-to-peer digital currency that enables industry-leading transaction speeds with negligible fees. DigiByte is the best means of making digital payments.
</p>
</div>
<a class="btn btn--primary playb" href="https://www.youtube.com/embed/RSEijQXSfZQ?autoplay=1&loop=1&modestbranding=1&iv_load_policy=3&rel=0&showinfo=0" data-lity><i class="fas fa-play"></i> Learn by watching</a>
</div>
<div class="row features block-1-3 block-m-1-2" data-aos="fade">
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-phone-laptop"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Easy to use.</h3>
<p>Getting started to use DigiByte is even easier than sending an SMS. You can send and receive DigiBytes using the devices you already know and love. All you need is installing a <a class="smoothscroll" href="#downloads">DigiByte supported wallet</a> then click scan, scan the QR code and send DigiByte. As easy as 1..2..3.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-thumbs-up"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Not an ICO.</h3>
<p>DigiByte has never been funded through an <a href="https://wikipedia.org/wiki/Initial_coin_offering" target="_blank">ICO</a> or significant amount of premined coins (<a href="https://www.dgbwiki.com/index.php?title=DigiByte_History#The_Launch" target="_blank">0% remaining</a>). There is no CEO or a company controlling the DigiByte blockchain. <a class="smoothscrollup" href="#jared">The founder</a>, <a class="smoothscrollup" href="#developers">developers</a> and the <a class="smoothscroll" href="#community">community</a> are unpaid volunteers that eliminate the bankrupt risk.
</p>
</div>
</div> <div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-tachometer-alt-fastest"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Much faster.</h3>
<p>DigiByte transactions are confirmed in approx. 15 seconds, which is 40 times faster than Bitcoin and 10 times faster than Litecoin. <a href="https://wikipedia.org/wiki/SegWit" target="_blank">SegWit</a> enables up to <a href="https://www.dgbwiki.com/index.php?title=DigiSpeed" target="_blank">1066</a> on-chain transactions per second and negligible fees make DigiByte the ideal currency for daily payments.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-shield-alt"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Always secure.</h3>
<p>DigiByte has been built on the uncrackable technology of the Bitcoin blockchain and implemented various advanced enhancements over it such as <a href="https://www.dgbwiki.com/index.php?title=DigiShield" target="_blank">DigiShield</a> guard, <a href="https://www.dgbwiki.com/index.php?title=MultiAlgo" target="_blank">MultiAlgo</a> mining and the <a href="https://www.dgbwiki.com/index.php?title=Odocrypt" target="_blank">Odocrypt</a> algorithm. Also <a href="https://www.dgbwiki.com/index.php?title=Dandelion%2B%2B" target="_blank">Dandelion++</a> privacy protocol helps keep you safe by hiding your IP and physical location. <a href="https://www.dgbwiki.com/index.php?title=What_makes_DigiByte_More_Secure%3F" target="_blank">Learn more</a>.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-digging"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Mineable.</h3>
<p>DigiByte is a 100% <a href="https://wikipedia.org/wiki/Proof_of_work" target="_blank">Proof of Work</a> (PoW) blockchain that can be mined with five algorithms called Sha256, Scrypt, Skein, Qubit and Odocrypt. <a href="https://www.dgbwiki.com/index.php?title=MultiAlgo" target="_blank">MultiAlgo</a> mining contributes to decentralization, security of the network and gives you the freedom to use different kind of hardware's such as an ASIC a FPGA or a GPU. <a href="https://www.dgbwiki.com/index.php?title=DigiByte#DigiByte_Mining" target="_blank">Learn more</a>.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-coins"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Manageable units.</h3>
<p>Compared to 21 million Bitcoin, 21 billion DigiByte (1000:1 ratio to BTC) have been designed to be ready for mass adoption. DigiByte block rewards reduces by 1% every month instead of halving every 4 years. All 21 billion DigiByte will be mined by the year 2035. After 2035 the miners will then rely on transaction fees alone. <a href="https://www.dgbwiki.com/index.php?title=Why_so_many_coins%3F_21Billion" target="_blank">Learn more</a>.
</p>
</div>
</div>
</div>
<div class="testimonials-wrap" data-aos="fade" id="ecosystem">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="display-2">Quick picks from the DigiByte Ecosystem.</h2>
<p class="lead">
All exchanges and services that support DigiByte can be found on the <a href="https://www.dgbwiki.com/index.php?title=DigiByte#DigiByte_Ecosystem" target="_blank">DigiByte Wiki</a>.
</p>
</div>
</div>
<div class="row testimonials">
<div class="col-full slick-slider testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/bittrex2.png" loading="lazy" width="72" height="72" alt="Bittrex" class="testimonials__avatar">
<p>Bittrex provides a proven and secure platform for its customers to access the opportunities of DigiByte trading.</p>
<div class="testimonials__author">
<span class="testimonials__name">Bittrex</span>
<a href="https://bittrex.com" target="_blank" class="testimonials__link">bittrex.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/binance.png" loading="lazy" width="72" height="72" alt="Binance" class="testimonials__avatar">
<p>Binance is one of the biggest and most powerful crypto trading platforms offering DigiByte trading options.</p>
<div class="testimonials__author">
<span class="testimonials__name">Binance</span>
<a href="https://www.binance.com" target="_blank" class="testimonials__link">binance.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/cryptocom.png" loading="lazy" width="72" height="72" alt="Crypto.com" class="testimonials__avatar">
<p>Crypto.com is one of the fastest growing all in one crypto platforms where you can trade DGB easily.</p>
<div class="testimonials__author">
<span class="testimonials__name">Crypto.com</span>
<a href="https://crypto.com" target="_blank" class="testimonials__link">crypto.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/sequoir.png" loading="lazy" width="72" height="72" alt="Sequoir" class="testimonials__avatar">
<p>With Sequoir's simple and secure process you can buy and sell DigiByte with USD, GBP or Euro.</p>
<div class="testimonials__author">
<span class="testimonials__name">Sequoir</span>
<a href="https://www.sequoir.com" target="_blank" class="testimonials__link">sequoir.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/abra.png" loading="lazy" width="72" height="72" alt="Abra" class="testimonials__avatar">
<p>Abra is making investing in DigiByte easier, more secure, and accessible for everyone. Available in 150 countries.</p>
<div class="testimonials__author">
<span class="testimonials__name">Abra</span>
<a href="https://www.abra.com/cryptocurrency/digibyte/" target="_blank" class="testimonials__link">abra.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/coinfield.png" loading="lazy" width="72" height="72" alt="CoinField" class="testimonials__avatar">
<p>CoinField provides USD, EUR, GBP, CAD and USDT pairs for DigiByte trading in 193 countries.</p>
<div class="testimonials__author">
<span class="testimonials__name">CoinField</span>
<a href="https://www.coinfield.com" target="_blank" class="testimonials__link">coinfield.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/okex2.png" loading="lazy" width="72" height="72" alt="Okex" class="testimonials__avatar">
<p>OKX is one of the leading cryptocurrency exchanges which offer DigiByte trading.</p>
<div class="testimonials__author">
<span class="testimonials__name">OKX</span>
<a href="https://www.okx.com" target="_blank" class="testimonials__link">okx.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/kucoin2.png" loading="lazy" width="72" height="72" alt="KuCoin" class="testimonials__avatar">
<p>KuCoin is one of the most advanced cryptocurrency exchanges to trade DigiByte.</p>
<div class="testimonials__author">
<span class="testimonials__name">KuCoin</span>
<a href="https://www.kucoin.com" target="_blank" class="testimonials__link">kucoin.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/bitvavo3.png" loading="lazy" width="72" height="72" alt="Bitvavo" class="testimonials__avatar">
<p>Bitvavo is a digital asset exchange that allows you to buy, sell and trade DigiByte in the EU.</p>
<div class="testimonials__author">
<span class="testimonials__name">Bitvavo</span>
<a href="https://bitvavo.com" target="_blank" class="testimonials__link">bitvavo.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/changeangel2.png" loading="lazy" width="72" height="72" alt="Changeangel" class="testimonials__avatar">
<p>Changeangel is a crypto to crypto, wallet to wallet, swap exchange service that supports community projects.</p>
<div class="testimonials__author">
<span class="testimonials__name">Changeangel</span>
<a href="https://changeangel.io" target="_blank" class="testimonials__link">changeangel.io</a> - <a href="https://changeangel.io/buy-dgb" target="_blank" class="testimonials__link">buy dgb</a>
</div>
</div>
</div>
</div>
<div class="lrmargin25" data-aos="fade">
<div class="item-feature__text max800 align-center">
<p class="disc"><i class="fas fa-exclamation-triangle"></i> <strong>Exchange Disclaimer</strong><br>The exchanges introduced here or on <a href="https://coinmarketcap.com/currencies/digibyte/markets/" target="_blank">CoinMarketCap</a> are for informational purposes only and they are not affiliated with the DigiByte community. Any exchange <a href="docs/integrationguide.pdf" target="_blank">can list DigiByte</a> without permission. Please always do your own research before using them, then store your DGB on a <a class="smoothscroll" href="#downloads">personal wallet</a>.
</p>
</div>
</div>
</div>
</section>
<!-- DigiAssets
================================================== -->
<section id="digiassets" class="s-pricing target-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">
A simplified way<br/>to create digital assets.
</h1>
<p class="lead">
DigiAssets is a secure, scalable layer on top of the DigiByte blockchain that allows for the decentralized issuance of digital assets, tokens, smart contracts, digital identity and more.
</p>
</div>
<a class="btn btn--primary playb" href="https://www.youtube.com/embed/JoqOn5gTiqE?autoplay=1&loop=1&modestbranding=1&iv_load_policy=3&rel=0&showinfo=0" data-lity><i class="fas fa-play"></i> Learn by watching</a>
</div>
<div class="row features block-1-3 block-m-1-2" data-aos="fade">
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-photo-video"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Limitless possibilities.</h3>
<p>DigiAssets can be used to securely represent anything we find in the physical world. From tangible assets such as real estate or cars, through to scarce digital pieces of art. Signed documents such as deeds and medical bills can be protected.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-chart-line"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Growing confidently.</h3>
<p>DigiAssets as an ecosystem and platform already has interested parties either planning on or currently building platforms in real estate, finance, remittance, identity, point of sale, racing, trade, healthcare, supply chain, government and more.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-badge-check"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Solid technology.</h3>
<p>DigiAssets leverages unique aspects of a truly decentralized blockchain only found within a permissionless blockchain like DigiByte. This allows DigiAssets to be more secure, scalable and decentralized than any other platform in the market.
</p>
</div>
</div>
</div>
<div class="lrmargin25" data-aos="fade">
<h1 align="center">Get started with DigiAssets.</h1>
<div class="process">
<div class="process__steps block-1-2 block-tab-full group">
<div class="col-block step">
<h3 class="item-title">Learn the protocol.</h3>
<p>Discover the open-source DigiAssets protocol specifications for detailed information about issuing and transacting digital assets on top of the DigiByte Blockchain. <a href="https://github.com/digiassetX/DigiAssets-Protocol-Specifications/blob/master/DigiAsset-Scheme.md" target="_blank">DigiAssets Protocol on GitHub</a>.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Issue an asset.</h3>
<p>Not a developer? Definitely not a problem! Anyone can easily issue a DigiAsset by using one of the tools available without having technical knowledge about the protocol. <a class="smoothscrollup" href="#digiassetservices">DigiAssets supported services</a>.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Store / Trade.</h3>
<p>Wondering how to use DigiAssets? Use the <a class="smoothscrollup" href="#dgbmobile">DigiByte Mobile</a> application to send, accept and store your assets or explore the <a class="smoothscrollup" href="#digiassetservices">DigiAssets supported services</a> to buy, sell and swap DigiAssets.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Need more help?</h3>
<p>Do you need more assistance about DigiAssets? Please feel free to join the DigiByte Developers group on Telegram to ask your questions or share your ideas. <a href="https://t.me/DigiByteDevelopers" target="_blank">DigiByte Developers on Telegram</a>.
</p>
</div>
</div>
</div>
</div>
<div class="testimonials-wrap" data-aos="fade" id="digiassetservices">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="display-2">See DigiAssets in action.</h2>
<p class="lead">
Discover DigiAssets supported services to experience DigiAssets.
</p>
</div>
</div>
<div class="row testimonials">
<div class="col-full slick-slider testimonials__slider">
<div class="testimonials__slide">
<img src="images/avatars/digiassetx.png" loading="lazy" width="72" height="72" alt="DigiAssetX" class="testimonials__avatar">
<p>DigiassetX is a NFT creator and auction platform that also has many other services incorporated within.</p>
<div class="testimonials__author">
<span class="testimonials__name">digiassetX</span>
<a href="https://digiassetx.com/" target="_blank" class="testimonials__link">digiassetx.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/digibroker.png" loading="lazy" width="72" height="72" alt="Digi-Broker" class="testimonials__avatar">
<p>Digi-Broker is a site where users from around the world can share, buy and sell their digital assets.</p>
<div class="testimonials__author">
<span class="testimonials__name">Digi-Broker</span>
<a href="https://digi-broker.com/index.php/tools/" target="_blank" class="testimonials__link">digi-broker.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/createdigiassets.png" loading="lazy" width="72" height="72" alt="CreateDigiAssets" class="testimonials__avatar">
<p>DigiAssets Tools allows you to create DigiAssets quickly and easily, even for non-technical users.</p>
<div class="testimonials__author">
<span class="testimonials__name">DigiAssets Tools</span>
<a href="https://createdigiassets.com" target="_blank" class="testimonials__link">createdigiassets.com</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Digi-ID
================================================== -->
<section id="digi-id" class="s-features target-section">
<div class="row section-header has-bottom-sep" data-aos="fade-up">
<div class="col-full">
<h1 class="display-1">
Authentication at its best.
</h1>
<p class="lead">
Digi-ID is a security protocol built on DigiByte blockchain technology that empowers users to effortlessly sign-in to websites, applications, and even into the internet of things.
</p>
</div>
<a class="btn btn--primary playb" href="https://www.youtube.com/embed/pLrQycud5GI?autoplay=1&loop=1&modestbranding=1&iv_load_policy=3&rel=0&showinfo=0" data-lity><i class="fas fa-play"></i> Learn by watching</a>
</div>
<div class="row features block-1-3 block-m-1-2" data-aos="fade">
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-sign-in-alt"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Easy authentication.</h3>
<p>Digi-ID eliminates the username, password and 2fa requirements for authentication. Because Digi-ID uses public / private key cryptography, there are no passwords or usernames at risk. This method not only protects the consumer, it also protects the services that the consumer uses.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-user-shield"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Flawless security.</h3>
<p>Digi-ID does not store any data about its users on the DigiByte blockchain. This further strengthens the security while also bolstering end-user’s confidence that their data is neither tracked nor at risk by others negligence. There is no external point of failure for an hacker to exploit your platform.</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__icon">
<i class="fas fa-smile-plus"></i>
</div>
<div class="item-feature__text">
<h3 class="item-title">Simple and free.</h3>
<p>Digi-ID is completely free! There are no fees, subscription services, or maintenance costs. But the cost is its second best feature. Its primary feature is that, in accordance with DigiBytes security prioritization, Digi-ID is a more secure, yet simple method available to log in to websites, apps and more.
</p>
</div>
</div>
</div>
<div class="lrmargin25" data-aos="fade">
<h1 align="center">It works like this.</h1>
<div class="process">
<div class="process__steps block-1-2 block-tab-full group">
<div class="col-block step">
<h3 class="item-title">Generation.</h3>
<p>The website, application or product generates a unique Digi-ID QR code and presents it.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Scanning.</h3>
<p>The user scans the QR code from the <a class="smoothscrollup" href="#dgbmobile">DigiByte Mobile</a> or any <a class="smoothscroll" href="#digidapps">Digi-ID supported app</a>.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Authentication.</h3>
<p>The user authenticates the request by entering their app PIN code or scanning their fingerprint/face.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Confirmation.</h3>
<p>Digi-ID sends the cryptographically-signed request back and the user is successfully logged in.
</p>
</div>
</div>
</div>
</div>
<div data-aos="fade">
<h1 class="align-center">Frequently Asked Questions.</h1>
<div class="row features block-1-2 block-m-1-2">
<div class="col-block item-feature">
<div class="item-feature__text">
<h3 class="item-title">Where can I find more documentation?</h3>
<p>The best place to start is <a href="https://www.digi-id.io" target="_blank">Digi-ID.io</a>. If you want to know more about the details and advantages of Digi-ID, you can refer to the <a href="https://www.digi-id.io/faq" target="_blank">user guide</a>, <a href="https://www.digi-id.io/vendor-info.html" target="_blank">vendor guide</a> or <a href="https://www.digi-id.io/integration.html" target="_blank">integration guide</a>. If you are looking for the media kit, please get the <a href="docs/digiidintro.pdf" target="_blank">intro sheet</a> and <a href="https://github.com/DigiByte-Core/digibyte-logos/tree/master/Digi-ID%20Logos/Digi-ID_logos" target="_blank">logos</a>.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__text">
<h3 class="item-title">Where are the integration libraries?</h3>
<p>Since Digi-ID is open-source, multiple code repositories can be found on GitHub such as <a href="https://github.com/DigiByte-Core?q=digiid" target="_blank">DigiByte Core Development </a>, <a href="https://github.com/mctrivia?tab=repositories&q=digiid" target="_blank">Matthew Cornelisse</a> and <a href="https://github.com/evilmouse69/Digi-ID-for-WHMCS/" target="_blank">WHMCSSnow</a>. If you need more assistance please join the <a href="https://t.me/DigiByteDevelopers" target="_blank">DigiByte Developers group</a> on Telegram.
</p>
</div>
</div>