-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
1955 lines (1488 loc) · 101 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>
<!--- Language router (Additional languages will be added)
================================================== -->
<script>
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
var lang = lang.substr(0,2)
var GET = window.location.search.substring(1);
if (GET == "en")
null
else
null
</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');
</script>
<!-- OneSignal platform support
================================================== -->
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" async=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: "fe2bb732-9182-4a10-8868-e0e6c611190a",
});
var notificationPromptDelay = 30000;
var navigationStart = window.performance.timing.navigationStart;
var timeNow = Date.now();
setTimeout(promptAndSubscribeUser, Math.max(notificationPromptDelay - (timeNow - navigationStart), 0));
});
function promptAndSubscribeUser() {
window.OneSignal.isPushNotificationsEnabled(function(isEnabled) {
if (!isEnabled) {
window.OneSignal.showSlidedownPrompt();
}
});
}
</script>
<!--- Basic page needs
================================================== -->
<title>DigiByte Blockchain | DGB Coin | DigiAssets | Digi-ID</title>
<meta charset="utf-8">
<meta name="description" content="DigiByte is an open-source and highly decentralized global blockchain 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">
<link rel="canonical" href="https://digibyte.io" />
<!-- 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/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- Scripts
================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- Favicons
================================================== -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/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="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 hosts DGB Coin, DigiAssets, Digi-ID and more." />
<meta name="twitter:image" content="https://digibyte.io/twitter.png" />
<!-- Facebook preview
================================================== -->
<meta property="og:image" content="https://digibyte.io/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 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.io">
</head>
<body id="top">
<!-- Preloader
================================================== -->
<div id="preloader">
<div id="loader" class="dots-jump">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- Header
================================================== -->
<header class="s-header">
<div class="row">
<div class="header-logo">
<a class="site-logo smoothscroll" href="#top">
<img src="images/logo.svg" alt="Home">
</a>
</div>
<nav class="header-nav-wrap">
<ul class="header-main-nav">
<li><a class="smoothscroll" 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>
<div class="dropdown">
<button class="dropbtn"><i class="far fa-language"></i></button>
<div class="dropdown-content">
<a href="index.html">English</a>
</div>
</div>
</ul>
<div class="header-cta">
<a href="#download" class="btn btn--primary header-cta__btn smoothscroll">Downloads</a>
</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-bg.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="shadow-overlay"></div>
<div class="home-content">
<div class="row home-content__main">
<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>
</div>
</div>
<div class="home-content__right">
<img src="images/hero-app-screens-800.png" 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://dgbat.org" target="_blank">DGBAT</a></li>
<li><a href="https://www.dgbwiki.com" target="_blank">DGBWiki</a></li>
</ul>
</div>
<a href="#footer" class="home-scroll smoothscroll">
<span class="home-scroll__text">Scroll</span>
<span class="home-scroll__icon"></span>
</a>
</section>
<!-- About
================================================== -->
<section id="about" class="s-about target-section">
<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 early 2014. After 6 years of forward thinking development, DigiByte has become one of the safest, fastest, longest and most decentralized UTXO blockchain in existence.
</p>
</div>
</div>
<div class="row wide about-desc" data-aos="fade-up">
<div class="col-full slick-slider about-desc__slider">
<div class="about-desc__slide">
<h3 class="item-title">Decentralized.</h3>
<p>
DigiByte has never been funded through an ICO or significant amount of premined coins. 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 real time difficulty adjustment 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 SegWit implementation and blockchain rigidity enable up to 1066 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 6 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>
<!-- Blockchain
================================================== -->
<section id="blockchain" class="s-about-how target-section">
<div class="row">
<div class="col-full video-bg" data-aos="fade-up">
<div class="shadow-overlay"></div>
<a class="btn-video" href="https://www.youtube.com/embed/uGearn3BHvU?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>
<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-up">
<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 five proof of work algorithms 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 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.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Source code.</h3>
<p>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/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="testimonials-wrap" data-aos="fade-up">
<div class="row">
<div class="col-full testimonials-header">
<h2 class="display-2">The history of DigiByte.</h2>
<p class="lead">
Discover the 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" 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>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/launch.png" 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" 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" 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" 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" 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" 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" 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" 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" 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" 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>
</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 way for payments.
</p>
</div>
<a class="btn btn--primary" href="https://www.youtube.com/embed/UUhVEDlXvkQ?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">
<div class="col-block item-feature" data-aos="fade-up">
<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 SMS. You can send and receive DigiByte using the devices you already know and love. All you need is installing a <a class="smoothscroll" href="#download">DigiByte wallet</a> then click, scan and send. As easy as 1..2..3.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up">
<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://en.wikipedia.org/wiki/Initial_coin_offering" target="_blank">ICO</a> or significant amount of premined coins. There is no CEO or a company controlling the DigiByte blockchain. <a href="https://www.linkedin.com/in/jaredctate/" target="_blank">The founder</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" data-aos="fade-up">
<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 40x faster than BTC and 10x faster than LTC. <a href="https://en.wikipedia.org/wiki/SegWit" target="_blank">SegWit</a> enables up to 1066 on-chain transactions per second and negligible fees make DigiByte the ideal currency for payments.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up">
<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 uncrackable technology of the Bitcoin and implemented various advanced enhancements over it such as <a href="https://www.dgbwiki.com/index.php?title=DigiShield" target="_blank">DigiShield</a>, <a href="https://www.dgbwiki.com/index.php?title=MultiAlgo" target="_blank">MultiAlgo</a> and <a href="https://www.dgbwiki.com/index.php?title=Odocrypt" target="_blank">Odocrypt</a>. Also <a href="https://www.dgbwiki.com/index.php?title=Dandelion%2B%2B" target="_blank">Dandelion++</a> helps keep you safe by hiding your IP and location.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up">
<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://en.wikipedia.org/wiki/Proof_of_work" target="_blank">PoW</a> blockchain that can be mined with Sha256, Scrypt, Skein, Qubit and Odocrypt. MultiAlgo mining contributes decentralization and gives you the freedom to use different hardwares such as ASIC, FPGA and 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" data-aos="fade-up">
<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 have been designed to be ready for mass adoption. DigiByte block rewards reduces by 1% every month instead of halving every 4 years. All DigiByte supply will be mined by the year 2035.
</p>
</div>
</div>
</div>
<div class="testimonials-wrap" data-aos="fade-up">
<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">DGB 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/bittrex.png" 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 exchange</span>
<a href="https://bittrex.com" target="_blank" class="testimonials__link">bittrex.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/vertbase.png" alt="Vertbase" class="testimonials__avatar">
<p>With Vertbase'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">Vertbase</span>
<a href="https://www.vertbase.com" target="_blank" class="testimonials__link">vertbase.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/abra.png" 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" target="_blank" class="testimonials__link">abra.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/shapeshift.png" alt="Shapeshift" class="testimonials__avatar">
<p>ShapeShift is the leading instant digital asset exchange, supporting dozens of currencies including DigiByte.</p>
<div class="testimonials__author">
<span class="testimonials__name">Shapeshift</span>
<a href="https://shapeshift.io" target="_blank" class="testimonials__link">shapeshift.io</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/changeangel.png" 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>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/spend.png" alt="Spend" class="testimonials__avatar">
<p>Spend gives you access to a suite of banking products such as a Multi Currency Digital Wallet and Spend Visa card.</p>
<div class="testimonials__author">
<span class="testimonials__name">Spend</span>
<a href="https://www.spend.com" target="_blank" class="testimonials__link">spend.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/coinpayments.png" alt="CoinPayments" class="testimonials__avatar">
<p>CoinPayments is providing buy now buttons, shopping carts, and more to accept DigiByte on your website.</p>
<div class="testimonials__author">
<span class="testimonials__name">CoinPayments</span>
<a href="https://www.coinpayments.net" target="_blank" class="testimonials__link">coinpayments.net</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/forgingblock.png" alt="ForginBlock" class="testimonials__avatar">
<p>ForgingBlock is providing a quick, simple, reliable payment solution that accepts crypto currencies.</p>
<div class="testimonials__author">
<span class="testimonials__name">ForgingBlock</span>
<a href="https://forgingblock.io" target="_blank" class="testimonials__link">forgingblock.io</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/digibytepay.png" alt="DigiBytePay" class="testimonials__avatar">
<p>Accept in-person and online DigiByte payments easily using the DigiCafe App and WooCommerce.</p>
<div class="testimonials__author">
<span class="testimonials__name">DigiBytePay</span>
<a href="https://www.digibytepay.us" target="_blank" class="testimonials__link">digibytepay.us</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/antum.png" alt="AntumID" class="testimonials__avatar">
<p>AntumID offers a unique experience to secure authenticate to websites by using DigiByte technology.</p>
<div class="testimonials__author">
<span class="testimonials__name">OpenAntumID</span>
<a href="https://www.openantumid.com" target="_blank" class="testimonials__link">openantumid.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/nownodes.png" alt="NowNodes" class="testimonials__avatar">
<p>NowNodes provides fast and reliable connection to popular blockchains including DigiByte with powerful servers.</p>
<div class="testimonials__author">
<span class="testimonials__name">NowNodes</span>
<a href="https://nownodes.io" target="_blank" class="testimonials__link">nownodes.io</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/acceptcz.png" alt="AcceptCryptoz" class="testimonials__avatar">
<p>Use AcceptCryptoz directory to find the best places accepting DigiByte and other cryptos near you.</p>
<div class="testimonials__author">
<span class="testimonials__name">AcceptCryptoz</span>
<a href="https://www.acceptcryptoz.com" target="_blank" class="testimonials__link">acceptcryptoz.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/cryptobantam.png" alt="CryptoBantam Shop" class="testimonials__avatar">
<p>Visit CryptoBantam and buy trendy clothes to contribute awareness and adoption of DigiByte!</p>
<div class="testimonials__author">
<span class="testimonials__name">CryptoBantam shop</span>
<a href="https://www.cryptobantam.com/vendor/dgbat/" target="_blank" class="testimonials__link">cryptobantam.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/1in256.png" alt="1in256 Competitions" class="testimonials__avatar">
<p>Win the latest tech while contributing to DigiByte with 100% verifiable blockchain based competitions.</p>
<div class="testimonials__author">
<span class="testimonials__name">1in256 competitions</span>
<a href="https://1in256.com" target="_blank" class="testimonials__link">1in256.com</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/dgbcommunity.png" alt="DGB.community email service" class="testimonials__avatar">
<p>Get your own @dgb.community email address to support the DigiByte Foundation and the DGBAT.</p>
<div class="testimonials__author">
<span class="testimonials__name">Community email service</span>
<a href="https://dgb.community" target="_blank" class="testimonials__link">dgb.community</a>
</div>
</div>
<div class="testimonials__slide">
<img src="images/avatars/cryptoid.png" alt="CryptoID Block Explorer" class="testimonials__avatar">
<p>CryptoID block explorer provides detailed statics of the DigiByte blockchain and specific transactions.</p>
<div class="testimonials__author">
<span class="testimonials__name">CryptoID explorer</span>
<a href="https://chainz.cryptoid.info/dgb/" target="_blank" class="testimonials__link">chainz.cryptoid.info</a>
</div>
</div>
</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 assets, tokens, smart contracts, digital identity and more.
</p>
</div>
<a class="btn btn--primary" href="https://www.youtube.com/embed/xDJllY5ehNw?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">
<div class="col-block item-feature" data-aos="fade-up">
<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" data-aos="fade-up">
<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" data-aos="fade-up">
<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-up">
<h1 align="center">Getting 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 issuing and transacting digital assets on top of the DigiByte Blockchain.<br /><a href="https://github.com/DigiByte-Core/DigiAssets-Protocol-Specifications/wiki" 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 the DigiAssets tools without technical knowledge about the protocol.<br /><a href="https://createdigiassets.com" target="_blank">DigiAssets Tools</a>.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Store / Trade.</h3>
<p>Wondering how to use DigiAssets? You can use the <a class="smoothscroll" href="#download">DigiByte mobile wallet</a> to send, accept or store your assets. In addition, <a href="https://digi-broker.com" target="_blank">Digi-Broker</a> is one of the first places to buy, sale or 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 DigiByte Developers group on Telegram to ask your questions or share your ideas.<br /><a href="https://t.me/DigiByteDevelopers" target="_blank">DigiByte Developers on Telegram</a>.
</p>
</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" 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">
<div class="col-block item-feature" data-aos="fade-up">
<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" data-aos="fade-up">
<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 users on the blockchain. This further strengthens the security while also bolstering end-users’ confidence that their data is neither tracked nor at risk by others’ negligence. There is not external point of failure for a hacker to target to exploit your platform.
</p>
</div>
</div>
<div class="col-block item-feature" data-aos="fade-up">
<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 DigiByte’s 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-up">
<h1 align="center">So, 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 generate 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 through the <a class="smoothscroll" href="#download">DigiByte mobile wallet</a> or any Digi-ID supported app.
</p>
</div>
<div class="col-block step">
<h3 class="item-title">Authentication.</h3>
<p>The user authenticates the request by entering their PIN 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-up">
<h1 class="align-center"><i class="fas fa-question-circle item-feature__icon"></i> FAQs.</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> and <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/Digi-ID_Intro.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 an 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 <a href="https://t.me/DigiByteDevelopers" target="_blank">DigiByte Developers</a> on Telegram.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__text">
<h3 class="item-title">Can I integrate Digi-ID without coding?</h3>
<p>If you are not a developer, you may want to use integration ready solutions for your website or product. <a href="https://www.openantumid.com/" target="_blank">OpenAntumID</a> provides effortless Digi-ID integration services. You can also use the <a href="https://wordpress.org/plugins/digi-id-authentication/" target="_blank">WordPress plugin</a> for the WordPress platforms.
</p>
</div>
</div>
<div class="col-block item-feature">
<div class="item-feature__text">
<h3 class="item-title">Are there other Digi-ID auth apps?</h3>
<p>Of course! Digi-ID is a rapidly growing platform. Multiple standolne authenticator apps and Digi-ID supported wallets can be found at <a class="smoothscroll" href="#download">Downloads</a> section. You can also place the free Digi-ID <a href="https://digibytewallets.com/digid/" target="_blank">applications widget</a> on the login page of your website.
</p>
</div>
</div>
</div>
</div>
<div class="testimonials-wrap" data-aos="fade-up">