forked from byteball/obyte-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.ig
1060 lines (946 loc) · 56.9 KB
/
index.html.ig
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>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!-->
<html lang="ig">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="description" content="Smart payments made simple">
<meta name="author" content="Byteball">
<link rel="icon" href="img/[email protected]">
<title>Byteball — smart payments made simple</title>
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" href="img/[email protected]">
<!-- Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<!-- Plugins -->
<link href="css/animations.css" rel="stylesheet">
<link href="https://cdn-images.mailchimp.com/embedcode/horizontal-slim-10_7.css" rel="stylesheet" type="text/css">
<!-- Worthy core CSS file -->
<link href="css/style.css?v11" rel="stylesheet">
</head>
<body class="no-trans">
<!--div id="particles-js"></div-->
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<!-- header start -->
<!-- ================ -->
<header class="header fixed clearfix navbar navbar-fixed-top">
<div class="container">
<div class="row main-navigation animated">
<div class="col-xs-2">
<div class="logo smooth-scroll text-center">
<a href="#banner"><img id="logo" src="img/icon-white-outline-1024.png" alt="Byteball logo" style="max-width: 55px;"></a>
</div>
<div class="site-name">
<a href="#banner">Byteball</a>
</div>
</div>
<!-- navbar start -->
<!-- ================ -->
<nav class="navbar navbar-default col-xs-10" role="navigation">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse scrollspy smooth-scroll" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="#why">Why</a></li>
<li><a href="#core">Features</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#dist">Distribution</a></li>
<li><a href="#tech">Technology</a></li>
<li><a href="https://wiki.byteball.org" target="_blank" title="Wiki">Wiki</a></li>
<li><a href="https://twitter.com/ByteballOrg" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.facebook.com/byteball.org" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://bitcointalk.org/index.php?topic=1608859.0" target="_blank" title="BitcoinTalk thread"><i class="fa fa-bitcoin"></i></a></li>
<li><a href="https://medium.com/byteball" target="_blank" title="Medium blog"><i class="fa fa-medium"></i></a></li>
<li><a href="https://slack.byteball.org" target="_blank" title="Slack"><i class="fa fa-slack"></i></a></li>
<li><a href="https://www.reddit.com/r/ByteBall/" target="_blank" title="Reddit"><i class="fa fa-reddit-alien"></i></a></li>
<li><a href="https://t.me/byteball" target="_blank" title="Telegram"><i class="fa fa-telegram"></i></a></li>
<!--<li class="social-dropdown">
<button class="btn-primary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
<li><a href="https://bitcointalk.org/index.php?topic=1608859.0" target="_blank" title="BitcoinTalk thread"><i class="fa fa-bitcoin"></i></a></li>
<li><a href="https://medium.com/byteball" target="_blank" title="Medium blog"><i class="fa fa-medium"></i></a></li>
<li><a href="https://byteball.slack.com" target="_blank" title="Slack"><i class="fa fa-slack"></i></a></li>
<li><a href="https://www.reddit.com/r/ByteBall/" target="_blank" title="Reddit"><i class="fa fa-reddit-alien"></i></a></li>
<li><a href="https://t.me/byteball" target="_blank" title="Telegram"><i class="fa fa-telegram"></i></a></li>
</ul>
</li>-->
<li class="dropdown lang">
<button class="btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<img class="flag" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAjUlEQVQoU2M004h/cY1XR5yRjYXh/68/DNjompOFDDjAMUYe0+7/u2YnMsS1XmFYVK2DlT41zwKr/inzljIw8lr3/xeXMsSpmYWLjWHLsTCsBqy9/4RhOLkA5Nc/334xYKPxhkHTxLn/c5KicUUTXnFwLHSyMPwPVpQhywBwLFDDBUcZGBisyHICA8NxAHf1hEyWpj+2AAAAAElFTkSuQmCC"/>
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
<!-- English -->
<li><a href="/index.html"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAYAAAB24g05AAAAjUlEQVQoU2M004h/cY1XR5yRjYXh/68/DNjompOFDDjAMUYe0+7/u2YnMsS1XmFYVK2DlT41zwKr/inzljIw8lr3/xeXMsSpmYWLjWHLsTCsBqy9/4RhOLkA5Nc/334xYKPxhkHTxLn/c5KicUUTXnFwLHSyMPwPVpQhywBwLFDDBUcZGBisyHICA8NxAHf1hEyWpj+2AAAAAElFTkSuQmCC"/>EN</a></li>
<!-- Chinese -->
<li><a href="/index.html.zh"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAABCUlEQVQ4T62SPU7DQBCFvx2b2MiItQsENNwmAoSQ6KHhBlwEcQloASHRQEPNBaip+CsCUTBxnN1FXsVWiig/iCdNs9r95s28VfeBvPSs3eAPSkTe1JXC7aUZQ+co1xzyAUsoLPizUClfk3T72cEDdnRK1xjisxb5zZDowSFKsXweURwVxCLTAe1MMzgJ0MctTNfROx0QXlqMdf5hJDLRReOgvarpbFk2rxOKZ8PXwQ+ZhJTOEU1x0QC2dUq5r8ifDEGqiJUgj9YD5nKwq1PMaMpqcbYqYOUinm8HVQq1+tZ62/lhn2CUwMwUxgGVg1nx1c2aHYwDFvlP/wO4C+T129r1RTrXdxOR919kd4kyT7xXQgAAAABJRU5ErkJggg=="/>ZH</a></li>
<!-- Danish -->
<li><a href="/index.html.da"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAkklEQVQ4T2Ocz8Bw5D8DgzUDEngycS6YJ5OfjCyMjX2McR4Dw/9gcR0USY5HZ8H8H3LGeA1Y+/IKw3AwoGni3P9l6TGEAgurfNfMJQyMIANKUqPIMqBn9jLsgch05yTYwH8q5uTFwr8bx8AamTSsyDPg19UjYI1s2jbkGfD90iGwRk49O6IMOMrAwIDiVhKS8nEA/C1UGlAm6fkAAAAASUVORK5CYII="/>DA</a></li>
<!-- Dutch -->
<li><a href="/index.html.nl"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAV0lEQVQ4T2PsY2CdzsDAkMFAHpjF2MfA+t9PiJcs7ZvefWYYBAY0TZz7vzg9jiwv9M5cxMA4DAwQsWz7r6RpSVYY3Lt+nIFxMBjQOpOBgTGNLD/8Z5gNAIXgOI0BqcDYAAAAAElFTkSuQmCC"/>NL</a></li>
<!-- Estonian-->
<li><a href="/index.html.et"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAYElEQVQ4T2PUz5j86OJfVlkGMoAe8+/HjAypM/5LOQSRoZ2B4dmBdQyDwQAGhv8mhoZkeeHM+fMMjAxD34CmiXP/F6fHkRUGvTMXMTAOvAHTl6zf/frtOxdy/CAmLLQXAOQZPLwK8Il6AAAAAElFTkSuQmCC"/>ET</a></li>
<!-- German -->
<li><a href="/index.html.de"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAVklEQVQ4T2NkYGCYzsDAkMFAHpjFyMDA8F9dXZ0s7Tdv3mQYBAbsYmT4rykjQ5YXrj95wsA4DAw41cDw3zRAgqwwOL3hBQPjoDBgJgMDQxpZfmBkmA0Ap4wzS+Kj08UAAAAASUVORK5CYII="/>DE</a></li>
<!-- Japanese -->
<li><a href="/index.html.ja"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAyElEQVQ4T2NsmjT3CMN/BmsGMgAjA8MxxqaJc/8Xp8eRoZ2BoXfmIgbaGPD/10+G13WVDJ9WLgO7jC88ikG0qZ2BkY0dxaU4XfCmpZ7h/dSJKIoFs/MZRGoaiTPgnp4aw9/Xr1AUM4uKMihduk2cAfcNNBj+vHyBophFTJxB8eJN4gx419vJ8LanHUWxcEklg1BxOXEG/P/zh+FtZwvD51XLwRp4wyIZhMtrGBhZWIgzgNhEQZ10MHPJ+v8v374j1lIUdWLCQgwAG1htQzGt2mgAAAAASUVORK5CYII="/>JA</a></li>
<!-- Spanish -->
<li><a href="/index.html.es"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAA9ElEQVQ4T2PsY2Y48p+BwZqBPHCMsZeZ4X+RjiZZ2vuuXGeg3IBTDQz/TUMswS64fvMPw8//ggzP3oky8HD+ZuDi+M0gIfiRQUbiO1YXnl5znIER2QCG/wwMB3ZbMqjNWsPAuvcQw4Nr+xhMpJYxMP7/SpwBF26JMYgZtDHw33nI8DEvg+Hb6uUM3x4tYtCTv0ScAYcuyDAomFUxnN63muHfg/sMkrYhDF+frmJwt3pEnAE/frIwvPjtznDm+DkGUREWBmV1DQYJjsMMLEw/iDMApurPHyYGFpZ/BKMWHIgDnw56mRmOMjAwWBF0LxYFjAwMxwHj5XGr1M6PtQAAAABJRU5ErkJggg=="/>ES</a></li>
<!-- French -->
<li><a href="/index.html.fr"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAATklEQVQ4T2N01Z8/nZHhfwYDErBJ+o/MhbOVK3PRxWcxuunP+68gHIIi0b+NE6sBH1SVUMQPvH3LMGrAaBhQLR3MZGBgSCMnKTMyMMwGACAMWONtJSw3AAAAAElFTkSuQmCC"/>FR</a></li>
<!-- Indonesian -->
<li><a href="/index.html.id"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAUElEQVQ4T2NcwM666/PP364MZAA+dtY9jJMZGP57qUqToZ2BYdvtpwyjBjxlYGyaOPd/cXocWYHYO3PRqAGgMJi+ZP3u12/fuZATimLCQnsBItU/YSoyxUcAAAAASUVORK5CYII="/>ID</a></li>
<!-- Italian -->
<li><a href="/index.html.it"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAUUlEQVQ4T2NkqPKazsDAkMGABJrEg5G5cLZmfhaK+H8GhlmMDFVe//XNdFEkjnm0YDXgv7c/ivj2vXsZRg0YDQNqpQPPmQwMjGnkJGUGBobZAEtLVo37EG2TAAAAAElFTkSuQmCC"/>IT</a></li>
<!-- Korean -->
<li><a href="/index.html.ko"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAABgElEQVQ4T2NsmjT3CMN/BmsGMgAjA8MxxqaJc/8Xp8fBtf///5+BkZERq3Hocr0zFzGgGLBm9SqGLZs3MSxYtASrAf6+3gwFhUUMjk7OYHkUA3Zs38aQnprCsGnrNgYDcQkGtpoqBqYjR8AK//r5MfxqbWc4ePQIQ1REOMP6TZsZzMzMUQ0IDvRnKCwqZrCxtWPg8PdlYDpzGsUVv6trGX5nZTNs2rSRYfPGDQyz585HNQDuv///GT7oGDNIfXjG8I2FnSErfCLDDT5ZhuJPxxm8u3JQDEXxAnIARXScZPB9epxhtYAhw+4fQmBN0rzMDLfqtHAbAAogkBccHJ0YqrY8Z5h48A2KYi9NPobVSfIM69auYdi0cQM4oFFcsG/vHob42BhwAGnpGzPkrnnKsP7iRwYOViYGD01ehi5/SYaLx/czJCXEM6zdsJHBxMQU1QCQdSCTQXjOvAVYoxEU0PkFhQx29g6Y0UhMQsSakGYuWf//5dt3xOjHUCMmLMQAAArvukNTiC2gAAAAAElFTkSuQmCC"/>KO</a></li>
<!-- Polish -->
<li><a href="/index.html.pl"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAUElEQVQ4T2OcvnTdrtdv3rsykAFEhYX2MDZNnPu/OD2ODO0MDL0zFzGMGrCIgXEyA8N/L1VpsgJx2+2nowaAwmAhO+vuTz9/u5ATinzsrHsBqd8/YFeteyoAAAAASUVORK5CYII="/>PL</a></li>
<!-- Russian -->
<li><a href="/index.html.ru"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAMCAYAAABr5z2BAAAAXklEQVQ4T2OcvnTdrtdv3rsykAFEhYX2MDZNnPu/OD2ODO0MDL0zFzEMAgMYNev/23mnkuWFQ1tnMzAOAwOWCzD8t5aRICsMjj55wcA4CAwQZJjJ8J8hjSw/MDLMBgDbJjvTGKiw3wAAAABJRU5ErkJggg=="/>RU</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
<div class="col-md-12 col-xs-12 col-sm-12">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- ================ -->
<div class="main-navigation animated">
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- textcoin block start -->
<!-- ================ -->
<div class="section clearfix" id="textcoin" style="display: none;">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-5 col-md-push-5 text-center text-md-left">
<h2>You received money!</h2>
<p class="android" style="display: none;">
Click the button below to open or install Byteball app on your device and claim your funds.
</p>
<p class="desktop">
<a href="#download">Download and install Byteball Wallet</a> first, then Click the button below to open app on your device and claim your funds.
</p>
<p id="warning" class="alert alert-danger m10" style="display: none">
Unfortunately, Byteball Wallet is not yet available for iOS platform. Try to use another device to claim your funds.
</p>
<p><button id="openInApp" class="btn btn-lg btn-success m10">Receive funds</button></p>
<p>
If the button doesn't work, <a href="#download">install 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-md-2"></div>
<div class="col-xs-12 col-md-3 col-md-offset-2 col-md-pull-7 text-center">
<img src="img/inphone/wallet.png?v2" style="display: inline; max-height: 547px" />
</div>
</div>
</div>
</div>
<!-- textcoin block end -->
<!-- banner start -->
<!-- ================ -->
<div id="banner" class="banner">
<div class="banner-caption">
<div class="container">
<div class="row smooth-scroll">
<div class="row text-center logo-main">
<svg height="128" width="128">
<circle cx="64" cy="64" r="56" stroke="#2c3e50" stroke-width="8" fill="white" />
</svg>
<div style="margin-top: -15px;">Byteball</div>
</div>
<div class="space"></div>
<div class="row text-center">
<h2>Smart payments made simple</h2>
<p><a class="btn btn-lg btn-success" href="#download" role="button">Get Byteball wallet</a></p>
<p><a href="Byteball.pdf"><i class="fa fa-file-text-o"></i> Read the whitepaper</a></p>
</div>
<div class="space"></div>
<!--p class="lead what-is">Byteball is an alternative legal system based on smart contracts.</p>
<p class="lead what-is">When a contract is created on Byteball, it just works exactly as agreed upon. Trust in the counterparty and reliance on the slow and expensive conventional legal system are not required any more as the contracts are enforced by the immutable rules of the decentralized platform. See below the types of contracts available today.</p-->
<p class="lead what-is">Byteball enables trust where trust couldn’t exist before.</p>
<p class="lead what-is">When a contract is created on Byteball platform, it can be trusted to work exactly as agreed upon. Why? Because it is validated by multiple nodes on the decentralized network, which all follow the same immutable rules. The counterparty, even if it is a total stranger, has to behave honestly because only the rules have authority. Such a contract is called a smart contract. See below for examples of working smart contracts available today.</p>
</div>
</div>
<!-- /.countdown-wrapper -->
</div>
</div>
<!-- banner end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="why" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Why use Byteball?</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Risk-free conditional smart payments</h2>
<p class="lead text-left">Byteball allows you to do something that traditional currencies can't: <a href="https://medium.com/byteball/making-p2p-great-again-fe9e20546a4a"
target="_blank">conditional payments.</a></p>
<p>You set a condition when the payee receives the money. If the condition is not met, you get your money back.</p>
<div class="space"></div>
</div>
<div class="col-md-6">
<!-- <div class="frame-it"></div> -->
<img src="img/inphone/payment-with-bind-full.png" alt="" class="img-feature">
<!-- <img src="img/inphone/bind.png" alt="" class="max-w320"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">P2P insurance</h2>
<p class="lead text-left">Hedge against negative events.</p>
<p>Buy insurance from peers to get paid in case a negative event occurs. Sell insurance for profit.</p>
<p>Insurance is just <a href="https://medium.com/byteball/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.</p>
<p>To insure against flight delay, find your counterpart in <a href="https://byteball.slack.com/messages/C54CDJATB/"
target="_blank">#p2p_insurance</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>,
create a contract, and if your flight arrives late, <a href="byteball:AuP4ngdv0S/[email protected]/bb#0000">chat with flight delays oracle</a> to have it post the data about the delay, then unlock the contract.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<img src="img/inphone/flight-delays-oracle-full.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/flight-delays-oracle-top-no-border.png" alt="" class="img-wallet-left"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Prediction markets</h2>
<p class="lead text-left">Make money by correctly predicting future events.</p>
<p>Create a P2P smart contract that can be unlocked if a specific event occurs. Use it for <a href="https://medium.com/byteball/making-p2p-great-again-episode-iii-prediction-markets-f40d49c0abab"
target="_blank">betting on price movements</a>, sports betting, and insurance.</p>
<p>Find your counterpart in <a href="https://byteball.slack.com/messages/C4UMVU4QZ/" target="_blank">#prediction_markets</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack.</a></p>
<div class="space"></div>
</div>
<div class="col-md-6">
<img src="img/inphone/offer-contract.png" alt="" class="img-feature">
<!-- <img src="img/inphone/offer-contract-unlock-condition.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">P2P betting</h2>
<p class="lead text-left">Bet against other users on sports events.</p>
<p>Find your counterpart in <a href="https://byteball.slack.com/messages/C4UMVU4QZ/" target="_blank">#prediction_markets</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a> and create a contract
that can be unlocked by you or your peer depending on the results of a future game.</p>
<p>After the result is known, <a href="byteball:[email protected]/bb#0000">chat with sports oracle</a> to have it post the data about the outcome, then unlock the contract.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<!-- <div style="position:relative; display: inline-block;">
<div class="frame-it1"></div> -->
<img src="img/inphone/sports-oracle-chat-full.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/payment-in-chat.png" alt="" class="img-wallet-left max-w320"> -->
<!-- </div> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Textcoins</h2>
<p class="lead text-left">Send cryptocurrency to email or via chat.</p>
<p>The sender just writes an email address where he would normally write a Byteball address. The recipient just clicks a link received in email or chat. If the recipient is not in Byteball yet, he will be prompted to install the wallet. On Android, the install is started automatically. <a href="https://medium.com/byteball/sending-cryptocurrency-to-email-5c9bce22b8a9" target="_blank">Learn more</a>.</p>
<div class="space"></div>
</div>
<div class="col-md-6">
<!-- <div class="frame-it"></div> -->
<img src="img/inphone/send-crypto-to-email.png" alt="" class="img-feature">
<!-- <img src="img/inphone/sports-oracle-chat-top-no-border.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">Sovereign identity</h2>
<p class="lead text-left">Store your ID in your wallet, choose what to disclose and to whom.</p>
<p>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/byteball/bringing-identity-to-crypto-b35964feee8e" target="_blank">Learn more</a>.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<img src="img/inphone/attestation-choose-profile-pixelated.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/merchant-chatbot-top.png" alt="" class="img-wallet-left"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">P2P payments in chat</h2>
<p class="lead text-left">Chat and pay in the same app just by clicking links.</p>
<div class="space"></div>
</div>
<div class="col-md-6">
<!-- <div class="frame-it"></div> -->
<img src="img/inphone/payment-in-chat-full.png" alt="" class="img-feature">
<!-- <img src="img/inphone/sports-oracle-chat-top-no-border.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-4 col-md-push-6">
<h2 class="title text-left">Chatbots</h2>
<p class="lead text-left">Talk to a bot like you would talk to a human.</p>
<p>Shop by chatting with a merchant's bot, pay in two clicks. Exchanges and other services are also easy to use in conversational
interface.</p>
<div class="space"></div>
</div>
<div class="col-md-6 col-md-offset-2 col-md-pull-6 text-right">
<img src="img/inphone/merchant-chatbot-1.png" alt="" class="img-wallet-left img-feature">
<!-- <img src="img/inphone/merchant-chatbot-top.png" alt="" class="img-wallet-left"> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Bot Store</h2>
<p class="lead text-left">Easily discover and add new chatbots via the built-in Bot Store.</p>
<p>Developers have instant access to all users by publishing their chatbot on the Bot Store. See the <a href="https://github.com/byteball/byteballcore/wiki/Writing-chatbots-for-Byteball"
target="_blank">developer guide about building chatbots.</a></p>
<div class="space"></div>
</div>
<div class="col-md-6">
<img src="img/inphone/bot-store.png" alt="" class="img-feature">
<!-- <img src="img/inphone/bot-store-top-no-border.png" alt=""> -->
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section end -->
<div class="section clearfix">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Untraceable currency: Blackbytes</h2>
<p class="lead text-left">Cash-like privacy.</p>
<p>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.</p>
<p>Use built-in TOR switch straight from the wallet to increase your privacy even further.</p>
</div>
<div class="col-md-6" style="position: relative">
<!--img src="img/black-byteball-logo-big.png" alt="" style="max-width: 142px; margin-top: 60px; margin-left: 110px;"-->
<svg height="128" width="128" style="position: relative">
<circle cx="64" cy="64" r="56" stroke="#2c3e50" stroke-width="8" fill="transparent" />
</svg>
<i class="fa fa-eye-slash" style="font-size: 80px; position: absolute; top: 19px; left: 39px; color: #2c3e50"></i>
<!-- <div class="space"></div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="space"></div>
<div class="row">
<div class="col-md-5 col-md-offset-1">
<h2 class="title text-left">Users help each other</h2>
<p class="lead text-left">Secure each other's transactions.</p>
<p>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 we call it Byteball).</p>
</div>
<div class="col-md-6">
<img src="img/DAG-transparent.png" alt="" style="margin-top: 60px;">
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="core" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Core features</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- ================ -->
<div class="section clearfix">
<div class="container ">
<div class="row">
<div class="col-sm-4 col-sm-offset-2 text-right core-res-left">
<h3 class="media-heading">Atomic exchange</h3>
<p>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>
<div class="space-res"></div>
</div>
<div class="col-sm-4">
<h3 class="media-heading">Regulated assets</h3>
<p>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>
</div>
</div>
<div class="space"></div>
<div class="row">
<div class="col-sm-4 col-sm-offset-2 text-right core-res-left">
<h3 class="media-heading">Multi signature</h3>
<p>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>
<div class="space-res"></div>
</div>
<div class="col-sm-4">
<h3 class="media-heading">On-chain oracles</h3>
<p>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>
</div>
</div>
<div class="space"></div>
<div class="row">
<div class="col-sm-4 col-sm-offset-2 text-right core-res-left">
<h3 class="media-heading">Immutable storage</h3>
<p>Once stored in the Byteball database, the data can neither be revised nor removed.</p>
<div class="space-res"></div>
</div>
<div class="col-sm-4">
<h3 class="media-heading">Settlement finality</h3>
<p>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>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 id="download" class="text-center">Get your Byteball wallet</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<div class="section clearfix ">
<div class="container">
<div class="row apps">
<div class="col-md-8 col-md-offset-2 text-center">
<div>
<img style="max-width: 33%;" src="img/inphone/wallet.png?v2" />
</div>
<div class="space"></div>
<div class="app">
<div><a target="_blank" href="https://itunes.apple.com/us/app/byteball/id1147137332?ls=1&mt=8"><img src="img/icon-applestore.svg"/></a></div>
<div><a target="_blank" href="https://itunes.apple.com/us/app/byteball/id1147137332?ls=1&mt=8">iOS</a></div>
</div>
<div class="app">
<div><a target="_blank" href="https://play.google.com/store/apps/details?id=org.byteball.wallet"><img src="img/android_robot.svg"/></a></div>
<div><a target="_blank" href="https://play.google.com/store/apps/details?id=org.byteball.wallet">Android</a></div>
</div>
<div class="app">
<div><a href="/downloads/Byteball-win64.exe"><img src="img/icon-microsoft.svg"/></a></div>
<div><a href="/downloads/Byteball-win64.exe">Windows</a></div>
</div>
<div class="app">
<div><a href="/downloads/Byteball-osx64.dmg"><img src="img/icon-mac-os-x.svg"/></a></div>
<div><a href="/downloads/Byteball-osx64.dmg">Mac</a></div>
</div>
<div class="app">
<div><a href="/downloads/Byteball-linux64.zip"><img src="img/linux.png"/></a></div>
<div><a href="/downloads/Byteball-linux64.zip">Linux</a></div>
</div>
<div class="app">
<div><a target="_blank" href="https://github.com/byteball/byteball"><img src="img/fi-social-github.svg"/></a></div>
<div><a target="_blank" href="https://github.com/byteball/byteball">GitHub</a></div>
</div>
<div class="space"></div>
<ul class="list-unstyled text-left">
<li><i class="fa fa-caret-right pr-10 text-colored"></i> <a href="byteball:[email protected]/bb#0000">Buy or sell bytes</a> by chatting with a trading bot</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> <a href="https://medium.com/byteball/making-p2p-great-again-episode-ii-bitcoin-exchange-d98adfbde2a5" target="_blank">P2P exchange bytes vs bitcoins</a>,
get your merkle proof by chatting with <a href="byteball:A7C96Bhg4Gpb2Upw/Ky/[email protected]/bb#0000">BTC Oracle</a><br></li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> View public transactions on the <a href="https://explorer.byteball.org" target="_blank">DAG explorer</a></li>
<!-- <li><i class="fa fa-caret-right pr-10 text-colored"></i> Dignissimos molestiae necessitatibus</li> -->
</ul>
<!-- <h4 style="font-weight: 500;">After installing, <a href="byteball:[email protected]/bb#0000">chat with the Transition Bot</a> to participate in the next distribution round</br> -->
<!-- <a href="byteball:[email protected]/bb#0000">Buy or sell bytes</a> by chatting
with a trading bot</br> -->
<!-- <a href="https://medium.com/byteball/making-p2p-great-again-episode-ii-bitcoin-exchange-d98adfbde2a5" target="_blank">P2P exchange bytes vs bitcoins</a>,
get your merkle proof by chatting with <a href="byteball:A7C96Bhg4Gpb2Upw/Ky/[email protected]/bb#0000">BTC Oracle</a></br>
View public transactions on the <a href="https://explorer.byteball.org" target="_blank">DAG explorer</a></h4> -->
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="dist" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Fair initial distribution</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<p class="lead text-left">Free distribution for mass adoption.</p>
<p>Mass adoption requires wide distribution, that's why 99% of all bytes and blackbytes are to be distributed for free. Currently, we use several ways to distribute them:</p>
<ul>
<li><a href="https://medium.com/byteball/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. <a href="https://medium.com/byteball/byteball-cashback-program-9c717b8d3173" target="_blank">Fill out the application form</a> or <script>document.write('<a href="mailto:byteball'); document.write('@'); document.write('byteball.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.</li>
<li><a href="https://medium.com/byteball/distribution-to-verified-users-and-referrals-ed00b9b2a30e" target="_blank">Verification rewards and referral rewards</a> to those who verify their real name.</li>
<li>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>.</li>
<li><a href="https://medium.com/byteball-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>.</li>
</ul>
<p>In the past, we also distributed Bytes to BTC holders and existing holders of Bytes. Users used to link their BTC and Byteball addresses and were receiving new Bytes in proportion to their existing balances in BTC and Bytes. This distribution was split into several rounds. 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%:</p>
<ul>
<li>2nd round on Feb 11, 2017: 121,763 BTC linked, 1.8% distributed;</li>
<li>3rd round on Mar 12, 2017: 129,139 BTC linked, 2.0% distributed;</li>
<li>4th round on Apr 11, 2017: 145,441 BTC linked, 2.3% distributed;</li>
<li>5th round on May 10, 2017: 207,672 BTC linked, 2.9% distributed;</li>
<li>6th round on Jun 9, 2017: 453,621 BTC linked, 6.6% distributed;</li>
<li>7th round on Jul 9, 2017: 949,004 BTC linked, 11.0% distributed.</li>
<li>8th round on Aug 7, 2017: 1,395,899 BTC linked, 16.0% distributed.</li>
<li>9th round on Sep 6, 2017: 1,306,573 BTC linked, 5.7% distributed.</li>
<li>10th round on Nov 4, 2017: 1,093,155 BTC linked, 6.1% distributed.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg">
<div id="tech" class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2 class="text-center">Completely new technology</h2>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<p class="lead text-left">Unbounded scalability, fast confirmations, no miners, no blocks, low fees.</p>
<p>Byteball 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.</p>
<p>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 when miners create a new block and there is no guesswork whether miners will include your transaction in the block.</p>
<p>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. See the <a href="Byteball.pdf">white paper</a> for details.</p>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<h2 class="text-left">Testnet</h2>
<p><a href="testnet.html">Testnet wallet</a> is also available if you are a developer or want to experience the features
of Byteball without spending a penny.</p>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<h2 class="text-left">Community and Support</h2>
<p>Join Byteball on <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>! There are many channels with lively discussions about future developments, trading, auctions,
to name just a few. If you have any issues with the Byteball wallet, our competent support staff will take care of
it at the #helpdesk channel in our slack <a href="https://slack.byteball.org" target="_blank" title="Slack">slack.byteball.org</a>.</p>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix ">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row margin-zero">
<h2 class="text-left">Exchanges</h2>
<p>You can buy or sell bytes without leaving the wallet by <a href="byteball:[email protected]/bb#0000">chatting with a trading bot</a>.
You can also trade on the exchanges listed below.</p>
<p>To buy or sell blackbytes, see or post orders in <a href="https://byteball.slack.com/messages/C3KFYK5H7/" target="_blank">#trading_blackbyte</a> channel on our <a href="https://slack.byteball.org" target="_blank" title="Slack">Slack</a>, then exchange peer-to-peer
using <a href="https://medium.com/byteball/making-p2p-great-again-fe9e20546a4a" target="_blank">bound (conditional) payments.</a></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<a class='exchange-icon' href="https://bittrex.com/Market/Index?MarketName=BTC-GBYTE" target="_blank"><img src="img/exchanges/bittrex-logo-white-no-tagline.png" alt="Bittrex"></a>
<a class='exchange-icon' style='margin-bottom: 6px;' href="https://cryptox.pl" target="_blank"><img src="https://cryptox.pl/images/logo.png" alt="Cryptox"></a>
<a class='exchange-icon' href="https://www.cryptopia.co.nz/Exchange/?market=GBYTE_BTC" target="_blank"><img src="img/exchanges/Cryptopia-Light2x.png" alt="Cryptopia"></a>
<a class='exchange-icon' href="https://changelly.com/exchange/btc/gbyte" target="_blank"><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAAA1CAMAAADMKHGJAAADAFBMVEUQ0Hj///8Q0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HgQ0HisG82fAAAA/3RSTlMAAAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gISIjJCUmJygpKissLS4vMDEyMzQ1Njc4OTo7PD0+P0BBQkNERUZHSElKS0xN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" alt="Changelly"></a>
<a class='exchange-icon' href="https://bitsquare.io" target="_blank"><img src="img/exchanges/bitsquare.png" alt="bitsquare"></a>
<a class='exchange-icon' style='margin-bottom: 12px;' href="https://www.kaiserex.com" target="_blank"><img src="img/exchanges/kaiserex-logo.png" alt="Kaiserex"></a>
<!--a class='exchange-icon' href="https://cryptochangex.com" target="_blank"><img src="img/exchanges/cryptochangex.png" alt="Cryptochangex"></a-->
<a class='exchange-icon' style='margin-bottom: 11px;' href="https://kkex.com" target="_blank"><img src="img/exchanges/KKEX_logo.png" alt="KKEX"></a>
</div>
</div>
</div>
<div class="gap">
<div id="mc_embed_signup">
<form action="https://byteball.us12.list-manage.com/subscribe/post?u=8375ddcbb541577ef0292094a&id=10f3306c05" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<label for="mce-EMAIL">Subscribe for the latest Byteball updates: </label>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Email address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_8375ddcbb541577ef0292094a_10f3306c05" tabindex="-1" value=""></div>
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
</div>
</form>
</div>
</div>
</div>
<!-- sectionimg/exchanges/bitsqare.png end -->
<!-- footer start -->
<!-- Site footer -->
<footer class="footer text-center">
<!--p>© 2016 Byteball</p-->
<a href="terms.html">Terms</a>
<a href="privacy.html">Privacy</a>
<a href="https://docs.google.com/document/d/1LXYchOifJ8eRJ8ZKRNr1K-jkiFYWLiHS1yaUpRMf8JA/edit?usp=sharing" target="_blank">Media Kit</a>
<script>
document.write('<a href="mailto:byteball'); document.write('@'); document.write('byteball.org">byteball'); document.write('@'); document.write('byteball.org</a>');
</script>
<a href="https://twitter.com/ByteballOrg" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a>
<a href="https://www.facebook.com/byteball.org" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a>
<a href="https://bitcointalk.org/index.php?topic=1608859.0" target="_blank" title="BitcoinTalk thread"><i class="fa fa-bitcoin"></i></a>
<a href="https://medium.com/byteball" target="_blank" title="Medium"><i class="fa fa-medium"></i></a>
<a href="https://slack.byteball.org" target="_blank" title="Slack"><i class="fa fa-slack"></i></a>
<a href="https://www.reddit.com/r/ByteBall/" target="_blank" title="Reddit"><i class="fa fa-reddit-alien"></i></a>
<a href="https://t.me/byteball" target="_blank" title="Telegram"><i class="fa fa-telegram"></i></a>
</footer>
<div id="jumioModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Scan finished</h4>
</div>
<div class="modal-body">
<p>Now Jumio will process your photos, it usually takes a few minutes but sometimes may take hours.</p>
<p>The attestation bot will let you know as soon the result is known.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!-- JavaScript files placed at the end of the document so the pages load faster
================================================== -->
<!-- Jquery and Bootstap core js files -->
<script type="text/javascript" src="plugins/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- Modernizr javascript -->
<script type="text/javascript" src="plugins/modernizr.js"></script>
<!-- Initialization of Plugins -->
<script type="text/javascript" src="js/template.js?v5"></script>
<script src="js/kinetic.js"></script>
<script src="js/jquery.final-countdown.min.js"></script>
<script>
if (location.hash === '#jumio-done' || location.search === '?jumio-done')
$("#jumioModal").modal();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83607123-1', 'auto');
ga('send', 'pageview');
</script>
<script>
var NativeAppLauncher = (function() {
var textcoin = window.location.hash.replace("#textcoin?", "");
var IOS_VERSION_RE = /OS\s+(\d)_/;
var timers = [];
var userAgent = window.navigator.userAgent;
var isAndroid = function() {
return /Android/.test(userAgent);
};
var isIOS = function() {
return /(?:i(?:Phone|P(?:o|a)d))/.test(userAgent);
};
var iOSVersion = function() {
return isIOS() ? parseInt(userAgent.match(IOS_VERSION_RE)[1], 10) : 0;
};
var isChrome = function() {
// Opera (OPR) also identifies itself as Chrome and has to be corrected for.
// OPR is used on Android but on iOS it is OPiOS where Opera does NOT identify as Chrome. Go figure!
// Probably because on iOS it is Opera Mini and has all browser have to be based on Safari/WebKit.
return /Chrome/.test(userAgent) && !/OPR/.test(userAgent);
};
var isFirefox = function() {
return /Firefox/.test(userAgent);
};
return {
// Stop any running timers.
clearTimers: function() {
timers.map(clearTimeout);
timers = [];
},
getDeepLink: function() {
return "byteball:textcoin?" + textcoin;
},
openApp: function(deeplink, storeURI) {
console.log(textcoin);
var launcher = this;
var storeLaunched = false;
var gotStoreURI = "string" == typeof storeURI;
// If this handler is part of the UI thread, i.e. the `direct` result of a user action then
// redirecting to the App Store will happen immediately. When not part of the UI thread however,
// the redirect will bring up an Open in App dialog. Unless there is already a dialog showing,
// in which case the redirect dialog will wait for the currently shown dialog to be dismissed.
gotStoreURI && timers.push(window.setTimeout(function() {
if (!isIOS()) {
storeLaunched = true;
window.top.location = storeURI;