forked from byteball/obyte-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1858 lines (1726 loc) · 102 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 lang="en">
<head>
<!-- Required meta tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Obyte — An open cryptocurrency platform ready for real world adoption">
<meta name="keywords" content="Obyte — An open cryptocurrency platform ready for real world adoption">
<meta property="og:url" content="https://obyte.org">
<meta property="og:title" content="Obyte — A cryptocurrency platform ready for real world adoption">
<meta property="og:description" content="ICO Platform, developer friendly, risk-free conditional smart payments, P2P insurance, prediction markets, P2P betting, textcoins, KYC, P2P payments in chat, chatbots, untraceable currency">
<meta property="og:image" content="https://obyte.org/img/logo-circle-256.png">
<!-- Title Page-->
<title>Obyte — An open cryptocurrency platform ready for real world adoption</title>
<!-- Fontfaces CSS-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link href="static/css/font-face.css" rel="stylesheet" media="all">
<link href="static/vendor/linearicons/css/linearicons.css" rel="stylesheet" media="all">
<!-- Bootstrap CSS-->
<link href="static/vendor/bootstrap/bootstrap.min.css" rel="stylesheet" media="all">
<!-- Vendor CSS-->
<link href="static/vendor/animate.css/animate.min.css" rel="stylesheet" media="all">
<link href="static/vendor/css-hamburgers/hamburgers.min.css" rel="stylesheet" media="all">
<link href="static/vendor/slick/slick.css" rel="stylesheet" media="all">
<link href="static/vendor/animsition/animsition.min.css" rel="stylesheet" media="all">
<link href="static/vendor/lightbox2/css/lightbox.min.css" rel="stylesheet" media="all">
<!-- Main CSS-->
<link href="static/css/theme.css?v5" rel="stylesheet" media="all">
<!--Favicons-->
<link rel="shortcut icon" href="static/favicon.ico">
<link rel="apple-touch-icon" sizes="57x57" href="static/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="static/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="static/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="static/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="static/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="static/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="static/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="static/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="static/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="static/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="static/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="static/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M79QXTS');</script>
<!-- End Google Tag Manager -->
<!-- fix iframe stealing focus -->
<style>
iframe {position:fixed}
</style>
<script>
window.onload = function() {
var iframes = document.getElementsByTagName("iframe");
for (i = 0; i < iframes.length; i++) {
iframes[i].style.position = "static";
}
};
</script>
</head>
<body class="no-animsition">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M79QXTS" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Header start-->
<header class="header-absolute section-header js-header unsticky">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-logo" href="/">
<img style="margin: -2px 0 -5px 0" src="static/images/icons/obyte-white-on-black-tight-small.png">
<!--img class="logo-light" src="static/images/icons/ic-logo.png">
<img class="logo-dark" src="static/images/icons/ic-logo-dark.png"-->
</a>
<button class="navbar-toggler hamburger hamburger--slider" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<div class="navbar-collapse collapse" id="navbarSupportedContent">
<ul class="navbar-nav navbar-nav-new">
<li class="nav-item active">
<a class="nav-link" href="#why">WHY</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#features">FEATURES</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#dist">DISTRIBUTION</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#tech">TECH</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#team">TEAM</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#community">COMMUNITY</a>
</li>
<li class="nav-item">
<a class="nav-link noto-sans-bold" href="#exchanges">EXCHANGES</a>
</li>
</ul>
<ul class="navbar-nav">
<li class="language-nav-item">
<div class="btn-group">
<button type="button" class="btn btn-default btn-sm" data-toggle="dropdown" aria-expanded="false">
<img id="imgBtnSel" src="static/images/flags/united-states.png" alt="..." class="img-thumbnail icon-medium" style="border: none">
<span id="lanBtnSel"></span>
</button>
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
<span class="caret"></span>
</button>
<ul class="dropdown-menu language-block" role="menu"></ul>
</div>
<a class="au-btn au-btn-pill au-btn-border au-btn-icon m-l-20 download-wallet-btn noto-sans-bold download-wallet-header-btn1" href="#download" style="background-color: #1560bd">
<span class="btn-text">
DOWNLOAD WALLET
</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Header end-->
<!-- textcoin block start -->
<!-- ================ -->
<div id="wechat_overlay" style="position: fixed; top:0;right:0;left:0;bottom:0; z-index: 9999; background: white; display: none; padding: 10px;">
To continue, open this page in system default browser (<b>"Open in <span class="browser">Safari</span>"</b>) by clicking <img src="img/dots.gif"/> in the upper right corner of this screen.
</div>
<div class="section clearfix open-sans-regular" id="textcoin" style="display: none;">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6 col-md-push-6 text-center text-md-left order-md-2">
<iframe width="560" height="315" src="https://www.youtube.com/embed/ELKpFTOJtmU?controls=0" frameborder="0" allowfullscreen style="max-width: 100%;"></iframe>
<h3 class="m-t-30 m-b-30 open-sans-bold">You received money!</h3>
<p class="android" style="display: none;">
Click the button below to open or install O<sub>byte</sub> (Byteball) app on your device and claim your funds.
</p>
<p class="desktop">
<a href="#download">Download and install O<sub>byte</sub> (Byteball) Wallet</a> first, then Click the button below to open app on your device and claim your funds.
</p>
<p><button id="openInApp" class="btn btn-lg btn-success m10" style="cursor: pointer">Receive funds</button></p>
<p>
If the button doesn't work, <a href="#download">install O<sub>byte</sub> (Byteball) Wallet</a>, navigate to <i>Receive</i> → <i>Claim funds using textcoin</i> and paste the following string:<br>
<b id="mnemonic"></b><br>
</p>
</div>
<div class="col-xs-12 col-md-5 col-md-offset-2 col-md-pull-7 text-center text-md-right order-md-1">
<img src="img/inphone/wallet.png?v2" style="display: inline; max-height: 547px; max-width: 100%" />
</div>
</div>
</div>
</div>
<!-- textcoin block end -->
<!-- Download start-->
<section class="section section-download-app bg-white p-t-90 p-b-40 block1">
<div class="container">
<h3 class="section-heading section-heading1 section-heading--center m-b-0 noto-sans-bold" style="max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.5">An open cryptocurrency platform ready for real world adoption</h3>
<div class="row justify-content-center">
<div class="col-md-9 text-center">
<p class="text-left m-b-70 noto-sans-display-regular" style="color: black; line-height: 2; max-width: 760px; margin-left: auto; margin-right: auto; display: inline-block;">
<i class="far fa-check-square"></i> unbreachable contracts<br>
<i class="far fa-check-square"></i> user controlled identity<br>
<i class="far fa-check-square"></i> payments that can be easily sent over any network<br>
<i class="far fa-check-square"></i> easy to develop apps that connect all of the above<br>
<i class="far fa-check-square"></i> built on open and scalable DAG-based technology<br>
<i class="far fa-check-square"></i> fully functional today<br>
<i class="far fa-square"></i> wide adoption<br>
</p>
</div>
</div>
<div class="section-btn-group wow zoomIn" data-wow-delay="0.6s">
<a class="au-btn au-btn-pill au-btn-icon subscribe-to-news-btn block1-btn noto-sans-bold" href="#" onclick="ml_account('webforms', '884262', 'i1z6x7', 'show')" style="background-color: #1560bd; color: white; border: 1px solid transparent;">
<span class="btn-text">SUBSCRIBE TO NEWSLETTER</span>
</a>
<a class="au-btn au-btn-pill au-btn-icon block1-btn noto-sans-bold download-wallet-header-btn2" href="#" onclick="scrollToBlock('download')" style="border: 1px solid #0060c1 !important;">
<span class="btn-text">DOWNLOAD WALLET</span>
</a>
</div>
<div class="box-title m-t-50 section-heading--center">
<iframe width="560" height="315" src="https://www.youtube.com/embed/e9i6QbJVDs0?controls=0" frameborder="0" allowfullscreen style="max-width: 100%;"></iframe>
</div>
<p class="box-title m-t-50 section-heading--center noto-sans-display-semibold" style="font-weight: bold; color: black;">
Learn more
</p>
<div class="section section-footer" style="background: none;">
<ul class="footer-menu-list h-list learn-more-ul">
<li class="list-item">
<a href="#learn_more" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Introduction guides</a>
</li>
<li class="list-item">
<a href="#learn_more" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Whitepaper</a>
</li>
<li class="list-item">
<a href="#learn_more" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Wiki</a>
</li>
<li class="list-item">
<a href="#learn_more" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Timeline</a>
</li>
<li class="list-item">
<a href="#learn_more" class="noto-sans-display-regular" onclick="scrollToBlock('learn_more')">Github</a>
</li>
</ul>
</div>
</div>
</section>
<!-- Download end-->
<!-- About start-->
<section class="section section-about-1 bg-white why-us-main-block p-t-20" id="why">
<div class="container">
<h1 class="section-heading section-heading1 section-heading--center m-b-40 why-use-h1 noto-sans-symbols-regular">WHY USE O<sub>byte</sub></h1>
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/ico_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">ICO Platform</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">The only ICO platform on the market that offers the compliant sale of security tokens out of the box.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Sell unregistered securities to accredited investors using built-in investor accreditation.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Optionally require KYC using built-in real name verification.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Sell for Bytes, BTC, ETH.</span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Display stats in real time.</span>
</div>
</li>
</ul>
<div>
<a href="https://ico-platform.obyte.org" target="_blank">Learn more</a> about launching an ICO on Obyte platform.
</div>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/bot-store.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Developer friendly</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Easily find new users for your apps</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Developers that create apps have instant access to all users on the O<sub>byte</sub> platform via the in-wallet Bot Store.<br><br>
The Bot Store is a bit like the Apple App Store or Google Play Store, except you don't need to compete with thousands of other apps....yet!<br><br>
As an added bonus, O<sub>byte</sub> is much easier to develop for than other crypto platforms. See our <a href="https://developer.obyte.org/" target="_blank">Developer resources website</a> for the descriptions of APIs, guides, and tutorials.<br><br>
<a href="https://wiki.obyte.org/Basic:Compare" target="_blank">See how Obyte and Ethereum compare</a> from a development perspective.
</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/bot-store.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/risk_free_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Risk-free conditional smart payments</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">O<sub>byte</sub> allows you to do something that traditional currencies can't: <a href="https://medium.com/obyte/making-p2p-great-again-fe9e20546a4a"
target="_blank" style="text-decoration: underline; color: #4285f4">conditional payments</a></span>
</div>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">You set a condition when the payee receives the money. If the condition is not met, you get your money back.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">P2P insurance</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Hedge against negative events.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Buy insurance from peers to get paid in case a negative event occurs. Sell insurance for profit.<br><br>Insurance is just <a href="https://medium.com/obyte/making-p2p-great-again-episode-iv-p2p-insurance-cbbd1e59d527" target="_blank">a simple smart contract</a> that can be unlocked by the insured — if the event in question did occur, or by the insurer — otherwise.<br><br>To insure against flight delay, find your counterpart on our <a href="http://discord.obyte.org/" target="_blank" title="Discord">Discord</a>, create a contract, and if your flight arrives late, <a href="obyte:AuP4ngdv0S/[email protected]/bb#0000">chat with flight delays oracle</a> to have it post the data about the delay, then unlock the contract.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_img.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/predictions_markets_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Prediction markets</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Make money by correctly predicting future events.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Create a P2P smart contract that can be unlocked if a specific event occurs. Use it for <a href="https://medium.com/obyte/making-p2p-great-again-episode-iii-prediction-markets-f40d49c0abab" target="_blank">betting on price movements</a>, sports betting, and insurance.<br><br>Find your counterpart on our <a href="http://discord.obyte.org/" target="_blank" title="Discord">Discord</a>.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_betting_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">P2P betting</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Bet against other users on sports events.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Find your counterpart on our <a href="http://discord.obyte.org/" target="_blank" title="Discord">Discord</a> and create a contract that can be unlocked by you or your peer depending on the results of a future game.<br><br>
After the result is known, <a href="obyte:[email protected]/bb#0000">chat with sports oracle</a> to have it post the data about the outcome, then unlock the contract.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_betting_img.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/textcoins_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Textcoins</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Send cryptocurrency to email or via chat.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">The sender just writes an email address where he would normally write an O<sub>byte</sub> address. The recipient just clicks a link received in email or chat. If the recipient is not in O<sub>byte</sub> yet, he will be prompted to install the wallet. On Android, the install is started automatically. <a href="https://medium.com/obyte/sending-cryptocurrency-to-email-5c9bce22b8a9" target="_blank">Learn more</a>.<br><br>
See this 34 second video that covers the two steps for newcomers to receive textcoins via Whatsapp, Telegram, WeChat, email etc.
</span>
</div>
</li>
</ul>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ELKpFTOJtmU?controls=0" frameborder="0" allowfullscreen style="max-width: 100%;"></iframe>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/sovereign_identity.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Sovereign identity</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Store your ID in your wallet, choose what to disclose and to whom.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Have your real identity verified and securely stored in your wallet. <a href="https://www.jumio.com/" target="_blank">Jumio</a> helps in ID verification. When you want to disclose your identity to a service provider, e.g. to participate in an ICO, you just pull it out of your wallet in a few clicks. <a href="https://medium.com/obyte/bringing-identity-to-crypto-b35964feee8e" target="_blank">Learn more</a>.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/sovereign_identity.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/p2p_payments.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">P2P payments in chat</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Chat and pay in the same app just by clicking links.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">No need to copy and paste long crypto addresses.<br><br>Simply tap to insert your address into the chat, and the payer taps on your address to send money.</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/chatbots_img.png" alt="">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Chatbots</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Talk to a bot like you would talk to a human.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Shop by chatting with a merchant's bot, pay in two clicks. Exchanges and other services are also easy to use in conversational interface.</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/chatbots_img.png" alt="">
</div>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/fees.png" alt="" style="box-shadow: none; filter: none;">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Predictable fees</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">1 byte of data always costs 1 Byte.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">Transaction fees are proportional to the amount of memory required to add the transaction to the ledger, at a ratio of 1:1. To add 1 byte of data to the ledger <b>always</b> costs 1 Byte in fees.<br><br>
As long as you can calculate the total size of the transaction in bytes of memory, you know the exact fee. This provides developers some peace of mind, as they know if their app becomes popular users are still guaranteed the same low transaction fee.<br><br>
<a href="https://wiki.obyte.org/Basic:Fees" target="_blank">Learn more</a> about the benefits of predictable Obyte fees.
</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/iot-white.jpg" alt="" style="box-shadow: none; filter: none; ">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">IoT (Internet of Things)</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">A number of IoT projects are being developed on Obyte.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">BIoT (<a href="https://biot.ws/" target="_blank">Byte IoT</a>) is a project that connects people and devices to each other using the Obyte platform. You can manage and monitor payment processes using Obyte micropayments in <a href="https://youtu.be/Rll5JQGNrU0" target="_blank">payment channels</a> and make <a href="https://youtu.be/JN0o7xjtPhc" target="_blank">payments during useage</a>. For example, communication between devices can be between a smartphone BIoT client and a <a href="https://youtu.be/E_cem1cl3a4" target="_blank">self-sustaining 3D printer</a>.<br><br>
<a href="https://wiki.obyte.org/Hardware#Byteduino" target="_blank">Byteduino</a> is a light implementation of Obyte for <a href="https://en.wikipedia.org/wiki/Arduino" target="_blank">Arduino</a> ESP8266 and ESP32 boards. It requires very little memory, working even on devices with only 40 KB of memory. A <a href="https://github.com/Papabyte/Hardware-cosigner" target="_blank">hardware cosigner</a> built with Byteduino enables fund security by requiring you to sign multisig wallet transactions (<a href="https://steemit.com/utopian-io/@drsensor/byteduino-create-your-own-hardware-cosigner-for-byteball-1543200264366" target="_blank">tutorial</a>).
</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/iot-white.jpg" alt="" style="box-shadow: none; filter: none;">
</div>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6">
<div class="section-content-image section-heading--center wow nofadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/eye_logo.png" alt="" style="box-shadow: none; filter: none;">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Untraceable currency: Blackbytes</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Cash-like privacy.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">When you want complete privacy, pay in Blackbytes, a cash-like untraceable currency whose transactions are not visible on the public database, they are sent peer-to-peer instead.<br><br>Use built-in TOR switch straight from the wallet to increase your privacy even further.<br><br>
<a href="https://wiki.obyte.org/Basic:Blackbytes" target="_blank">More information about Blackbytes</a> can be found on the Obyte wiki.
</span>
</div>
</li>
</ul>
</div>
</div>
<hr class="new-breaker-line">
<div class="row">
<div class="col-md-6 visible-xs" style="margin-top: 30px;">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/dag_img.png" alt="" style="box-shadow: none; filter: none; ">
</div>
</div>
<div class="col-md-5 margin-left-7p">
<h3 class="section-heading m-b-30 block2-title-margin-top open-sans-bold">Users help each other</h3>
<ul class="v-list list-text-icon list-text-icon-accordion m-b-20" id="accordion" role="tablist" aria-multiselectable="true">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<a class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse11" aria-expanded="false" aria-controls="collapse11">
<i class="iconbox-icon"></i>
<span class="iconbox-text iconbox-text-100 source-sans-pro-regular">Secure each other's transactions.</span>
</a>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text">
<div class="iconbox-item-title collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapse22" aria-expanded="false" aria-controls="collapse22">
<i class="iconbox-icon" style="background: none !important;border: none !important;box-shadow: none !important;"></i>
<span class="iconbox-text iconbox-text-100 open-sans-regular">There is no central entity that stores and processes all the payments. Instead, transactions created by users are cryptographically linked to each other, and once you add your new transaction, other users start adding theirs on top of yours, and the number of other transactions that link to your transaction grows like snowball (that's why the O in our name).</span>
</div>
</li>
</ul>
</div>
<div class="col-md-6 hidden-xs">
<div class="section-content-image section-heading--center wow nofadeInRight" data-wow-duration="0.8s" data-wow-delay="0.5s">
<img class="img-fluid" src="static/images/dag_img.png" alt="" style="box-shadow: none; filter: none;">
</div>
</div>
</div>
<hr class="new-breaker-line new-breaker-line2">
</div>
</section>
<!-- About end-->
<!-- Features start-->
<section class="section section-about-2 p-b-40 p-t-20 feature-block" id="features">
<div class="container">
<h3 class="section-heading section-heading--center section-heading--dark m-b-50 core-feature-title">Core Features</h3>
<div class="row section-content-inner">
<div class="col-sm-12 col-xs-12 col-md-12 col-lg-5 features-col1">
<ul class="v-list list-text-icon">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg iconbox-style-2-with-text-right wow fadeInLeft col1-feature" data-wow-duration="0.8s" data-wow-delay="0.2s">
<p class="iconbox-item-title" href="#">
<span class="iconbox-text">ATOMIC EXCHANGE</span>
<i class="iconbox-icon" style="background-color: #0060C1"></i>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">When two parties sign a single unit that executes both legs of the exchange, the two transactions either happen simultaneously or don't happen at all. It is no longer necessary to trust any centralized exchanges.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg iconbox-style-2-with-text-right wow fadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.4s">
<p class="iconbox-item-title" href="#">
<span class="iconbox-text">MULTI SIGNATURE</span>
<i class="iconbox-icon" style="background-color: #0060C1"></i>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">For security, you can require that your funds be spendable only when several signatures are provided, e.g. from your laptop and from your phone. For shared control of funds, signatures from different people may be required.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg iconbox-style-2-with-text-right wow fadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.6s">
<p class="iconbox-item-title" href="#">
<span class="iconbox-text">IMMUTABLE STORAGE</span>
<i class="iconbox-icon" style="background-color: #0060C1"></i>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Once stored in the O<sub>byte</sub> database, the data can neither be revised nor removed.</p>
</li>
</ul>
</div>
<div class="col-4 image-content wow fadeInUp" data-wow-duration="1s">
</div>
<div class="col-sm-12 col-xs-12 col-md-12 col-lg-5">
<ul class="v-list list-text-icon list-text-icon-invert">
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg wow fadeInRight" data-wow-duration="0.8s" data-wow-delay="0.2s">
<p class="iconbox-item-title" href="#">
<i class="iconbox-icon" style="background-color: #0060C1"></i>
<span class="iconbox-text">REGULATED ASSETS</span>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">Regulated institutions can issue assets that are compatible with KYC/AML requirements. Every transfer of such asset is to be cosigned by the issuer, and if there is anything that contradicts the regulations, the issuer won't cosign.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg wow fadeInRight col4-feature" data-wow-duration="0.8s" data-wow-delay="0.4s">
<p class="iconbox-item-title" href="#">
<i class="iconbox-icon" style="background-color: #0060C1"></i>
<span class="iconbox-text">ON-CHAIN ORACLES</span>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">When dealing with untrusted counterparties, you can lock the funds on an address that is spendable either by you or by the counterparty, depending on the events registered to the database by trusted data providers — oracles.</p>
</li>
<li class="iconbox iconbox-style-2 iconbox-style-2-with-text iconbox-style-2-with-text-lg wow fadeInRight col6-feature" data-wow-duration="0.8s" data-wow-delay="0.6s">
<p class="iconbox-item-title" href="#">
<i class="iconbox-icon" style="background-color: #0060C1"></i>
<span class="iconbox-text">SETTLEMENT FINALITY</span>
</p>
<p class="collapse show iconbox-item-text source-sans-pro-regular">After certain criteria are met, a new transaction becomes final. It cannot be revised even by a powerful attacker. No guesswork about the right number of confirmations, no 51% attacks.</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Features end-->
<!-- Pricing Tables start-->
<section class="section section-price-table p-b-90" id="dist">
<div class="container">
<hr class="new-breaker-line">
<div class="row justify-content-md-center">
<div class="col-md-12">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 distribution-title">Fair initial distribution</h1>
<h4 class="m-b-30 section-heading--center distribution-title2">Free distribution for mass adoption.</h4>
</div>
</div>
<div class="row bg-gray-50">
<div class="col-lg-12 distibution-desc-div-padding">
<h3 class="m-b-30 distribution-text">We use various ways to distribute the two main currencies of the platform, Bytes and Blackbytes:</h3>
<p class="distribution-text2">
- <a href="https://medium.com/obyte/byteball-cashback-program-9c717b8d3173" target="_blank">Cashback</a> for purchases at the merchant stores we partner with. In most cases, the offered cashback is 10% of the purchase amount.
<br>- <a href="https://medium.com/obyte/byteball-cashback-program-9c717b8d3173" target="_blank">Fill out the application form</a> or <script>document.write('<a href="mailto:o'); document.write('@'); document.write('obyte.org">');</script>contact us<script>document.write('</a>');</script> if you run a store or a payment processor and want to be part of the cashback program.
<br>- <a href="https://medium.com/obyte/distribution-to-verified-users-and-referrals-ed00b9b2a30e" target="_blank">Verification rewards and referral rewards</a> to those who verify their real name.
<br>- <a href="https://medium.com/obyte/distribution-to-verified-emails-and-sending-cryptocurrency-to-email-episode-ii-cb955fe19d7e" target="_blank">Verification rewards and referral rewards</a> to those who verify their email address.
<br>- <a href="https://medium.com/obyte/introducing-a-bridge-between-byteball-and-steem-and-an-airdrop-548d7958b9e9" target="_blank">Verification rewards and referral rewards</a> to those who verify their Steem account.
<br>- <a href="https://medium.com/obyte/attestation-of-accredited-investors-d4a8dabf683b" target="_blank">Verification rewards and referral rewards</a> to accredited investors who verify their accredited status.
<br>- Rewards to those who pass a <a href="https://medium.com/obyte/money-for-knowledge-distribution-via-telegram-quiz-bot-2dd400e22997" target="_blank">quiz in Telegram</a>.
<br>- Subsidies that offset part of the fees paid when <a href="https://medium.com/obyte/buying-bytes-with-visa-or-mastercard-d8ee2d1a2b07" target="_blank">buying Bytes with Visa or Mastercard</a>.
<br>- Rewards for donating one's computing resources to the <a href="https://medium.com/obyte/computing-for-good-again-3795336bdaed" target="_blank">World Community Grid</a>.
<br>- Prizes for winners and referrers of winners in the <a href="https://medium.com/obyte/weekly-draw-for-the-byteball-community-f464ae731c88" target="_blank">weekly draw</a>.
<br>- Giveaways distributed e.g. through youtube channels of our supporters. See e.g. <a href="https://www.youtube.com/watch?v=hycluITNDBM" target="_blank">https://www.youtube.com/watch?v=hycluITNDBM</a>.
<br>- <a href="https://medium.com/obyte-help/using-mailchimp-to-mass-send-payments-as-textcoins-5c1db06342e3" target="_blank">Mass sending of textcoins</a> to subscribers of our partners. See the <a href="https://docs.google.com/spreadsheets/d/1heT6TUSpTJgRW-FUM0LbcoVjXZRCb3PbXQQLmzvNRvM/edit#gid=323859176" target="_blank">results of the previous campaigns</a>.
</p>
</div>
</div>
<div class="row justify-content-md-center m-t-40 m-b-10">
<div class="col-md-12">
<h4 class="m-b-30 section-heading--center distribution-title2">Previous distributions</h4>
</div>
</div>
<div class="row bg-gray-50">
<div class="col-lg-12 distibution-desc-div-padding">
<h3 class="m-b-40 distribution-text">
In the past, we also distributed Bytes to BTC holders and existing holders of Bytes. Users used to link their BTC and O<sub>byte</sub> addresses and were receiving new Bytes in proportion to their existing balances in BTC and Bytes. This distribution was split into several rounds.
<br><br>The first distribution round took place on Dec 25, 2016 when the network launched, over 70,000 BTC was linked, and 10% of the total supply of bytes and blackbytes was distributed. In the subsequent rounds, the total distributed supply reached 64.5%:
</h3>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">2nd round on Feb 11, 2017: 121,763 BTC linked, 1.8% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">3rd round on Mar 12, 2017: 129,139 BTC linked, 2.0% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">4th round on Apr 11, 2017: 145,441 BTC linked, 2.3% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">5th round on May 10, 2017: 207,672 BTC linked, 2.9% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">6th round on Jun 9, 2017: 453,621 BTC linked, 6.6% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">7th round on Jul 9, 2017: 949,004 BTC linked, 11.0% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">8th round on Aug 7, 2017: 1,395,899 BTC linked, 16.0% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">9th round on Sep 6, 2017: 1,306,573 BTC linked, 5.7% distributed;</p>
<p class="left-float col-lg-6 col-xs-12 m-b-10 distribution-text2">10th round on Nov 4, 2017: 1,093,155 BTC linked, 6.1% distributed;</p>
</div>
</div>
<hr class="new-breaker-line m-t-50">
<div class="row justify-content-md-center" id="tech">
<div class="col-md-12">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 distribution-title">Completely new technology</h1>
<h4 class="m-b-30 section-heading--center distribution-title2" style="max-width: 550px; margin-left: auto; margin-right: auto;">Unbounded scalability, fast confirmations, no miners, no blocks, low fees.</h4>
</div>
</div>
<div class="row bg-gray-50">
<div class="col-lg-12 distibution-desc-div-padding">
<p class="distribution-text3">
O<sub>byte</sub> data is stored and ordered using <a href="https://en.wikipedia.org/wiki/Directed_acyclic_graph" target="_blank"> directed acyclic graph </a> (DAG) rather than blockchain. This allows all users to secure each other's data by referencing earlier data units created by other users, and also removes scalability limits common for blockchains, such as blocksize issue.
<br><br>
Blockless design is simpler because there are no blocks, there are only transactions. Users just add their transactions to the end of the DAG themselves, they don't have to wait for miners to create a new block and there is no guesswork regarding whether miners will include their transaction in the block.
<br>
<br>The consensus algorithm used to protect from double-spends is based on establishing a total order within the DAG. This is achieved by selecting a chain, called main chain, which gravitates towards units issued by commonly recognized reputable users — witnesses.
<br><a href="/Byteball.pdf" target="_blank">See the white paper for details.</a>
</p>
</div>
</div>
</div>
</section>
<!-- Pricing Tables end-->
<!-- Pricing Tables start-->
<section class="section section-price-table" id="download">
<div class="container">
<hr class="new-breaker-line">
<div class="row justify-content-md-center">
<div class="col-md-12 dybw-list-item">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 app-title">Download your O<sub>byte</sub> (Byteball) wallet</h1>
<div class="section-heading--center">
<img src="img/inphone/wallet.png?v2" style="max-width: 300px">
</div>
<ul class="footer-menu-list app-icons h-list footer-social-new-ul m-b-50">
<li class="list-item">
<a href="https://itunes.apple.com/us/app/byteball/id1147137332?ls=1&mt=8" target="_blank">
<img src="static/images/app/icon-applestore.svg">
iOS<br />App Store
</a>
</li>
<li class="list-item">
<a href="https://play.google.com/store/apps/details?id=org.byteball.wallet" target="_blank">
<img src="static/images/app/android_robot.svg">
Android<br />Play Store
</a>
</li>
<li class="list-item">
<a href="/downloads/Obyte-win64.exe">
<img src="static/images/app/icon-microsoft.svg">
Windows<br />64bit
</a>
</li>
<li class="list-item">
<a href="/downloads/Obyte-win32.exe">
<img src="static/images/app/icon-microsoft.svg">
Windows<br />32bit
</a>
</li>
<li class="list-item">
<a href="/downloads/Obyte-osx64.dmg">
<img src="static/images/app/icon-mac-os-x.svg">
Mac<br />64bit
</a>
</li>
<li class="list-item">
<a href="/downloads/Obyte-x86_64.AppImage">
<img src="static/images/app/linux.png">
Linux<br />64bit
</a>
</li>
<li class="list-item">
<a href="https://github.com/byteball/obyte-gui-wallet/releases" target="_blank">
<img src="static/images/app/fi-social-github.svg">
GitHub<br />releases
</a>
</li>
</ul>
</div>
</div>
<p class="text-center">View public transactions on the <a href="https://explorer.obyte.org" target="_blank">DAG explorer</a>.</p>
<p class="text-center">Unofficial web wallet (partial functionality): <a href="https://wallet.byteballtalk.com/" target="_blank">wallet.byteballtalk.com</a> (<a href="https://github.com/gcc2ge/ObyteWebWallet" target="_blank">source code</a>).</p>
</div>
</section>
<!-- Pricing Tables end-->
<!-- Pricing Tables start 22-->
<section class="section section-price-table">
<div class="container">
<hr class="new-breaker-line">
<div class="row justify-content-md-center">
<div class="col-md-12">
<h1 class="section-heading section-heading--center section-heading--dark m-b-40 m-t-20 app-title">Testnet</h1>
<h4 class="m-b-30 section-heading--center noto-sans-display-regular" style="font-size: 20px; line-height: 1.5; max-width: 850px; margin: auto;">
<a href="testnet.html" target="_blank">Testnet wallet</a> is also available if you are a developer or want to experience the features of O<sub>byte</sub> without spending a penny.
</h4>
</div>
</div>
</div>
</section>
<!-- Pricing Tables end-->
<!-- Team start-->
<section class="section section-team p-b-40" id="team">
<div class="container">
<hr class="new-breaker-line">
<h3 class="section-heading section-heading--center m-b-45">Meet The Team</h3>
<ul class="row list-reset">
<li class="col-lg-12 col-md-12 col-sm-12" style="margin: auto">
<div class="col-lg-3 col-md-6 col-sm-6 section-heading--center" style="margin: auto;">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/tony.png" alt="Tony Churyumoff" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 41%;">
<li class="list-item">
<a class="fab fa-linkedin-in" href="https://www.linkedin.com/in/anton-churyumov-32112b7/" target="_blank"></a>
</li>
<li class="list-item">
<a class="fab fa-github" href="https://github.com/tonyofbyteball" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Tony Churyumoff
</h5>
<p class="box-author-job source-sans-pro-regular">Founder and Lead Developer</p>
</div>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/mikhail.jpg" alt="Mikhail Pustovalov" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-github" href="https://github.com/kakysha" target="_blank"></a>
</li>
</ul>
</div>
<div class="box-body">
<h5 class="box-title noto-sans-symbols-bold">
Mikhail Pustovalov
</h5>
<p class="box-author-job source-sans-pro-regular">Developer</p>
</div>
</div>
</li>
<li class="col-lg-3 col-md-6 col-sm-6 section-heading--center">
<div class="box box-style-2">
<div class="box-image">
<img src="static/images/team/evgenii.jpg" alt="Evgeniy Stulnikov" />
<div class="bg-overlay"></div>
<ul class="list-socials" style="margin: auto; left: 45%;">
<li class="list-item">
<a class="fab fa-github" href="https://github.com/xJeneKx" target="_blank"></a>
</li>
</ul>