forked from Betoken/Betoken.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1026 lines (913 loc) · 50.6 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" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="alternate" hreflang="ja" href="https://betoken.fund/index-ja.html" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Libs CSS -->
<link rel="stylesheet" href="assets/fonts/feather/feather.min.css">
<link rel="stylesheet" href="assets/libs/highlight.js/styles/vs2015.css">
<link rel="stylesheet" href="assets/libs/quill/dist/quill.core.css">
<link rel="stylesheet" href="assets/libs/select2/dist/css/select2.min.css">
<link rel="stylesheet" href="assets/libs/flatpickr/dist/flatpickr.min.css">
<link rel='stylesheet' href='https://widget.kyber.network/v0.6.4/widget.css'>
<link rel="icon" type="image/png" href="assets/img/betoken-icon-default.png">
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/css/theme.min.css">
<title>Betoken | The crowd-powered crypto asset management protocol</title>
<meta content="An open source protocol for crypto assets management connecting capital and talent" name="description" />
<meta content="@betokenfund" name="twitter:site" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="Betoken | The crowd-powered crypto asset management protocol" name="twitter:title" />
<meta content="Betoken is an open source protocol for crypto assets management connecting capital and talent" name="twitter:description" />
<meta content="https://betoken.fund/assets/img/illustrations/og-twitter-image.png" name="twitter:image" />
<meta content="Betoken | The crowd-powered crypto asset management protocol" itemprop="name" />
<meta content="Betoken is an open source protocol for crypto assets management connecting capital and talent" itemprop="description" />
<meta content="assets/img/illustrations/og-twitter-image.png" itemprop="image" />
<meta content="Betoken | The crowd-powered crypto asset management protocol" property="og:title" />
<meta content="https://betoken.fund" property="og:url" />
<meta content="https://betoken.fund/assets/img/illustrations/og-twitter-image.png" property="og:image" />
<meta content="Betoken is an open source protocol for crypto assets management connecting capital and talent" property="og:description" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116797881-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116797881-1');
</script>
</head>
<body>
<!-- MODALS
================================================== -->
<!-- Get Updates modal -->
<div class="modal fade fixed-right" id="modalEmailUpdates" tabindex="-1" role="dialog" aria-labelledby="Get update modal by email" aria-hidden="true">
<div class="modal-dialog modal-dialog-vertical bg-white" role="document">
<div class="modal-content">
<div class="modal-body pb-5">
<!-- Close -->
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class="header text-center">
<div class="header-body">
<h6 class="header-pretitle">
Betoken Report
</h6>
<h1 class="header-title">
Get notified by email
</h1>
</div>
</div>
<!-- Text -->
<p class="text-center text-muted mb-5">
Be the first to know about new investments cycles and Betoken's next big things 👇.
</p>
<form action="https://fund.us17.list-manage.com/subscribe/post?u=9c0647dcb587985ed6121cdf6&id=150e0f091e" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate w-100" target="_blank" novalidate>
<div class="input-group input-group-lg mb-4">
<input class="form-control" type="email" value="" name="EMAIL" id="mce-EMAIL" placeholder="[email protected]" required>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_9c0647dcb587985ed6121cdf6_150e0f091e" tabindex="-1" value=""></div>
<div class="input-group-append">
<button class="btn btn-success border-0" name="subscribe" id="mc-embedded-subscribe">
<span class="fe fe-send"></span>
</button>
</div>
</div>
</form>
<div class="row justify-content-center">
<div class="col-auto mb-5">
<a href="https://t.me/betokenfund" class="btn btn-rounded-circle btn-white mr-3" target="_blank">
<img class="mx-auto" src="assets/img/telegram.svg" alt="telegram logo" height="20">
</a>
<a href="https://twitter.com/betokenfund" class="btn btn-rounded-circle btn-white mr-3" target="_blank">
<img class="mx-auto" src="assets/img/twitter.svg" alt="twitter logo" height="20">
</a>
<a href="https://medium.com/betoken" class="btn btn-rounded-circle btn-white mr-3" target="_blank">
<img class="mx-auto" src="assets/img/medium.svg" alt="medium logo" height="20">
</a>
<a href="https://github.com/Betoken" class="btn btn-rounded-circle btn-white" target="_blank">
<img class="mx-auto" src="assets/img/github.svg" alt="medium logo" height="20">
</a>
</div>
</div>
</div>
</div>
</div>
</div><!-- / modal -->
<!-- Modal: sidebar -->
<div class="modal fade" id="sidebarModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-dialog-vertical modal-sidebar-nav" role="document">
<div class="modal-content">
<div class="modal-body px-0 px-md-4">
<nav class="navbar navbar-vertical fixed-left navbar-expand-sm navbar-light border-0">
<!-- Brand -->
<a class="navbar-brand text-left" href="index.html">
<img src="assets/img/logo.svg" class="navbar-brand-img" alt="Betoken logo" height="36"> <span class="text-secondary ml-2 h3 mb-0">Betoken</span>
</a>
<!-- Collapse -->
<div class="collapse navbar-collapse show" id="navbarVertical">
<!-- Navigation -->
<ul class="navbar-nav mb-md-3">
<li class="nav-item">
<a class="nav-link" href="https://betoken.fund">
<i class="fe fe-home"></i>Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="funding.html">
<i class="fe fe-dollar-sign"></i>Funding
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="friends.html">
<i class="fe fe-users"></i>Friends of Betoken
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://betoken.gitbook.io/docs/connect-your-capital/what-is-the-fees-structure" target="_blank">
<i class="fe fe-percent"></i> Fees & liquidity
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://medium.com/betoken" target="_blank">
<i class="fe fe-feather"></i> From the blog
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://t.me/betokenfund" target="_blank">
<i class="fe fe-send"></i> Telegram
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/Betoken/Whitepaper/" target="_blank">
<i class="fe fe-book"></i> White Paper
</a>
</li>
</ul>
<hr class="navbar-divider my-3">
<p class="small text-secondary">Be part of the open finance</p>
<a class="btn btn-sm btn-success" href="start.html">Sign Up Now</a>
<hr class="navbar-divider my-3">
<!-- Navigation -->
<ul class="navbar-nav mb-md-3">
<li class="nav-item">
<a class="nav-link small" href="https://betoken.gitbook.io/docs/">
Help
</a>
</li>
<li class="nav-item">
<a class="nav-link small" href="https://forms.gle/GowN7Lx3hgwozXFY8" target="_blank">
Send feedback
</a>
</li>
</ul>
</div> <!-- / .navbar-collapse -->
</nav>
</div>
</div>
</div>
</div>
<!-- NAVIGATION
================================================== -->
<!-- PREHEADER --
<a href="funding.html">
<div class="main-container bg-primary">
<div class="container">
<div class="row justify-content-center align-items-center p-3">
<div class="col-auto">
<p class="d-inline-block mb-0 text-white mr-2 mb-0">We rely on donations to keep working on the project. Support Betoken by making a donation <i class="fe fe-arrow-right ml-2"></i></p>
</div>
</div>
</div>
</div>
</a>
-->
<div class="bg-ellipses bg-dark pb-7">
<!-- NAVIGATION
================================================== -->
<nav class="navbar navbar-expand-lg bg-transparent border border-0 mb-5" id="topnav">
<div class="container">
<div class="row d-flex justify-content-between no-gutters w-100">
<div class="col d-flex align-items-center">
<!-- Brand -->
<a class="text-white" href="#" data-toggle="modal" data-target="#sidebarModal"><i class="fe fe-menu mr-3 h1 mb-0"></i></a>
<a class="navbar-brand mr-auto d-flex align-items-center" href="https://betoken.fund">
<img src="assets/img/logo.svg" alt="..." class="navbar-brand-img">
<span class="text-white ml-2 h3 mb-0">Betoken</span>
</a>
</div>
<div class="col ml-auto d-flex justify-content-end">
<div class="navbar-user">
<a class="text-white mr-5 d-none d-md-flex" href="https://betoken.gitbook.io/docs/" target="_blank">Help</a>
<a class="text-white mr-5 d-none d-md-flex" href="friends.html">Friends</a>
<a class="text-white mr-5 d-none d-md-flex" href="https://medium.com/betoken" target="_blank">Blog</a>
<a class="text-white mr-5 d-none d-md-flex" href="/index-jp.html">日本語</a>
<div class="mr-4 d-none d-md-flex">
<a class="text-white" data-toggle="modal" href="#modalEmailUpdates">
<span class="icon active">
<i class="fe fe-bell"></i>
</span>
</a>
</div>
</div>
<ul class="navbar-nav">
<li class="nav-item mr-2 d-flex d-md-none align-items-center">
<a class="text-white btn btn-link" href="/index-jp.html">
日本語
</a>
</li>
<li class="nav-item mr-2 d-none d-md-flex align-items-center">
<a class="text-white btn btn-link" href="https://betoken.fund/portal/#/dashboard">
Sign in
</a>
</li>
<li class="nav-item mr-2 d-none d-md-flex align-items-center">
<a class="text-white btn btn-success" href="start.html">
Sign Up
</a>
</li>
</ul>
</div>
</div>
</div> <!-- / .container -->
</nav>
<div class="container">
<div class="row justify-content-center mb-lg-5">
<div class="col col-lg-10 text-center">
<!-- Subtitle -->
<h6 class="header-pretitle text-muted">Meet Betoken</h6>
<!-- Title -->
<h1 class="display-1 d-none d-lg-block text-white mb-5">
The crowd-powered crypto asset management protocol
</h1>
<h1 class="display-4 d-block d-lg-none text-white mb-5">
The crowd-powered crypto asset management protocol
</h1>
<a class="btn btn-success btn-lg mb-3 py-3 px-5" href="start.html">Get started</a>
<p class="text-muted small">Already using Betoken? <a class="text-white" href="https://betoken.fund/portal/#/dashboard" target="_blank">Sign in</a>.</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
</div> <!-- / .bg-ellipses -->
<!-- MAIN CONTENT
================================================== -->
<div class="main-content">
<!-- CARDS -->
<div class="container mt-n6 mb-6">
<div class="row justify-content-center">
<div class="col-12 col-lg-6 col-xl-8">
<!-- Card -->
<div class="card border-0">
<div class="card-header"><p class="d-flex align-items-center mb-0"><span class="text-success mr-2 h3 mb-0">●</span>Live on Ethereum Mainnet <a class="ml-auto text-secondary" href="https://betoken.fund/portal/#/dashboard" target="_blank"> <span class="d-none d-lg-inline-block">Try it</span> <i class="fe fe-external-link"></i></a></p></div>
<div class="card-body">
<div class="row">
<div class="col text-center">
<p class="text-secondary mb-0"><i class="fe fe-info mr-2"></i>Betoken's performances will pop up here in a few days after Mainnet launch.</p>
</div>
</div>
<div class="row align-items-center d-none">
<div class="col-12 col-lg-3 mb-4 mb-lg-0">
<div class="row">
<div class="col-auto">
<!-- Icon -->
<span class="h2 fe fe-activity text-muted mb-0"></span>
</div>
<div class="col">
<!-- Title -->
<h6 class="card-title text-uppercase text-muted mb-2">
ROI (1 Month)
</h6>
<!-- Heading -->
<span class="1-month-roi h2 mb-0">
<div class="spinner-grow spinner-grow-sm" role="status">
<span class="sr-only">Loading...</span>
</div>
</span>
<span class="h2 mb-0 mr-1">
%
</span>
</div>
</div>
</div>
<div class="col-12 col-lg-3 mb-4 mb-lg-0">
<div class="row">
<div class="col-auto">
<!-- Icon -->
<span class="h2 fe fe-sunrise text-muted mb-0"></span>
</div>
<div class="col">
<!-- Title -->
<h6 class="card-title text-uppercase text-muted mb-2">
ROI (Since inception)
</h6>
<!-- Heading -->
<span class="inception-roi h2 mb-0">
<div class="spinner-grow spinner-grow-sm" role="status">
<span class="sr-only">Loading...</span>
</div>
</span>
<span class="h2 mb-0 mr-1">
%
</span>
</div>
</div>
</div>
<div class="col-12 col-lg-3 mb-4 mb-lg-0">
<div class="row">
<div class="col-auto">
<!-- Icon -->
<span class="h2 fe fe-shield text-muted mb-0"></span>
</div>
<div class="col">
<!-- Title -->
<h6 class="card-title text-uppercase text-muted mb-2">
Sortino ratio
</h6>
<!-- Heading -->
<span class="sortino-ratio h2 mb-0">
<div class="spinner-grow spinner-grow-sm" role="status">
<span class="sr-only">Loading...</span>
</div>
</span>
</div>
</div>
</div>
<div class="col-12 col-lg-3">
<div class="row">
<div class="col-auto">
<!-- Icon -->
<span class="h2 fe fe-bar-chart-2 text-muted mb-0"></span>
</div>
<div class="col">
<!-- Title -->
<h6 class="card-title text-uppercase text-muted mb-2">
Standard deviation
</h6>
<!-- Heading -->
<span class="std h2 mb-0">
<div class="spinner-grow spinner-grow-sm" role="status">
<span class="sr-only">Loading...</span>
</div>
</span>
<span class="h2 mb-0 mr-1">
%
</span>
</div>
</div>
</div>
</div> <!-- / .row -->
</div>
</div>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center mb-5 mb-lg-6">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
You think 2 brains are better than one...
</h2>
<!-- Text -->
<p class="display-4 text-center text-muted d-none d-lg-block">
How about hundreds of talented asset managers working for you? Worldwide!
</p>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
You think 2 brains are better than one...
</h2>
<!-- Text -->
<p class="lead text-center text-muted d-block d-lg-none">
How about hundreds of talented asset managers working for you? Worldwide!
</p>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center">
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<!-- Text -->
<p class="lead text-secondary text-center">
Many people have the capital to invest in cryptocurrency but not the expertise, and many others have the expertise but not the capital.
</p>
</div>
<div class="col-12 col-lg-2 mb-4 mb-lg-0">
<img class="d-block w-100 mx-auto" src="assets/img/illustrations/undraw_connected_world_wuay.svg" alt="undraw_connected_world_wuay">
</div>
<div class="col-12 col-lg-4">
<!-- Text -->
<p class="lead text-secondary text-center">
Betoken is an open-source, community-owned, permissionless, and censorship-resistant protocol for connecting capital with talent, and talent with capital.
</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center mb-5 mb-lg-6">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
An open crypto fund managed by code and meritocracy
</h2>
<!-- Text -->
<p class="display-4 text-center text-muted d-none d-lg-block">
Your money is managed by the best people
</p>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
An open crypto fund managed by code and meritocracy
</h2>
<!-- Text -->
<p class="lead text-center text-muted d-block d-lg-none">
Your money is managed by the best people
</p>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center align-items-center mb-0 mb-lg-6">
<div class="col-12 col-lg-5 mb-5 mb-lg-0">
<h3 class="h1">Sit back and relax</h3>
<!-- Text -->
<p class="lead text-secondary">
Your capital is automatically distributed among Betoken’s <a href="https://betoken.fund/portal/#/rankings" target="_blank">community of managers</a>. The best of them will have the most influence over how that capital is put to work.
</p>
</div>
<div class="col-12 col-lg-6 mb-5 mb-lg-0 order-first order-lg-last">
<img class="d-block w-50 mx-auto" src="assets/img/illustrations/sit.svg" alt="sit">
</div>
</div> <!-- / .row -->
<div class="row justify-content-center align-items-center mb-0 mb-lg-6">
<div class="col-12 col-lg-6 mb-5 mb-lg-0">
<img class="d-block w-50 mx-auto" src="assets/img/illustrations/undraw_time_management_30iu.svg" alt="undraw_time_management_30iu">
</div>
<div class="col-12 col-lg-5 mb-6 mb-lg-0">
<h3 class="h1">Save time & effort</h3>
<!-- Text -->
<p class="lead text-secondary mb-4">
Unlike platforms such as Melonport and eToro, you don’t need to waste time on choosing the best performers and carefully hedging capital amongst them. All Betoken managers actively trade against the market while you sleep.
</p>
<a class="btn btn-success btn-lg" href="start.html">Connect your capital</a>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center align-items-center mb-5 mb-lg-6">
<div class="col-12 col-lg-5 mb-5 mb-lg-0">
<h3 class="h1">The best managers earn the most</h3>
<!-- Text -->
<p class="lead text-secondary">
The Betoken protocol recognizes and quantifies the talent of its crypto-traders by allocating units of reputation to them, denominated in <a href="https://betoken.gitbook.io/docs/manage-the-fund/what-is-kairo" target="_blank">Kairo tokens</a>, and financially rewards them based on their talent and contributions.
</p>
<a class="btn btn-success btn-lg" href="start.html">Start managing</a>
</div>
<div class="col-12 col-lg-6 mb-5 mb-lg-0 order-first order-lg-last">
<img class="d-block w-50 mx-auto" src="assets/img/illustrations/purchase.svg" alt="purchase">
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center mb-5">
<div class="col col-lg-8 text-center">
<!-- Title -->
<h2 class="display-2 d-none d-lg-block mb-5">
How is Betoken different?
</h2>
<!-- Title -->
<h2 class="display-4 d-block d-lg-none mb-5">
How is Betoken different?
</h2>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center">
<div class="col-auto col-lg-4">
<div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<a class="nav-link text-secondary active lead py-4" id="v-pills-1-tab" data-toggle="pill" href="#v-pills-1" role="tab" aria-controls="v-pills-1" aria-selected="true">
<span class="d-flex d-lg-none">1</span>
<span class="d-none d-lg-flex">User-owned, User-governed</span>
</a>
<a class="nav-link text-secondary lead py-4" id="v-pills-2-tab" data-toggle="pill" href="#v-pills-2" role="tab" aria-controls="v-pills-2" aria-selected="false">
<span class="d-flex d-lg-none">2</span>
<span class="d-none d-lg-flex">Active Management</span>
</a>
<a class="nav-link text-secondary lead py-4" id="v-pills-3-tab" data-toggle="pill" href="#v-pills-3" role="tab" aria-controls="v-pills-3" aria-selected="false">
<span class="d-flex d-lg-none">3</span>
<span class="d-none d-lg-flex">Full Collateralization</span>
</a>
<a class="nav-link text-secondary lead py-4" id="v-pills-4-tab" data-toggle="pill" href="#v-pills-4" role="tab" aria-controls="v-pills-4" aria-selected="false">
<span class="d-flex d-lg-none">4</span>
<span class="d-none d-lg-flex">50+ Assets</span>
</a>
<a class="nav-link text-secondary lead py-4" id="v-pills-5-tab" data-toggle="pill" href="#v-pills-5" role="tab" aria-controls="v-pills-5" aria-selected="false">
<span class="d-flex d-lg-none">5</span>
<span class="d-none d-lg-flex">No limits, no hidden fees</span>
</a>
</div>
</div>
<div class="col col-lg-7">
<div class="tab-content" id="v-pills-tabContent">
<div class="tab-pane fade show active" id="v-pills-1" role="tabpanel" aria-labelledby="v-pills-1-tab">
<img class="d-block w-50 mx-auto mb-4" src="assets/img/illustrations/undraw_team_spirit_hrr4.svg" alt="undraw_team_spirit_hrr4">
<h3 class="h2 d-block d-lg-none">User-owned, User-governed</h3>
<p class="lead text-secondary">
Betoken's <a href="https://betoken.gitbook.io/docs/govern/what-is-the-upgrade-governance" target="_blank">governance system</a> oversees protocol changes and upgrades, and provides funding for the development of new features. No single company or individual can control the protocol. It's owned and governed by the very people who use it and benefit from it—You.
</p>
</div>
<div class="tab-pane fade" id="v-pills-2" role="tabpanel" aria-labelledby="v-pills-2-tab">
<img class="d-block w-50 mx-auto mb-4" src="assets/img/illustrations/undraw_developer_activity_bv83.svg" alt="undraw_developer_activity_bv83">
<h3 class="h2 d-block d-lg-none">Active Management</h3>
<p class="lead text-secondary">
Hundreds of Betoken managers actively prevent losses and seize profitable opportunities for your sake. Your money is converted into an actively managed portfolio of assets that can immediately respond to even the slightest changes in the market.
</p>
</div>
<div class="tab-pane fade" id="v-pills-3" role="tabpanel" aria-labelledby="v-pills-3-tab">
<img class="d-block mx-auto mb-4" src="assets/img/illustrations/undraw_vault_9cmw.svg" alt="undraw_vault_9cmw" style="max-width:200px">
<h3 class="h2 d-block d-lg-none">Full Collateralization</h3>
<p class="lead text-secondary">
When you connect your capital to Betoken, your deposit is converted in Betoken Share tokens. It represents your ownership in the Betoken fund and is fully backed by a collateral in the smart contract. Each of them acts like a tokenized portfolio, containing the underlying tokens that Betoken managers buy and sell.
</p>
</div>
<div class="tab-pane fade" id="v-pills-4" role="tabpanel" aria-labelledby="v-pills-4-tab">
<img class="d-block w-50 mx-auto mb-4" src="assets/img/illustrations/undraw_digital_currency_qpak.svg" alt="undraw_digital_currency_qpak">
<h3 class="h2 d-block d-lg-none">50+ Assets</h3>
<p class="lead text-secondary">
By connecting your capital to Betoken protocol, you get a direct exposure to ETH, WBTC, BAT, MKR and 50+ ERC20 tokens.
</p>
</div>
<div class="tab-pane fade" id="v-pills-5" role="tabpanel" aria-labelledby="v-pills-5-tab">
<img class="d-block w-50 mx-auto mb-4" src="assets/img/illustrations/undraw_discount_d4bd.svg" alt="undraw_discount_d4bd">
<h3 class="h2 d-block d-lg-none">No limits, no hidden fees</h3>
<p class="lead text-secondary">
No minimums. No deposit fees. Only $1, $2, or $3 to start automating your crypto portfolio.
</p>
<a href="https://betoken.gitbook.io/docs/connect-your-capital/what-is-the-fees-structure" target="_blank">More about fees, lockup, and liquidity<i class="fe fe-arrow-right ml-2"></i></a>
</div>
</div>
</div>
</div>
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center mb-5 mb-lg-6">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
You are in safe hands
</h2>
<!-- Text -->
<p class="display-4 text-center text-muted d-none d-lg-block">
Remain always in control of your funds. Built and audited by the best.
</p>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
You are in safe hands
</h2>
<!-- Text -->
<p class="lead text-center text-muted d-block d-lg-none">
Remain always in control of your funds. Built and audited by the best.
</p>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center mb-0 mb-lg-6">
<div class="col-12 col-lg-5">
<img class="d-block w-50 mx-auto mb-4" src="assets/img/illustrations/undraw_authentication_fsn5.svg" alt="undraw_authentication_fsn5" height="192">
<h3 class="h1">Non-custodial</h3>
<!-- Text -->
<p class="lead text-secondary">
Betoken is non-custodial. You always stay in control, it’s written on the blockchain. All user funds are locked in smart contracts without Betoken developers having any direct or indirect access to those funds.
</p>
</div>
<div class="col-12 col-lg-5 offset-lg-1">
<img class="d-block w-50 mx-auto mb-4" src="assets/img/illustrations/undraw_Security_on_s9ym.svg" alt="undraw_Security_on_s9ym" height="192">
<h3 class="h1">Tested and audited smart contracts</h3>
<!-- Text -->
<p class="lead text-secondary mb-4">
Betoken's smart contracts are audited and secured by <a href="https://github.com/solidified-platform/audits/blob/master/Audit%20Report%20-%20%20Betoken%20%5B20.05.2019%5D.pdf" target="_blank">Solidified</a> and are designed so that no one can steal the collateral that backs the value of your deposit.
</p>
</div>
</div> <!-- / .row -->
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center mb-5 mb-lg-6">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
Powered by open protocols
</h2>
<!-- Text -->
<p class="display-4 text-center text-muted d-none d-lg-block">
Betoken protocol uses the full value of the open finance ecosystem
</p>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
Powered by open protocols
</h2>
<!-- Text -->
<p class="lead text-center text-muted d-block d-lg-none">
Betoken protocol uses the full value of the open finance ecosystem
</p>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center mt-6 mt-md-7">
<div class="col-12">
<div class="card-deck">
<!-- Card -->
<div class="card mb-6 mb-lg-0">
<div class="card-body text-center">
<div class="avatar avatar-xl card-avatar card-avatar-top">
<img class="border border-1 avatar-title rounded-circle" src="assets/img/illustrations/knc.svg">
</div>
<h2 class="card-title">
<a href="https://kyber.network/" target="_blank">Kyber</a>
</h2>
<p class="card-text text-muted">
An on-chain liquidity protocol that aggregates liquidity from a wide range of reserves, allowing betoken managers to trade instantly.
</p>
</div>
</div>
<!-- Card -->
<div class="card mb-6 mb-lg-0">
<div class="card-body text-center">
<div class="avatar avatar-xl card-avatar card-avatar-top">
<img class="border border-1 avatar-title rounded-circle" src="assets/img/illustrations/bzx.jpg">
</div>
<h2 class="card-title">
<a href="https://b0x.network/" target="_blank">bZx</a>
</h2>
<p class="card-text text-muted">
A financial primitive enabling margin trading with up to 4x leverage on Betoken.
</p>
</div>
</div>
<!-- Card -->
<div class="card mb-6 mb-lg-0">
<div class="card-body text-center">
<div class="avatar avatar-xl card-avatar card-avatar-top">
<img class="border border-1 avatar-title rounded-circle" src="assets/img/illustrations/maker.jpg">
</div>
<h2 class="card-title">
<a href="https://makerdao.com" target="_blank">Maker</a>
</h2>
<p class="card-text text-muted">
A decentralized autonomous organization (DAO) comprised of a decentralized stablecoin (Dai), collateral loans, and community governance. Betoken use Dai to handle its bookkeeping, and distribute profits and commissions to its users.
</p>
</div>
</div>
<!-- Card -->
<div class="card">
<div class="card-body text-center">
<div class="avatar avatar-xl card-avatar card-avatar-top">
<img class="border border-1 avatar-title rounded-circle" src="assets/img/illustrations/compound.jpg">
</div>
<h2 class="card-title">
<a href="https://compound.finance" target="_blank">Compound</a>
</h2>
<p class="card-text text-muted">
A decentralized protocol which establishes money markets with algorithmically set interest rates based on supply and demand, allowing Betoken managers to perform margin trading with 1.5x leverage or better.
</p>
</div>
</div>
</div>
</div>
</div>
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center mb-5">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
Get Started in Minutes
</h2>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
Get Started in Minutes
</h2>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center mb-5">
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<div class="row">
<div class="col-auto">
<span class="display-1 text-light">1</span>
</div>
<div class="col">
<h3 class="h2 mb-2">Create an account</h3>
<p>Use any supported wallet.</p>
</div>
</div>
</div>
<div class="col-12 col-lg-4 mb-4 mb-lg-0">
<div class="row">
<div class="col-auto">
<span class="display-1 text-light">2</span>
</div>
<div class="col">
<h3 class="h2 mb-2">Connect your capital...</h3>
<p>Let proven managers handle your crypto portfolio.</p>
</div>
</div>
</div>
<div class="col-12 col-lg-4">
<div class="row">
<div class="col-auto">
<span class="display-1 text-light">3</span>
</div>
<div class="col">
<h3 class="h2 mb-2">...Or get paid to trade</h3>
<p>Earn commissions for making good investments.</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-auto">
<a class="btn btn-success btn-lg" href="start.html">Get started</a>
</div>
</div>
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7">
<div class="row justify-content-center">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
Funding
</h2>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
Funding
</h2>
<!-- Text -->
<p class="lead text-center text-muted mb-5">
Betoken is launched fairly — free of ICO or pre-minted tokens. We rely on donations.
If you’re an individual, company or institution excited about the potential of Betoken, we humbly ask if you’d consider making a financial contribution to the project’s development. We’re experimenting with a 100% community-driven funding model.
</p>
<p class="text-center">Support the movement by making a donation.</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 text-center">
<a class="btn btn-lg btn-success text-center mb-3 mb-lg-0" href="funding.html">Donate to Betoken</a>
<a class="btn btn-lg btn-link text-center mb-3 mb-lg-0" href="friends.html">Friends of Betoken</a>
</div>
</div>
</div> <!-- / .container -->
<div class="container mb-6 mb-lg-7" id="openMovement">
<div class="row justify-content-center mb-5">
<div class="col col-lg-8 col-xl-8">
<!-- Title -->
<h2 class="display-2 text-center d-none d-lg-block">
Join The Open Movement
</h2>
<!-- Text -->
<p class="lead text-center text-muted d-none d-lg-block">
Betoken is an open project that believes in open source code and creative contribution from people with diverse interests and skill-sets. Dozens of people have contributed ideas, code, designs, and time to Betoken. Here are just a few of the faces from our <a href="https://t.me/betokenfund">English</a> and <a href="https://t.me/betokenJapanese">Japanese</a> chatroom.
</p>
<!-- Title -->
<h2 class="display-4 text-center d-block d-lg-none">
Join The Open Movement
</h2>
<!-- Text -->
<p class="lead text-center text-muted d-block d-lg-none">
Betoken is an open project that believes in open source code and creative contribution from people with diverse interests and skill-sets. Dozens of people have contributed ideas, code, designs, and time to Betoken. Here are just a few of the faces from our <a href="https://t.me/betokenfund">English</a> and <a href="https://t.me/betokenJapanese">Japanese</a> chatroom.
</p>
</div>
</div> <!-- / .row -->
<div class="row justify-content-center">
<div class="col-12 text-center">
<!-- Avatar group -->
<div class="avatar-group">
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Sam">
<img src="assets/img/avatars/profiles/sam.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Aholder">
<img src="assets/img/avatars/profiles/aholder.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="Kamikaze Tarou">
<span class="avatar-title bg-info rounded-circle">KT</span>
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Kyle Kistner">
<img src="assets/img/avatars/profiles/kyle-kistner.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Shane">
<img src="assets/img/avatars/profiles/shane.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Truebtclover">
<img src="assets/img/avatars/profiles/truebtclover.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Didyousaidbitcoin">
<img src="assets/img/avatars/profiles/didyousaidbitcoin.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="To We">
<img src="assets/img/avatars/profiles/towe.jpg" alt="..." class="avatar-img rounded-circle">
</a>
</div>
</div>
<div class="col-12 text-center">
<!-- Avatar group -->
<div class="avatar-group">
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Guillaume">
<img src="assets/img/avatars/profiles/guillaume.jpg" alt="guillaume avatar" class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Zefram">
<img src="assets/img/avatars/profiles/zefram.jpg" alt="zefram avatar" class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="Cryptochick">
<img src="assets/img/avatars/profiles/cryptochick.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Adam">
<img src="assets/img/avatars/profiles/adam.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Evolve">
<img src="assets/img/avatars/profiles/evolve.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Garima">
<img src="assets/img/avatars/profiles/garima.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="Tomo Kaya">
<span class="avatar-title bg-success rounded-circle">TK</span>
</a>
</div>
</div>
<div class="col-12 text-center">
<!-- Avatar group -->
<div class="avatar-group">
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="Kazuhiko Kommoto">
<span class="avatar-title bg-danger rounded-circle">KK</span>
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Innovative bear">
<img src="assets/img/avatars/profiles/innovative-bear.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="Taisuke Hory">
<img src="assets/img/avatars/profiles/taisuke-hory.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenJapanese" class="avatar" data-toggle="tooltip" title="" data-original-title="m4d">
<img src="assets/img/avatars/profiles/m4d.jpg" alt="..." class="avatar-img rounded-circle">
</a>
<a href="https://t.me/betokenfund" class="avatar" data-toggle="tooltip" title="" data-original-title="Surya Krishnan">
<span class="avatar-title bg-danger rounded-circle">SK</span>
</a>
</div>
</div>
</div>
</div> <!-- / .container -->
</div> <!-- / .main-content -->
<div class="main-container bg-dark-gradient">
<div class="container py-5 py-lg-6">
<div class="row justify-content-center mb-5">
<div class="col-12 col-lg-3 mb-5 mb-lg-0">
<img class="d-block mb-4" src="assets/img/logo.svg" alt="..." width="64">
<p class="text-secondary">Don't trust our words, trust our code. The Betoken protocol is available on <a class="text-white" href="https://github.com/Betoken/" target="_blank">Github</a>.</p>
</div>
<div class="col-12 col-lg-3 offset-lg-3 mb-5 mb-lg-0">
<h4 class="text-white">Join our community</h4>
<div class="list-group list-group-flush">
<a class="list-group-item text-white border-0 pl-0" href="https://twitter.com/betokenfund" target="_blank">Twitter</a>
<a class="list-group-item text-white border-0 pl-0" href="https://t.me/betokenfund" target="_blank">Telegram</a>
<a class="list-group-item text-white border-0 pl-0" href="https://medium.com/betoken" target="_blank">Medium</a>
</div>
</div>
<div class="col-12 col-lg-3">
<h4 class="text-white mb-4">Subscribe to the Betoken Report</h4>
<form action="https://fund.us17.list-manage.com/subscribe/post?u=9c0647dcb587985ed6121cdf6&id=150e0f091e" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate w-100" target="_blank" novalidate>
<div class="input-group input-group-lg mb-3">
<input class="form-control" type="email" value="" name="EMAIL" id="mce-EMAIL" placeholder="[email protected]" required>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text" name="b_9c0647dcb587985ed6121cdf6_150e0f091e" tabindex="-1" value=""></div>
<div class="input-group-append">
<button class="btn btn-success border-0" name="subscribe" id="mc-embedded-subscribe">
<span class="fe fe-send"></span>
</button>
</div>
</div>
</form>
<a class="text-white" href="https://betoken.gitbook.io/docs/" target="_blank">Get help<i class="fe fe-arrow-right ml-2"></i></a>
<!--End mc_embed_signup-->
</div>
</div> <!-- / .row -->
<div class="row justify-content-center">
<div class="col-auto">
<div class="card card-inactive mb-0">
<div class="card-body">
<h3 class="text-white">Disclaimer</h3>
<p class="text-muted">
Nothing herein constitutes an offer to sell, or the solicitation of an offer to buy, any securities or tokens.
</p>
<p class="text-muted">
Betoken enables capital connection and managing using smart contracts which are open source. Betoken does not take custody of tokens and is only a collaborative hub for investors and managers. Betoken is not a licensed bank, broker-dealer, investment advisor or an exchange. Betoken uses partner protocols (Kyber, Compound, bZx, Maker DAO) to power its own ecosystem.
</p>
<p class="text-danger">
💀 This project is in beta. Use at your own risk.
</p>