-
Notifications
You must be signed in to change notification settings - Fork 8
/
bankless-bed-index.html
1023 lines (1023 loc) · 69.2 KB
/
bankless-bed-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><!-- This site was created in Webflow. http://www.webflow.com -->
<!-- Last Published: Thu Feb 24 2022 18:14:47 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="619edc323bd61b9a3dd0a2a1" data-wf-site="60d237b6ea65be721ff4bbfa">
<head>
<meta charset="utf-8">
<title>Bankless BED Index (BED) | BTC ETH DPI | Index Coop</title>
<meta content="Buy Bankless BED Index (BED) for a passive exposure, equal-weighted index of the most promising use cases in crypto; store of value (BTC) programmable money (ETH) DeFi (DPI)." name="description">
<meta content="Bankless BED Index (BED) | BTC ETH DPI | Index Coop" property="og:title">
<meta content="Buy Bankless BED Index (BED) for a passive exposure, equal-weighted index of the most promising use cases in crypto; store of value (BTC) programmable money (ETH) DeFi (DPI)." property="og:description">
<meta content="Bankless BED Index (BED) | BTC ETH DPI | Index Coop" property="twitter:title">
<meta content="Buy Bankless BED Index (BED) for a passive exposure, equal-weighted index of the most promising use cases in crypto; store of value (BTC) programmable money (ETH) DeFi (DPI)." property="twitter:description">
<meta property="og:type" content="website">
<meta content="summary_large_image" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="YYE_SNX1HR3VztC6qDT8L01JTKn6CPjruKjP8jIp0YY" name="google-site-verification">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/homepage-22c36f.webflow.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["IBM Plex Sans:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic:cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese","IBM Plex Mono:regular,500,600"] }});</script>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.ico" rel="apple-touch-icon">
<link href="https://indexcoop.com/bankless-bed-index" rel="canonical"><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WNPZF4R');</script>
<!-- End Google Tag Manager -->
<style>
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mainnavbar {
backdrop-filter: blur(5px);
}
.no-scroll {
overflow:hidden;
}
input.inputfield::placeholder,
textarea.inputfield::placeholder{
opacity: 0%;
}
/* Light Mode Styles */
/* Global Light Mode */
/* Dark Mode Styles */
/* Global Dark Mode */
#content.dark-mode .close-text {
color: #F7F6F2;
}
#content.dark-mode .bar-container {
border: 1px solid #F7F6F2;
}
#content.dark-mode .notice-text {
color: #F7F6F2;
}
#content.dark-mode .nav-link {
color: #F7F6F2;
}
#content.dark-mode .nav-link:hover {
border-bottom: 2px solid #F7F6F2;
}
#content.dark-mode{
background-color: #0F0E0B;
color: #F7F6F2;
}
#content.dark-mode a.bloglink {
color: #F7F6F2;
}
#content.dark-mode .accordion_header, #content.dark-mode .allparagraph2 {
color: #F7F1E4;
}
#content.dark-mode .mainnavbar{
background-color: rgba(15, 14, 11, 0.8);
}
#content.dark-mode .allh1,
#content.dark-mode .allh2,
#content.dark-mode .allh3{
color: #F7F6F2;
}
#content.dark-mode a {
color: #B9B6FC;
}
#content.dark-mode .gray_bg{
background-color: #1D1B16;
}
#content.dark-mode .app-button {
border: 2px solid #fff;
background-color: transparent;
color: #F7F6F2;
}
#content.dark-mode .app-button:hover {
background-color: #F7F6F2;
color: #000000;
}
#content.dark-mode .menu_title .menu_gov{
color: #F7F6F2;
}
#content.dark-mode .menu_titlecont{
border-bottom: 2px solid #F7F6F2;
}
/*#content.dark-mode .language_icon.black{
display: none;
}
#content.dark-mode .language_icon.white{
display: block;
}*/
#content.dark-mode .toggle-theme2{
display: none;
}
#content.dark-mode .togglethemefooter {
display: block;
}
#content.dark-mode .heroline {
border-top: 3px solid #F7F6F2;
}
#content.dark-mode .index_logo path {
fill: #F7F6F2;
}
#content.dark-mode .dropdown-text:hover {
border-bottom: 1px solid #F7F6F2;
}
#content.dark-mode .dropdown-list-2.w-dropdown-list.w--open {
background: rgba(15, 14, 11, 0.95);
border: 1px solid rgba(247, 246, 242, 0.12);
}
#content.dark-mode .eco-grid {
background-color: #0F0E0B;
}
#content.dark-mode .investors_icons {
filter: invert();
}
#content.dark-mode .accordion_maincontainer.trigger {
border-bottom: 1px solid #F7F6F2;
border-top: 1px solid #F7F6F2;
}
#content.dark-mode .prod_subtitle {
color: #F7F6F2;
}
#content.dark-mode a.dropdown-text {
color: #F7F6F2;
background: rgb(15, 14, 11, 0.8);
}
#content.dark-mode .view_link {
color: #B9B6FC;
}
#content.dark-mode a.footitem.footlink {
color: #F7F6F2;
}
@media only screen and (max-width: 991px){
#content.dark-mode .nav-menu-2{
background-color: #0F0E0B;
}
#content.dark-mode .close,
#content.dark-mode .menu,
#content.dark-mode .menu_prods a,
#content.dark-mode .menu_gov a{
color: #F7F6F2;
}
#content.dark-mode .stickytoggles {
filter: invert();
}
}
/* Home Page */
#content.dark-mode .slider_description {
color: #F7F6F2;
}
#content.dark-mode .w-slider-dot.w-active {
background-color: #327EE8;
}
#content.dark-mode .prodh3,
#content.dark-mode .listtextblock,
#content.dark-mode .grid_heading{
color: #F7F6F2;
}
#content.dark-mode .listico._3rd path,
#content.dark-mode .listico._3rd circle {
stroke: #B9B6FC;
}
#content.dark-mode .listico._2nd path,
#content.dark-mode .listico._2nd circle {
stroke: #699BF7;
}
#content.dark-mode .listico._3rdtrinity path {
fill: #B9B6FC;
}
#content.dark-mode .listico.lightmode {
display: none;
}
#content.dark-mode .listico.darkmode {
display: block;
}
#content.dark-mode a.social_box.w-button {
color: #0F0E0B;
}
/* About Page */
#content.dark-mode .dark_mode_tria {
display: block;
}
#content.dark-mode .lightmode_triangle {
display: none;
}
#content.dark-mode .social_box.aboutpage {
color: #00b9ff;
}
#content.dark-mode .social_box.discord.aboutpage {
color: #7289da;
}
#content.dark-mode .trinity_svg.darkmode {
display: block;
}
#content.dark-mode .trinity_svg.lightmode {
display: none;
}
/* Partners Page */
#content.dark-mode img.ecoprodimg.indexcoop {
filter:invert();
}
/* Institutions Page */
input[type="text"].inputfield::-webkit-input-placeholder {
color: #737373;
}
#content.dark-mode .sub_h2,
#content.dark-mode .eventtable_header,
#content.dark-mode .fieldtitle {
color: #F7F6F2;
}
#content.dark-mode .event_line {
border-top: 3px solid #F7F6F2;
}
#content.dark-mode .inputfield{
background: rgba(221, 221, 221, 0.12);
border: none;
border-bottom: 3px solid #ffff;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 19px;
font-weight: 700;
}
#content.dark-mode .inputfield:hover {
border-style: none none solid;
border-width: 1px 1px 3px;
border-color: #000 #000 #327ee8;
background-color: rgba(50, 121, 232, 0.13);
}
#content.dark-mode .inputfield:focus {
border-style: none none solid;
border-width: 0px 0px 3px;
border-color: #000 #000 #fabf00;
background-color: rgba(250, 191, 0, 0.09);
}
#content.dark-mode .inputfield{
color: #F7F6F2;
}
@media only screen and (max-width: 991px){
input.inputfield::placeholder,
textarea.inputfield::placeholder{
color: #rgba(0, 0, 0, 0.5) !important;
opacity: 100%;
}
#content.dark-mode input.inputfield::placeholder,
#content.dark-mode textarea.inputfield::placeholder{
color: rgba(247, 246, 242, 0.5) !important;
opacity: 100%;
}
}
/* Methodologist Page */
#content.dark-mode .link_underline {
color: #B9B6FC;
}
#content.dark-mode .forum_box {
border: 3px solid #F7F6F2;
}
#content.dark-mode .forum_box a {
color: #F7F6F2;
}
#content.dark-mode .steps {
color: #000000;
}
/* Products Pages */
#content.dark-mode .prod_icon.index path {
fill: #F7F6F2;
}
#content.dark-mode .buy-button.buttons {
color: #F7F6F2;
}
#content.dark-mode .sell-button.buttons {
color: #09AA74;
}
#content.dark-mode .token_icon.lightdark {
filter: invert();
}
#content.dark-mode .dpi-formula {
filter: invert();
}
#content.dark-mode .bg-grey.lightdark,
#content.dark-mode .allparagraph.quote,
#content.dark-mode .allparagraph.quote.fli{
background-color: #0F0E0B;
color: #F7F6F2;
}
/* Contributors Page */
#content.dark-mode .flowchart {
filter: invert();
}
/* StyleGuide Page */
#content.dark-mode .token_textblock {
color: #F7F6F2;
}
#content.dark-mode .index_icon.w-embed path {
filter: invert();
}
</style>
</head>
<body>
<div class="goggle-tag-manager w-embed w-iframe">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WNPZF4R" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
</div>
<div id="content" class="light-mode">
<div data-collapse="medium" data-animation="default" data-duration="600" data-easing="ease" data-easing2="ease" data-doc-height="1" role="banner" class="mainnavbar w-nav">
<div class="maincontainer nav w-container">
<a href="index.html" class="brand-2 w-nav-brand">
<div class="index_logo w-embed"><svg width="150%" height="150%" viewbox="0 0 175 40" xmlns="http://www.w3.org/2000/svg">
<path d="M51.6465 2.5434H58.9825V36.7651H51.6465V2.5434Z"></path>
<path d="M78.7042 11.3214C81.6301 11.3214 84.0472 12.2543 85.9554 14.0778C87.8636 15.9013 88.7965 18.9121 88.7965 23.1103V36.7651H81.8845V23.5344C81.8845 19.2089 80.1883 17.0462 76.796 17.0462C75.015 17.0462 73.6156 17.6399 72.6403 18.8697C71.665 20.0571 71.1561 21.7533 71.1561 23.9584V36.8075H64.2441V11.6183H70.2656L70.9017 14.7563C71.7922 13.6962 72.8523 12.848 74.082 12.2543C75.3542 11.6607 76.8808 11.3214 78.7042 11.3214Z"></path>
<path d="M118.351 2.5434V36.7651H112.33L111.651 33.2878C109.743 35.7898 107.114 37.062 103.806 37.062C101.601 37.062 99.6083 36.5531 97.8273 35.4929C96.0463 34.4328 94.6894 32.9062 93.6717 30.9555C92.6964 29.0048 92.1875 26.7149 92.1875 24.1705C92.1875 21.6261 92.6964 19.3786 93.6717 17.4703C94.6894 15.5197 96.0887 13.993 97.8273 12.9753C99.6083 11.9151 101.644 11.3639 103.849 11.3639C107.114 11.3639 109.658 12.5088 111.439 14.7988V2.5434H118.351ZM105.418 31.4219C107.284 31.4219 108.768 30.7859 109.87 29.4713C110.973 28.1143 111.524 26.3756 111.524 24.2553C111.524 22.0502 110.973 20.3115 109.87 18.9546C108.768 17.5976 107.284 16.9615 105.418 16.9615C103.552 16.9615 102.068 17.64 100.923 18.9546C99.8204 20.3115 99.2691 22.0502 99.2691 24.1705C99.2691 26.3332 99.8204 28.0719 100.923 29.3865C102.025 30.7859 103.552 31.4219 105.418 31.4219Z"></path>
<path d="M122.168 24.2521C122.168 21.623 122.677 19.3754 123.737 17.4672C124.797 15.5165 126.281 13.9899 128.189 12.9721C130.098 11.912 132.345 11.3607 134.847 11.3607C137.391 11.3607 139.639 11.8696 141.547 12.8873C143.498 13.8626 145.024 15.262 146.084 17.0855C147.187 18.8666 147.781 20.9869 147.781 23.4464C147.781 24.337 147.696 25.1003 147.569 25.7788H129.292V25.9908C129.462 27.8143 130.055 29.2561 131.073 30.2738C132.091 31.334 133.49 31.8428 135.229 31.8428C136.628 31.8428 137.773 31.546 138.706 30.9523C139.639 30.3162 140.275 29.4257 140.572 28.2807H147.399C147.145 29.9346 146.508 31.4612 145.491 32.7758C144.473 34.0904 143.158 35.1929 141.462 35.9562C139.808 36.7195 137.9 37.1012 135.738 37.1012C132.939 37.1012 130.479 36.5923 128.444 35.5322C126.408 34.472 124.839 32.9878 123.737 31.0795C122.719 29.0864 122.168 26.8389 122.168 24.2521ZM140.953 21.2413C140.741 19.7147 140.105 18.5273 139.045 17.7216C138.027 16.8735 136.755 16.4494 135.186 16.4494C133.702 16.4494 132.43 16.8735 131.37 17.764C130.352 18.6121 129.758 19.7571 129.546 21.2413H140.953Z"></path>
<path d="M157.571 23.9576L148.666 11.6174H156.554L161.769 19.0809L167.112 11.6598H174.491L165.628 24L175 36.8066H167.112L161.345 28.9191L155.621 36.7642H148.242L157.571 23.9576Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8031 39.4377C30.7436 39.4377 39.6062 30.6172 39.6062 19.7188C39.6062 8.82047 30.7436 0 19.8031 0C8.86263 0 0 8.82047 0 19.7188C0 30.6172 8.86263 39.4377 19.8031 39.4377ZM19.8031 32.6527C27.8176 32.6527 34.2632 26.207 34.2632 18.277C34.2632 10.3471 27.7752 7.03941 19.8031 7.03941C11.7886 7.03941 5.34302 10.3047 5.34302 18.277C5.30061 26.2494 11.7886 32.6527 19.8031 32.6527Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2378 20.614C12.0859 20.614 12.8492 20.2747 13.4429 19.7659C13.7397 20.3172 14.1214 20.9108 14.4606 21.5045C15.2239 22.7767 16.072 24.0913 16.8353 25.0666C17.2169 25.5755 17.641 26.042 18.0226 26.3812C18.3618 26.6781 18.9555 27.1021 19.634 27.1021C20.3125 27.1021 20.9061 26.6781 21.2454 26.3812C21.6694 26.042 22.0935 25.5755 22.4751 25.109C23.2808 24.1337 24.1713 22.8191 24.977 21.5469C25.3586 20.9108 25.7403 20.3172 26.0795 19.7235C26.6732 20.2747 27.4789 20.6564 28.327 20.6564C30.108 20.6564 31.5921 19.2146 31.5921 17.4335C31.5921 15.6525 30.1504 14.2107 28.327 14.2107C26.8852 14.2107 25.6131 15.186 25.2314 16.5006C25.1466 16.6278 25.0618 16.7974 24.977 16.9671C24.4681 17.9 23.7472 19.1298 22.984 20.3596C22.2207 21.5893 21.3726 22.8191 20.6517 23.6672C20.27 24.0913 19.9732 24.4305 19.7188 24.6426C19.6764 24.685 19.634 24.685 19.634 24.7274C19.5916 24.7274 19.5916 24.685 19.5492 24.6426C19.2947 24.4305 18.9979 24.1337 18.6587 23.6672C17.9802 22.7767 17.1745 21.5893 16.4536 20.3596C15.7327 19.1298 15.0543 17.9 14.5454 16.9671C14.4606 16.8399 14.4182 16.7126 14.3758 16.6278C13.9941 15.2284 12.722 14.2107 11.2378 14.2107C9.45682 14.2107 7.97266 15.6525 7.97266 17.4335C7.97266 19.1722 9.41442 20.614 11.2378 20.614Z"></path>
</svg></div>
</a>
<nav role="navigation" class="nav-menu-2 w-nav-menu">
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Products</div>
</div>
<div class="menu_prodscontainer">
<div class="menu_prods">
<a href="defi-pulse-index-dpi.html" class="menu_producttitle">DPI</a>
<div class="menu_productdesc">No 1. DeFi Index</div>
</div>
<div class="menu_prods">
<a href="metaverse-index-mvi.html" class="menu_producttitle">MVI</a>
<div class="menu_productdesc">Welcome to the Metaverse</div>
</div>
<div class="menu_prods">
<a href="data-economy-index.html" class="menu_producttitle">DATA</a>
<div class="menu_productdesc">Data Centric, Chain Agnostic.</div>
</div>
<div class="menu_prods">
<a href="bankless-bed-index.html" aria-current="page" class="menu_producttitle w--current">BED</a>
<div class="menu_productdesc">It's time for bed</div>
</div>
<div class="menu_prods">
<a href="bankless-defi-innovation-index-gmi.html" class="menu_producttitle">GMI</a>
<div class="menu_productdesc">Gonna make it</div>
</div>
<div class="menu_prods">
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="menu_producttitle">ETH2x-FLI</a>
<div class="menu_productdesc">Fly me to the stars</div>
</div>
<div class="menu_prods">
<a href="polygon-eth2xfli.html" class="menu_producttitle">ETH2x-FLI-P</a>
<div class="menu_productdesc">Fly me to the stars using Polygon</div>
</div>
<div class="menu_prods">
<a href="polygon-inverse-iethfli.html" class="menu_producttitle">iETH-FLI-P</a>
<div class="menu_productdesc">Inverse exposure to ETH</div>
</div>
<div class="menu_prods">
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="menu_producttitle">BTC2x-FLI</a>
<div class="menu_productdesc">Fly me to the moon</div>
</div>
<div class="menu_prods">
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="menu_producttitle">MATIC2x-FLI-P</a>
<div class="menu_productdesc">2x exposure to MATIC</div>
</div>
<div class="menu_prods">
<a href="polygon-inverse-imaticfli.html" class="menu_producttitle">iMATIC-FLI-P</a>
<div class="menu_productdesc">Inverse exposure to MATIC</div>
</div>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Resources</div>
</div>
<div class="menu_gov">
<a href="https://docs.indexcoop.com/" class="menu_govlink">Gitbook</a>
</div>
<div class="menu_gov">
<a href="methodologist.html" class="menu_govlink">Methodologists</a>
</div>
<div class="menu_gov">
<a href="institution.html" class="menu_govlink">Institutions</a>
</div>
<div class="menu_gov">
<a href="contributor.html" class="menu_govlink">Contributors</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Community</div>
</div>
<div class="menu_gov">
<a href="https://gov.indexcoop.com" target="_blank" class="menu_govlink">Forum</a>
</div>
<div class="menu_gov">
<a href="https://twitter.com/indexcoop" class="menu_govlink">Twitter</a>
</div>
<div class="menu_gov">
<a href="https://discord.com/invite/BcqYxdNC3R" class="menu_govlink">Discord</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Token</div>
</div>
<div class="menu_gov">
<a href="index-token.html" class="menu_govlink">$INDEX</a>
</div>
<div class="menu_gov">
<a href="https://snapshot.org/#/index-coop.eth" class="menu_govlink">Vote</a>
</div>
<div class="menu_gov">
<a href="https://app.indexcoop.com/liquidity-mining" class="menu_govlink">Liquidity Mining</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">About</div>
</div>
<div class="menu_gov">
<a href="about-index-coop.html" class="menu_govlink">About Us</a>
</div>
<div class="menu_gov">
<a href="brand-style-guide.html" class="menu_govlink">Brand Guidelines</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_gov bloglink">
<a href="https://indexcoop.com/blog/" class="menu_govlink bloglink"><strong>Blog</strong></a>
</div>
</div>
<div class="div-block-93">
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Products</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="defi-pulse-index-dpi.html" class="dropdown-text w-dropdown-link">DPI</a>
<a href="metaverse-index-mvi.html" class="dropdown-text w-dropdown-link">MVI</a>
<a href="data-economy-index.html" class="dropdown-text w-dropdown-link">DATA</a>
<a href="bankless-bed-index.html" aria-current="page" class="dropdown-text w-dropdown-link w--current">BED</a>
<a href="bankless-defi-innovation-index-gmi.html" class="dropdown-text w-dropdown-link">GMI</a>
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="dropdown-text w-dropdown-link">ETH2x-FLI</a>
<a href="polygon-eth2xfli.html" class="dropdown-text w-dropdown-link">ETH2x-FLI-P</a>
<a href="polygon-inverse-iethfli.html" class="dropdown-text w-dropdown-link">iETH-FLI-P</a>
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="dropdown-text w-dropdown-link">BTC2x-FLI</a>
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="dropdown-text w-dropdown-link">MATIC2x-FLI-P</a>
<a href="polygon-inverse-imaticfli.html" class="dropdown-text w-dropdown-link">iMATIC-FLI-P</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Resources</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="https://docs.indexcoop.com/" class="dropdown-text w-dropdown-link">Gitbook</a>
<a href="methodologist.html" class="dropdown-text w-dropdown-link">Methodologists</a>
<a href="institution.html" class="dropdown-text w-dropdown-link">Institutions</a>
<a href="contributor.html" class="dropdown-text w-dropdown-link">Contributors</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Community</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="https://indexcoop.catapultlabs.xyz/" target="_blank" class="dropdown-text w-dropdown-link">Join us!</a>
<a href="https://gov.indexcoop.com/" target="_blank" class="dropdown-text w-dropdown-link">Forum</a>
<a href="https://twitter.com/indexcoop" target="_blank" class="dropdown-text w-dropdown-link">Twitter</a>
<a href="https://discord.gg/BcqYxdNC3R" target="_blank" class="dropdown-text w-dropdown-link">Discord</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Token</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="index-token.html" class="dropdown-text w-dropdown-link">$INDEX</a>
<a href="https://snapshot.org/#/index-coop.eth" target="_blank" class="dropdown-text w-dropdown-link">Vote</a>
<a href="https://app.indexcoop.com/liquidity-mining" class="dropdown-text w-dropdown-link">Liquidity Mining</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>About </div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="about-index-coop.html" class="dropdown-text w-dropdown-link">About Us</a>
<a href="brand-style-guide.html" class="dropdown-text w-dropdown-link">Brand Guidelines</a>
</nav>
</div>
<div data-delay="3" data-hover="true" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<a href="https://indexcoop.com/blog/" class="bloglink">Blog</a>
</div>
<nav class="dropdown-list-2 bloglink w-dropdown-list"></nav>
</div>
</div>
<div class="stickytoggles">
<div class="div-block-95">
<div class="toggle">
<div class="toggle-theme2 w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleTheme toggleThemeIcon"></div>
</label>
<style>
.toggleTheme {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
border-radius: 8rem;
height: 100%;
width: 100%;
}
.toggleTheme:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="black"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleTheme:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="black"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
</style>
</div>
<div class="togglethemefooter w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleThemefooter toggleThemeIcon"></div>
</label>
<style>
.toggleThemefooter {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
height: 100%;
border-radius: 8rem;
width: 100%;
}
.toggleThemefooter:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
border-radius: 4rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="white"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="white"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="white"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="white"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="white"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="white"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="white"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="white"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleThemefooter:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
</style>
</div>
</div>
<div class="language">
<div class="language_icon white w-embed"><svg width="100%" height="100%" fill="black" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0C12.8355 0 9.74207 0.938384 7.11088 2.69649C4.4797 4.45459 2.42894 6.95345 1.21793 9.87707C0.00693253 12.8007 -0.309921 16.0177 0.307443 19.1214C0.924806 22.2251 2.44866 25.0761 4.6863 27.3137C6.92394 29.5513 9.77487 31.0752 12.8786 31.6926C15.9823 32.3099 19.1993 31.9931 22.1229 30.7821C25.0466 29.5711 27.5454 27.5203 29.3035 24.8891C31.0616 22.2579 32 19.1645 32 16C31.9952 11.758 30.308 7.69112 27.3084 4.69157C24.3089 1.69202 20.242 0.00477931 16 0ZM2.30858 16.4503L3.83818 16.9598L5.71429 19.7745V21.2409C5.7143 21.544 5.83471 21.8347 6.04903 22.049L9.14286 25.1429V27.8589C7.12912 26.6935 5.44513 25.0348 4.24949 23.0389C3.05385 21.043 2.38591 18.7756 2.30858 16.4503ZM16 29.7143C15.0114 29.7124 14.0259 29.6033 13.0608 29.3889L13.7143 27.4286L15.7767 22.2725C15.8455 22.1003 15.8715 21.914 15.8523 21.7297C15.8331 21.5453 15.7693 21.3683 15.6665 21.2141L14.0536 18.7946C13.9492 18.6381 13.8078 18.5097 13.6419 18.4209C13.476 18.3322 13.2908 18.2857 13.1026 18.2857H7.46835L6.04183 16.1456L8.47326 13.7143H10.2857V16H12.5714V12.875L16.9922 5.1384L15.0078 4.00446L14.0307 5.71429H10.8974L9.65623 3.85269C11.3224 2.97334 13.1536 2.45097 15.033 2.31891C16.9124 2.18686 18.7986 2.44801 20.5714 3.08571V6.85714C20.5714 7.16025 20.6918 7.45094 20.9062 7.66527C21.1205 7.87959 21.4112 8 21.7143 8H23.3883C23.5765 8.00001 23.7617 7.95356 23.9276 7.86478C24.0935 7.77601 24.2349 7.64764 24.3393 7.49109L25.3415 5.98777C26.6471 7.20505 27.7032 8.66485 28.4509 10.2857H23.7943C23.5301 10.2857 23.274 10.3772 23.0697 10.5448C22.8654 10.7123 22.7254 10.9454 22.6736 11.2045L21.8483 16.3139C21.8095 16.5543 21.8485 16.8007 21.9595 17.0173C22.0705 17.234 22.2478 17.4095 22.4655 17.5184L26.2857 19.4286L27.0687 24.0637C25.8003 25.8119 24.1362 27.2352 22.2124 28.2173C20.2887 29.1993 18.1599 29.7123 16 29.7143Z"></path>
</svg></div>
</div>
</div>
<div class="div-block-96">
<a href="https://app.indexcoop.com" class="app-button w-button">APP</a>
</div>
</div>
</nav>
<div data-w-id="4110e30f-a7e2-f0f1-e7c6-ccbb35b8779b" class="menu-button-2 w-nav-button">
<div class="menu w-embed"><svg viewbox="0 0 24 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<line y1="1" x2="24" y2="1" stroke="currentColor" stroke-width="2"></line>
<line y1="7" x2="24" y2="7" stroke="currentColor" stroke-width="2"></line>
<line y1="13" x2="24" y2="13" stroke="currentColor" stroke-width="2"></line>
</svg></div>
<div class="close w-embed"><svg viewbox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.41 23L16 17.591L10.59 23L9 21.41L14.409 16L9 10.591L10.591 9L16 14.409L21.409 9L23 10.591L17.591 16L23 21.41L21.41 23Z" fill="currentColor"></path>
<path d="M16 4C18.3734 4 20.6935 4.70379 22.6668 6.02236C24.6402 7.34094 26.1783 9.21509 27.0866 11.4078C27.9948 13.6005 28.2325 16.0133 27.7694 18.3411C27.3064 20.6689 26.1635 22.8071 24.4853 24.4853C22.8071 26.1635 20.6689 27.3064 18.3411 27.7694C16.0133 28.2324 13.6005 27.9948 11.4078 27.0866C9.21509 26.1783 7.34095 24.6402 6.02237 22.6668C4.70379 20.6935 4.00001 18.3734 4.00001 16C4.00371 12.8185 5.26918 9.76844 7.51882 7.51881C9.76845 5.26918 12.8185 4.00371 16 4ZM16 2C13.2311 2 10.5243 2.82109 8.22202 4.35943C5.91973 5.89777 4.12532 8.08427 3.06569 10.6424C2.00607 13.2006 1.72882 16.0155 2.26901 18.7313C2.80921 21.447 4.14258 23.9416 6.10051 25.8995C8.05845 27.8574 10.553 29.1908 13.2687 29.731C15.9845 30.2712 18.7994 29.9939 21.3576 28.9343C23.9157 27.8747 26.1022 26.0803 27.6406 23.778C29.1789 21.4757 30 18.7689 30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2Z" fill="currentColor"></path>
</svg></div>
</div>
</div>
</div>
<div class="hero-section wf-section">
<div class="maincontainer product w-container">
<div class="head_cont bankless-heading">
<div class="prod_icon_cont">
<div id="BED-logo" class="prod_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M49.9997 98.1481C76.5912 98.1481 98.1479 76.5915 98.1479 50C98.1479 23.4085 76.5912 1.85185 49.9997 1.85185C23.4082 1.85185 1.85156 23.4085 1.85156 50C1.85156 76.5915 23.4082 98.1481 49.9997 98.1481Z" fill="#181818" stroke="#DADADA" stroke-width="2"></path>
<path d="M50.093 96.4815C75.7129 96.4815 96.4819 75.7125 96.4819 50.0926C96.4819 24.4727 75.7129 3.7037 50.093 3.7037C24.4731 3.7037 3.7041 24.4727 3.7041 50.0926C3.7041 75.7125 24.4731 96.4815 50.093 96.4815Z" fill="url(#paint0_linear)"></path>
<path d="M17.7773 65.1852H82.407V70.3704H17.7773V65.1852Z" fill="#F3342F"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.7863 34.0741H25.49V36.6667H28.0826V34.0741H31.7863V36.892C35.3646 37.5187 37.2039 39.4044 37.2039 41.9594C37.2039 44.3504 35.3392 46.0159 32.684 46.4961V46.7005C35.6107 46.813 38.1479 48.7133 38.1479 51.7378C38.1479 54.66 35.8574 56.9033 31.7863 57.4594V60H28.0826V57.5926H25.49V60H21.7863V57.5926H18.8887V36.6667H21.7863V34.0741ZM24.7302 53.5157V48.5294H28.4476C30.6779 48.5294 32.0468 49.5513 32.0468 51.1554C32.0468 52.637 30.8666 53.5157 28.3413 53.5157H24.7302ZM24.7302 45.27V40.6822H28.0581C30.0052 40.6822 31.2444 41.5507 31.2444 42.9404C31.2444 44.4117 29.8753 45.27 27.9637 45.27H24.7302Z" fill="white"></path>
<path d="M40.3701 58.1482H57.4001V53.7037H40.3701V58.1482ZM41.1109 40.3704H56.662V36.1111H41.1109V40.3704ZM42.5923 48.7037H55.1849V45H42.5923V48.7037Z" fill="white"></path>
<path d="M70.0711 58.1482C77.4567 58.1482 82.0373 54.0054 82.0373 47.1189C82.0373 40.243 77.4567 36.1111 70.0593 36.1111H61.1113V58.1482H70.0711ZM66.97 53.6074V40.652H69.7634C73.9297 40.652 76.1667 42.3735 76.1667 47.1189C76.1667 51.8857 73.9297 53.6074 69.8463 53.6074H66.97Z" fill="white"></path>
<defs>
<lineargradient id="paint0_linear" x1="19.9078" y1="13.2407" x2="85.7411" y2="83.9815" gradientunits="userSpaceOnUse">
<stop></stop>
<stop offset="1" stop-color="#181818"></stop>
</lineargradient>
</defs>
</svg></div>
</div>
<h1 class="allh1 product">Bankless BED Index</h1>
</div>
<div class="current_change_cont">
<div class="btn_buysell mobile">
<a href="https://app.indexcoop.com/bed" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/bed" class="sell-button buttons w-button">Sell</a>
</div>
<div class="curr_change_cont">
<div class="currentprice">
<div class="stat_title">CURRENT PRICE</div>
<div class="stat_value currentpricenow"> </div>
</div>
<div class="change">
<div class="stat_title">CHANGE</div>
<div class="stat_value pricechange"> </div>
</div>
</div>
<div class="btn_buysell">
<a href="https://app.indexcoop.com/bed" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/bed" class="sell-button buttons w-button">Sell</a>
</div>
</div>
<p class="allparagraph2 product">Bankless proposed that the Index Coop manage a Set based on an index of Crypto’s most investable assets, BTC, ETH, and DPI, in equal weight. This construction — known as the BED Index or <span class="text-span">Bankless BED Index </span>— seeks to give safe, passive exposure to a vehicle that captures equal-weighted upside from the most promising use cases and themes in crypto: store of value, programmable money, and decentralized finance.</p>
</div>
</div>
<div class="stats-section bed wf-section">
<div class="maincontainer product bed w-container">
<div class="head_cont prod_stat bed">
<h2 class="allh2 product">Stats</h2>
</div>
<div class="w-layout-grid stat_grid bed">
<div class="stat_cont">
<div class="stat_title">Market Cap</div>
<div class="stat_value2 marketcap"> </div>
</div>
<div class="stat_cont">
<div class="stat_title">Volume</div>
<div class="stat_value2 volume"> </div>
</div>
<div class="stat_cont">
<div class="stat_title">Current Supply</div>
<div class="stat_value2 currentsupply"> </div>
</div>
<div class="stat_cont">
<div class="stat_title">Streaming Fee</div>
<div class="stat_value2">0.95%</div>
</div>
</div>
</div>
</div>
<div class="underlying-tokens wf-section">
<div class="maincontainer product bed w-container">
<div class="head_cont bed">
<h2 class="allh2 product">Underlying Tokens</h2>
</div>
<div class="w-layout-grid allproducts3 bed">
<div id="w-node-_3d5bd089-5b32-24bd-4e50-4a5125edd133-3dd0a2a1" class="token_cont product">
<div class="token_icon_cont"><img src="images/weth-1.svg" loading="lazy" alt="Wrapped Ethereum logo" class="token_icon"></div>
<div class="token_name">Wrapped ETH</div>
</div>
<div id="w-node-_3d5bd089-5b32-24bd-4e50-4a5125edd12f-3dd0a2a1" class="token_cont product">
<div class="token_icon_cont"><img src="images/wrapped-bitcoin-wbtc-logo-1.svg" loading="lazy" alt="Wrapped Bitcoin logo" class="token_icon"></div>
<div class="token_name">Wrapped BTC</div>
</div>
<div class="token_cont product">
<div class="token_icon_cont"><img src="images/DPI_token_logo-1.svg" loading="lazy" alt="DeFi Pulse token logo" class="token_icon"></div>
<div class="token_name">DPI</div>
</div>
</div>
</div>
</div>
<div class="about-section wf-section">
<div class="maincontainer product w-container">
<div class="head_cont prod_stat">
<h2 class="allh2 product">About</h2>
</div>
<div class="accordion_maincontainer trigger">
<div data-w-id="6e826baa-422c-688e-d4d1-6c8353315e9e" class="accordion_container bed">
<div data-w-id="2ea5f7f9-a09c-2442-73bc-1a203a16ebc7" class="accordion_trigger">
<div class="accordion_title bed">
<h3 class="accordion_header">Methodology</h3>
<div class="accordion_chevron">
<div class="chevron w-embed"><svg viewbox="0 0 37 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.00909 0.999859L18.3066 17.9704L35.6042 0.99986" stroke="#433BCE" stroke-width="2"></path>
</svg></div>
</div>
</div>
<div style="display:block" class="accordion_content">
<p class="allparagraph2">The BED index is meant to track crypto’s top 3 investable assets.<br></p>
<div class="w-layout-grid prodcont_grid3">
<div id="w-node-_1a665236-8d3b-9961-cf8d-34a34d1f4492-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.1667 27V25.224H18.8467V11.736H18.6787L14.4547 15.672L13.2787 14.4L17.7187 10.248H20.8627V25.224H25.1827V27H14.1667Z" fill="#09AA74"></path>
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
</svg></div>
</div>
<div class="allparagraph2"><span class="text-span">Scope: </span>The index includes the top 3 investable assets with real usage and large capitalizations around the theme of blockchain: BTC, ETH, DeFi (DPI).</div>
<div id="w-node-f40941b5-a44d-866e-5151-667a70b56e31-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M24.8467 27H13.8547V24.936L19.3267 19.896C20.1107 19.176 20.7667 18.416 21.2947 17.616C21.8227 16.8 22.0867 15.984 22.0867 15.168V14.88C22.0867 13.952 21.8307 13.2 21.3187 12.624C20.8067 12.048 20.0307 11.76 18.9907 11.76C18.4787 11.76 18.0307 11.832 17.6467 11.976C17.2627 12.12 16.9267 12.32 16.6387 12.576C16.3667 12.832 16.1347 13.136 15.9427 13.488C15.7667 13.824 15.6227 14.192 15.5107 14.592L13.7107 13.896C13.8707 13.4 14.0867 12.92 14.3587 12.456C14.6467 11.976 14.9987 11.552 15.4147 11.184C15.8467 10.816 16.3587 10.52 16.9507 10.296C17.5587 10.072 18.2707 9.96 19.0867 9.96C19.9027 9.96 20.6307 10.08 21.2707 10.32C21.9107 10.56 22.4467 10.896 22.8787 11.328C23.3107 11.76 23.6387 12.272 23.8627 12.864C24.1027 13.456 24.2227 14.112 24.2227 14.832C24.2227 15.488 24.1267 16.096 23.9347 16.656C23.7587 17.216 23.5107 17.752 23.1907 18.264C22.8707 18.76 22.4787 19.248 22.0147 19.728C21.5667 20.208 21.0787 20.688 20.5507 21.168L16.0387 25.224H24.8467V27Z" fill="#09AA74"></path>
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
</svg></div>
</div>
<div class="allparagraph2"><span class="text-span">Weighting: </span>Neutral construction, equal weight</div>
<div id="w-node-a2c5bdf6-18d8-6da3-1e0b-48b5ff311abb-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.3187 17.352C19.4547 17.352 20.3027 17.096 20.8627 16.584C21.4387 16.056 21.7267 15.384 21.7267 14.568V14.4C21.7267 13.52 21.4467 12.864 20.8867 12.432C20.3427 11.984 19.6227 11.76 18.7267 11.76C17.8627 11.76 17.1587 11.952 16.6147 12.336C16.0707 12.704 15.6227 13.208 15.2707 13.848L13.7827 12.696C13.9907 12.36 14.2387 12.032 14.5267 11.712C14.8307 11.376 15.1827 11.08 15.5827 10.824C15.9827 10.568 16.4467 10.36 16.9747 10.2C17.5027 10.04 18.1027 9.96 18.7747 9.96C19.4787 9.96 20.1427 10.056 20.7667 10.248C21.3907 10.424 21.9267 10.696 22.3747 11.064C22.8387 11.416 23.1987 11.856 23.4547 12.384C23.7267 12.912 23.8627 13.512 23.8627 14.184C23.8627 14.728 23.7747 15.216 23.5987 15.648C23.4387 16.08 23.2147 16.456 22.9267 16.776C22.6387 17.096 22.2947 17.368 21.8947 17.592C21.5107 17.816 21.0947 17.984 20.6467 18.096V18.192C21.0947 18.288 21.5267 18.448 21.9427 18.672C22.3747 18.88 22.7507 19.16 23.0707 19.512C23.4067 19.848 23.6707 20.264 23.8627 20.76C24.0707 21.24 24.1747 21.792 24.1747 22.416C24.1747 23.136 24.0387 23.8 23.7667 24.408C23.4947 25 23.1107 25.512 22.6147 25.944C22.1187 26.36 21.5187 26.688 20.8147 26.928C20.1107 27.168 19.3347 27.288 18.4867 27.288C17.7667 27.288 17.1267 27.208 16.5667 27.048C16.0067 26.888 15.5107 26.672 15.0787 26.4C14.6467 26.128 14.2627 25.824 13.9267 25.488C13.6067 25.152 13.3187 24.8 13.0627 24.432L14.5747 23.28C14.7827 23.616 15.0067 23.92 15.2467 24.192C15.5027 24.464 15.7827 24.696 16.0867 24.888C16.3907 25.08 16.7347 25.232 17.1187 25.344C17.5027 25.44 17.9507 25.488 18.4627 25.488C19.6467 25.488 20.5427 25.224 21.1507 24.696C21.7587 24.152 22.0627 23.384 22.0627 22.392V22.2C22.0627 21.208 21.7587 20.448 21.1507 19.92C20.5427 19.376 19.6467 19.104 18.4627 19.104H16.4947V17.352H18.3187Z" fill="#09AA74"></path>
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
</svg></div>
</div>
<div class="allparagraph2"><span class="text-span">Rebalancing</span>: First Friday of every month</div>
</div>
<p class="allparagraph2">The composition is:<br></p>
<div class="w-layout-grid prodcont_grid3">
<div id="w-node-_6cc4884d-2adb-0a16-53c5-5b753eeae3ac-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">33.3% Bitcoin</div>
<div id="w-node-_5e32ad4d-6259-83fb-fbec-7e50a1b92f6c-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">33.3% Ether</div>
<div id="w-node-a736b3a9-654c-10b4-38c6-f9a316572b42-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">33.3% DPI</div>
</div>
</div>
</div>
</div>
</div>
<div class="accordion_maincontainer trigger">
<div data-w-id="6297e0c0-8a66-0209-9951-9c7404dae610" style="display:block" class="accordion_container">
<div class="accordion_trigger">
<div class="accordion_title bed">
<h1 class="accordion_header">Component Selection</h1>
<div style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0)" class="accordion_chevron">
<div class="chevron w-embed"><svg viewbox="0 0 37 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.00909 0.999859L18.3066 17.9704L35.6042 0.99986" stroke="#433BCE" stroke-width="2"></path>
</svg></div>
</div>
</div>
<div style="height:0px;opacity:0;display:none" class="accordion_content">
<h4 class="prod_subtitle">Market Requirements<br></h4>
<div class="w-layout-grid prodcont_grid3">
<div id="w-node-ede9071e-e7db-2d95-43db-6cb6764ab46d-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">The components must have a Large cap valuation $25b+ [If an Index, the corresponding token market caps must have a sum of >$25b].</div>
<div id="w-node-_24e2d068-f719-5532-85eb-67c0f78c6290-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">The components must show signs of heavy usage either as a network (btc, eth) or smart contract theme (DeFi).</div>
<div id="w-node-_5138236c-930c-8a18-cf79-41621b1da206-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">The assets must have sufficient liquidity for initial inclusion and rebalances.<br></div>
</div>
<h4 class="prod_subtitle">Safety Requirements<br></h4>
<div class="w-layout-grid prodcont_grid2">
<div id="w-node-bf9612bb-d5b3-43a0-7cdd-3a3ea2e818bc-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Assets and themes within the Bankless BED Index should have vast, well-established safety guarantees.<br></div>
<div id="w-node-_0afe609c-305f-50a7-818a-8d0c3503822d-3dd0a2a1" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Any network/protocol must have conducted sufficient security audits and/or security professionals must have reviewed the protocol to determine that security best practices have been followed.<br></div>
</div>
</div>
</div>
</div>
</div>
<div class="accordion_maincontainer trigger bottom">
<div data-w-id="74e6bd0e-9887-7973-b61d-a73f3e81c831" style="display:block" class="accordion_container">
<div data-w-id="12e3fc56-d060-89a3-fbb1-f2045bc2c100" class="accordion_trigger">
<div class="accordion_title bed">
<h3 class="accordion_header">Index Maintenance</h3>
<div style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0)" class="accordion_chevron">
<div class="chevron w-embed"><svg viewbox="0 0 37 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.00909 0.999859L18.3066 17.9704L35.6042 0.99986" stroke="#433BCE" stroke-width="2"></path>
</svg></div>
</div>
</div>
<div style="height:0px;opacity:0;display:none" class="accordion_content">
<h4 class="prod_subtitle">Determination Phase<br></h4>
<p class="allparagraph2">The determination phase takes place during the fourth week of the month. It is the phase when the changes needed for the next reconstitution are determined.<br></p>
<div class="div-block-82"></div>
<h4 class="prod_subtitle">Reconstitution Phase<br></h4>
<p class="allparagraph2">The underlying index is rebalanced after the close of trading on the first Friday of each calendar month. The Fund is rebalanced in accordance with its Underlying Index.<br></p>
</div>
</div>
</div>
</div>
<div class="longline"></div>
<div class="btn_buysell mobile">
<a href="https://app.indexcoop.com/bed" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/bed" class="sell-button buttons w-button">Sell</a>
</div>
<div class="btn_buysell">
<a href="https://app.indexcoop.com/bed" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/bed" class="sell-button buttons w-button">Sell</a>
</div>
</div>
</div>
<div class="sign-up-for-newsletter wf-section">
<div class="maincontainer w-container">
<div class="form-block w-form">
<form id="email-form" name="email-form" data-name="Email Form" method="post" class="form">
<div class="form_title">Sign up for our newsletter</div>
<div class="field_cont"><input type="email" class="form_field email_footer w-input" maxlength="256" name="email" data-name="email" placeholder="email" id="email-4" required=""><input type="submit" value="Subscribe" data-wait="Please wait..." class="submit-button email_footer w-button"></div>
<div class="w-embed">
<!-- List token -->
<!-- Get the token at: https://app.getresponse.com/campaign_list.html -->
<input type="hidden" name="campaign_token" value="rW7OY">
<!-- Add subscriber to the follow-up sequence with a specified day (optional) -->
<input type="hidden" name="start_day" value="0">
<!-- Thank you page (optional) -->
<input type="hidden" name="thankyou_url" value="https://www.indexcoop.com/thank-you">
</div>
</form>
<div class="w-form-done">
<div>Thank you! Your submission has been received!</div>
</div>
<div class="error-message w-form-fail">
<div class="error-text">Oops! Something went wrong while submitting the form.</div>
</div>
</div>
</div>
</div>
<div id="Footer" class="footer wf-section">
<div class="maincontainer w-container">
<div class="div-block-15">
<div class="footerlinkscontainer">
<div class="productsfooter">
<div class="footlinktitle">Products</div>
<a href="defi-pulse-index-dpi.html" class="footitem footlink _1st">DeFi Pulse Index</a>
<a href="metaverse-index-mvi.html" class="footitem footlink">Metaverse Index</a>
<a href="data-economy-index.html" class="footitem footlink">DATA Index</a>
<a href="bankless-bed-index.html" aria-current="page" class="footitem footlink w--current">BED Index</a>
<a href="bankless-defi-innovation-index-gmi.html" class="footitem footlink">DeFi Innovation Index</a>
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="footitem footlink">ETH2x-FLI</a>
<a href="polygon-eth2xfli.html" class="footitem footlink">ETH2x-FLI Polygon</a>
<a href="polygon-inverse-iethfli.html" class="footitem footlink">iETH-FLI Polygon</a>
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="footitem footlink">BTC2x-FLI</a>
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="footitem footlink">MATIC2x-FLI Polygon</a>
<a href="polygon-inverse-imaticfli.html" class="footitem footlink">iMATIC-FLI Polygon</a>
</div>
<div class="resourcesfooter">
<div class="footlinktitle">Resources</div>
<a href="methodologist.html" class="footitem footlink _1st">For methodologists</a>
<a href="institution.html" class="footitem footlink">For institutions</a>
<a href="contributor.html" class="footitem footlink">For contributors</a>
<a rel="nofollow noopener" href="https://docs.indexcoop.com/" target="_blank" class="footitem footlink">Docs & Guides</a>
</div>
<div class="connectfooter">
<div class="footlinktitle">Connect with us</div>
<a rel="nofollow noopener" href="https://twitter.com/indexcoop" target="_blank" class="footitem footlink _1st"><span class="text-span-7"></span> Twitter</a>
<a rel="nofollow noopener" href="https://www.youtube.com/channel/UCsNqHm_2LKh0E4A0vf25pIw" target="_blank" class="footitem footlink"><span class="text-span-8">youtube</span> YouTube</a>
<a rel="nofollow noopener" href="https://www.instagram.com/indexcoop/" target="_blank" class="footitem footlink"><span class="text-span-8">instagram</span> Instagram</a>
<a rel="nofollow noopener" href="https://discord.gg/BcqYxdNC3R" target="_blank" class="footitem footlink"><span class="text-span-9">discord</span> Discord</a>
<a href="mailto: [email protected]" class="footitem footlink"><span class="text-span-10">envelope </span>Email</a>
</div>
</div>
<div class="div-block-16">
<div class="index-logo-cont"><img src="images/Group.svg" loading="lazy" width="116" alt=""></div>
<div class="icon_wrapper">
<div class="toggle">
<div class="togglethemefooter footer w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleThemefooter toggleThemeIcon footer"></div>
</label>
<style>
.toggleThemefooter {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
height: 100%;
border-radius: 8rem;
width: 100%;
padding: 0;
}
.toggleThemefooter:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="white"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="white"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="white"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="white"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="white"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="white"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="white"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="white"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleThemefooter:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="white"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="white"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="white"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="white"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="white"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="white"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="white"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="white"/%3E%3C/svg%3E%0A');
}
</style>
</div>
</div>
</div>
</div>
<p class="paragraph-11">Information is for educational and illustrative purposes only. The Index Cooperative is not engaged in the business of the offer, sale or trading of securities and does not provide legal, tax, or investment advice. Cryptocurrencies and other digital assets are speculative and involve a substantial degree of risk, including the risk of complete loss. There can be no assurance that any cryptocurrency, token, coin, or other crypto asset will be viable, liquid, or solvent.No Index Cooperative communication is intended to imply that any digital assets are low-risk or risk-free. The Index Cooperative works hard to provide accurate information on this website, but cannot guarantee all content is correct, complete, or updated.<br></p>
</div>
</div>
</div>
</div>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=60d237b6ea65be721ff4bbfa" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="js/webflow.js" type="text/javascript"></script>
<!-- [if lte IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script><![endif] -->
<script>
function setThemeFromCookie() {
const themeState = document.getElementById('content');
themeState.className = isThemeSelected() ? 'dark-mode' : 'light-mode';
}
function setThemeSwitchState() {
document.getElementById('toggleTheme').checked = isThemeSelected();
}
function isThemeSelected() {
return document.cookie.match(/theme=dark/i) != null;
}
function toggleTheme() {
const themeState = document.getElementById('content');
const currentState = themeState.className;
const newState = themeState.className == 'dark-mode' ? 'light-mode' : 'dark-mode';
themeState.className = newState;
document.cookie = 'theme=' + newState;
}
(function() {
setThemeFromCookie();
setThemeSwitchState();
document.getElementById('toggleTheme').onchange=toggleTheme;
})();
$('.menu').on('click', function(){
$('body').addClass('no-scroll');
});
$('.close').on('click', function(){
$('body').removeClass('no-scroll');
});
</script>
<script>
fetch('https://api.coingecko.com/api/v3/coins/bankless-bed-index')
.then(response => response.json())
.then(data => {
console.log(data) // Prints result from `response.json()` in getRequest