-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1518 lines (1385 loc) · 62.5 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><meta charset="UTF-8">
<head>
<meta name="description" content="Guru Network DAO \ eliteness.eth">
<meta name="keywords" content="Guru, Guru Network, DAO, eliteness, Fantom Opera, FTM, Decentralized Finance, ELITE, 1337, defi, farming, FTM1337">
<title>Guru Network DAO \ eliteness.eth</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://ftm.guru/icons/64.png" />
<style>
</style>
<link rel="stylesheet" href="index.css">
<body>
<div id="firstview">
<div id="firstview-h">
<h1>🦾, 🚀</h1>
<h2>Guru Network</h2>
Decentralized. Autonomous. Organization.
</div>
</div>
<div>
</div>
<div id="navbar">
<img src="https://ftm.guru/icons/m2.png" height="100%">
<a href="#dapps" target="">ÐApps</a>
<a href="#intro-1-outer" target="_blank">Manifesto</a>
<a href="http://discord.gg/QpyfMarNrV" target="_blank">Say hello!</a>
</div>
<div class="footr">
<br><br>This new website has been deprecated and might not include all our dApps, tools, services, contracts & offerings.
<br><br>
<h1>
<a href="https://eliteness.network" target="_blank">
Please visit our new site
<br>
<u>Eliteness.Netowork</u>
<br>for more recent updates and newer Dapps!
</a>
</h1>
<br><br>Or check out our <a href="2021">original homepage from 2021</a> for more ancient relics!<br>
<br><br>Join our vibrant community!<br>
<a href="http://discord.gg/QpyfMarNrV" target="_blank">Discord</a> |
<a href="http://twitter.com/FTM1337" target="_blank">Twitter</a> |
<a href="http://t.me/FTM1337" target="_blank">Telegram</a>
<br><br>
<br><br><br>
<h1>( 🦾, 🚀 )</h1>
</div>
<div id="intro-1-outer">
<br><br><br><br>
<div id="intro-1">
<div id="intro-1-q">
<span>We</span>
<span>Wield</span>
<span>Web.3</span>
</div>
<div id="intro-1-a">
Started in the May of 2021,
<br>Guru Network is a vast collective,
<br>an open community,
<br>with a shared Goal :
<br>⇀ To Help Everyone
<br>⇀ To De-Centralize Finance
<br>⇀ To Grow together.
</div>
</div>
<br><br>
<div id="nums-1">
<div class="nums-1-card">
<div>49</div>
<div>DApps Launched</div>
</div>
<div class="nums-1-card">
<div>238</div>
<div>Contracts Deployed</div>
</div>
<div class="nums-1-card">
<div>50+</div>
<div>Daily Active Users</div>
</div>
<div class="nums-1-card">
<div>$50+</div>
<div>Avg. Daily Revenue</div>
</div>
</div>
<br><br><br><br>
</div>
<div id="metrics">
<br><br><br><br><br><br>
<div id="metrics-h">Key Performance Indicators</div>
<div align="center">(As on 22 October 2022)</div>
<br><br>
<div id="metrics-t">
<div class="metrics-m">
<div>$145K</div>
<div>Circulating Market Capitalization</div>
</div>
<div class="metrics-m">
<div>$126K</div>
<div>Total Value Locked in Smart Contracts</div>
</div>
<div class="metrics-m">
<div>164K+</div>
<div>On-Chain User Interactions</div>
</div>
<div class="metrics-m">
<div>$124K</div>
<div>Present Treasury Valuation</div>
</div>
<div class="metrics-m">
<div>2000+</div>
<div>Genuine Platform Users</div>
</div>
<div class="metrics-m">
<div>23⨯👥</div>
<div>Clients & Protocols Served</div>
</div>
<div class="metrics-m">
<div>6⨯⛓</div>
<div>Blockchain Networks Supported</div>
</div>
<div class="metrics-m">
<div>1.6 yrs</div>
<div>Online in Service since May 2021</div>
</div>
</div>
<div>
</div>
<br><br><br><br><br><br>
</div>
<div class="daogov">
<br><br><br>
<h2>Self-sovereign, Public Governance.</h2>
<br>
<div id="daogov-snap">
<img src="snapshot.png">
<div>
<br><br>
<h3>ELITENESS.</h3>
The Power of Your Vote<br><br>
<span id="daogov-snap-s">
<b>Eliteness</b> is a <i>Status Symbol</i>.
<br>A measure of <b>your influence</b> 🦾
</span>
</div>
</div>
</div>
<br><br><br><br>
<div id="roots-1">
<br><br><br><br>
<div id="roots-1-bd">
<div id="roots-1-b" align="center">
<img src="https://ftm.guru/icons/ftm1337.jpg">
</div>
<div id="roots-1-d">
<span id="roots-1-d-g">Governed by</span>
<span>
<span id="roots-1-d-e">ELITE</span>
<br>
<span id="roots-1-d-f">The FTM.Guru token</span>
</div>
</div>
<br>
<div id="roots-1-i">
<br><br>
<a href="https://ftmscan.com/token/0xf43Cc235E686d7BC513F53Fbffb61F760c3a1882" target="_blank"><img src="https://ftm.guru/icons/ftmscan.svg"></a>
<a href="https://coinmarketcap.com/currencies/elite-1337" target="_blank"><img src="https://ftm.guru/icons/cmc.svg"></a>
<a href="https://messari.io/asset/ftm-guru/metrics" target="_blank"><img src="https://ftm.guru/icons/messari.svg"></a>
<a href="https://www.coingecko.com/en/coins/ftm-guru" target="_blank"><img src="https://ftm.guru/icons/gecko.svg"></a>
<a href="https://nomics.com/assets/elite2-ftmguru" target="_blank"><img src="https://ftm.guru/icons/nomics.svg"></a>
</div>
<div id="roots-1-i-s">
$ELITE is a special, <b>re-generative</b> token.
<br>18-decimal fungible with supply capped at <b>250</b>.
<br>Being an owner bestows <b>special voting rights</b> over eliteness.eth
</div>
<br><br><br><br>
</div>
<div class="daogov">
<div id="daogov-snap-d">
<br><br>Contributors to the ELITE economy are bestowed ELITENESS;
<br><br>ELITE is a <i>highly liquid</i> asset with a 1.337% transfer charge.
<br>ELITENESS is a non-transferable <i>virtual property</i>.
<br><br>Liquidity Providers, Farmers, XELITE Stakers & all holders
<br>accrue ELITENESS based on their On-Chain actions.
<br><br>Eliteness transcends the walls of a wallet;
<br>Even Robots & Smart contracts can acquire Eliteness!
<br><br>Anyone with an ELITENESS over 133.7 can create Proposals.
<br>Everyone with a positive ELITENESS can vote.
</div>
<br><br><br><br>
</div>
<div class="backed">
<h2>Backed by Powerful Assets</h2>
<br><br>Our treasury accumulates more & more assets that generate sustainable yield and give us governance rights at external protocols.
<br><br><br><br>
<h4>Current holdings of Guru Network<br>
<span class="backed-sub">(As on 2022-11-05. Circulating Supply of ELITE = 250)</span>
</h4>
<div align="center" style="overflow:auto">
<table class="backed-t">
<thead>
<tr>
<td onclick="sortit('backed-t-b',1)" colspan="2">Asset Description</td>
<td onclick="sortit('backed-t-b',2)" >Quantity</td>
<td onclick="sortit('backed-t-b',3)" >Dominance</td>
<td onclick="sortit('backed-t-b',4)" >Valuation</td>
<td onclick="sortit('backed-t-b',5)" >Qty per 1 ELITE</td>
<td onclick="sortit('backed-t-b',6)" >$ per 1 ELITE</td>
</tr>
</thead>
<tbody id="backed-t-b">
<tr>
<td><img src="https://ftm.guru/icons/spirit.png"></td>
<td>Spiritswap</td>
<td>670,203</td>
<td>0.20 %</td>
<td>$ 5,463</td>
<td>2680 SPIRIT</td>
<td>$ 21.85</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/beets.png"></td>
<td>Fresh Beets</td>
<td>40,262</td>
<td>0.00 %</td>
<td>$ 2,267</td>
<td>160 fBEETS</td>
<td>$ 9.02</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/usdc.svg"></td>
<td>USD Coin</td>
<td>15,732</td>
<td>0.00 %</td>
<td>$ 15,732</td>
<td>66.53 USDC</td>
<td>$ 66.53</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/dai.svg"></td>
<td>DAI</td>
<td>3,500</td>
<td>0.00 %</td>
<td>$ 3,500</td>
<td>14.00 DAI</td>
<td>$ 14.00</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/ftm.svg"></td>
<td>Wrapped Fantom</td>
<td>15,000</td>
<td>0.00 %</td>
<td>$ 4,300</td>
<td>600 WFTM</td>
<td>$ 17.21</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/spirit.png" style="background:#000;border-radius:100px"></td>
<td>inSPIRIT</td>
<td>12,048,579</td>
<td>3.55 %</td>
<td>$ 97,750</td>
<td>48,195 SPIRIT</td>
<td>$ 391.00</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/firebird.svg"></td>
<td>veFBA: Firebird</td>
<td>707.69</td>
<td>0.12 %</td>
<td>$ 675</td>
<td>2.83 FBA</td>
<td>$ 2.69</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/scarab.png"></td>
<td>Scarab</td>
<td>91,811</td>
<td>4.44 %</td>
<td>$ 1,905</td>
<td>367 SCARAB</td>
<td>$ 7.62</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/eth.svg"></td>
<td>Ethereum</td>
<td>0.3775</td>
<td>0.00 %</td>
<td>$ 625</td>
<td>0.0015 SCARAB</td>
<td>$ 2.50</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/ech.svg"></td>
<td>Echelon</td>
<td>4,000,000</td>
<td>1.24 %</td>
<td>$ 4,000</td>
<td>16,000 ECH</td>
<td>$ 16.00</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/metis.svg"></td>
<td>Metis DAO</td>
<td>4.25</td>
<td>0.00 %</td>
<td>$ 125</td>
<td>1.70 METIS</td>
<td>$ 0.50</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/gscarab.png"></td>
<td>Golden Scarab</td>
<td>1480</td>
<td>2.16 %</td>
<td>$ 975</td>
<td>5.92 GSCARAB</td>
<td>$ 4.26</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/rdl.svg"></td>
<td>Radial Finance</td>
<td>215,000</td>
<td>13.01 %</td>
<td>$ 1,800</td>
<td>860 RDL</td>
<td>$ 7.20</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/sinspirit.png"></td>
<td>Scarab inSPIRIT</td>
<td>5,081,061</td>
<td>17.04 %</td>
<td>$ 1,425</td>
<td>20,324 SINSPIRIT</td>
<td>$ 5.70</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/solidly.svg"></td>
<td>Solidly</td>
<td>75,000</td>
<td>0.51 %</td>
<td>$ 0</td>
<td>300 SOLID</td>
<td>$ 0</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/solidly.svg"></td>
<td>veSOLID: veNFT</td>
<td>1,350</td>
<td>0.00 %</td>
<td>$ 0</td>
<td>5.4 SOLID</td>
<td>$ 0</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/solidly.svg"><img src="https://ftm.guru/icons/oxd.svg" style="left:-2.5vw;top:-0.5vw;height:2vw"></td>
<td>oxSOLID</td>
<td>25,000</td>
<td>0.17 %</td>
<td>$ 0</td>
<td>100 oxSOLID</td>
<td>$ 0</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/oxd.svg"></td>
<td>OXD</td>
<td>10,000</td>
<td>0.21 %</td>
<td>$ 0</td>
<td>40 OXD</td>
<td>$ 0</td>
</tr>
<tr>
<td><img src="https://ftm.guru/icons/64.png" style="border-radius:0.5vw"></td>
<td>ELITE</td>
<td>10</td>
<td>4.00 %</td>
<td>$ 6,780</td>
<td>0.04 ELITE</td>
<td>$ 27.12</td>
</tr>
<thead>
<tr>
<td></td>
</tr>
<tr>
<td onclick="sortit('backed-t-b',1)" colspan="4">Aggregate Total of all assorted Assets</td>
<td onclick="sortit('backed-t-b',4)" >$ 148,300</td>
<td onclick="sortit('backed-t-b',5)" ></td>
<td onclick="sortit('backed-t-b',6)" >$ 593.2</td>
</tr>
</thead>
</tbody>
</table>
</div>
</div>
<div id="dapps">
<br><br><br><br>
<div id="dapps-h1">ÐApps</div>
<div id="dapps-h2">by Guru Network</div>
<div id="dapps-bi">
<input id="dapps-inp" placeholder="Your favorite Dapp...">
<br>
<button id="dapps-btn-s">Search</button>
<button id="dapps-btn-i">I'm feeling Lucky</button>
</div>
<div id="dapps-h">
<h2 id="dapps-h-2">Popular Results</h2>
<span id="dapps-h-s" onclick="window.location='#dapp-last'">>> Scroll to last app</span>
</div>
<div class="dapps-p">
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/GRAIN'">
<div class="dapps-p-h">Kompound Protocol (Fantom)</div>
<div class="dapps-p-u">↳ftm.guru/GRAIN</div>
<div class="dapps-p-d">Immutable Yield-Compounder to automate & optimize yield-farming with De-Fi protocols on Opera.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://kcc.eliteness.network/kompound'">
<div class="dapps-p-h">Kompound Protocol (K.C.C.)</div>
<div class="dapps-p-u">↳kcc.eliteness.network/GRAIN</div>
<div class="dapps-p-d">Immutable Yield-Compounder to automate & optimize yield-farming with De-Fi protocols on the KCC.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/kcc.png">
<span>Kucoin Community Chain</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ech.guru/GRAIN'">
<div class="dapps-p-h">Kompound Protocol (Echelon)</div>
<div class="dapps-p-u">↳ech.guru/GRAIN</div>
<div class="dapps-p-d">Immutable Yield-Compounder to automate & optimize yield-farming with De-Fi protocols of the Upper Echelon.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ech.svg" style="background:rgba(80,80,80,0.1);border-radius: 100vw">
<span>Echelon Network</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://mtv.guru/GRAIN'">
<div class="dapps-p-h">Kompound Protocol (MultiVAC)</div>
<div class="dapps-p-u">↳mtv.guru/GRAIN</div>
<div class="dapps-p-d">Immutable Yield-Compounder to automate & optimize yield-farming with De-Fi protocols at MultiVAC.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/equalizer'">
<div class="dapps-p-h">VeNAMM: The Ve-NFT A.M.M.</div>
<div class="dapps-p-u">↳ftm.guru/equalizer</div>
<div class="dapps-p-d">Decentralized Exchange for Vote-escrowed NFTs based on user-defined Tick-Range AMM for veNFTs.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/solidly/oxdao/delegate'">
<div class="dapps-p-h">0xDAO Vote Delagation</div>
<div class="dapps-p-u">↳ftm.guru/solidly/oxdao/delegate</div>
<div class="dapps-p-d">Delegate your vlOXD votes to FTM.Guru and earn maximum rewards from the highest bribers.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Solidly</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://kcc.eliteness.network/casino'">
<div class="dapps-p-h">Kucino Casino</div>
<div class="dapps-p-u">↳kcc.eliteness.network/casino</div>
<div class="dapps-p-d">Decentralized gambling platform with over 7 unique provably-fair on-chain games.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/kcc.png">
<span>Kucoin Community Chain</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://scarab.finance'">
<div class="dapps-p-h">Scarab Finance</div>
<div class="dapps-p-u">↳scarab.finance</div>
<div class="dapps-p-d">Algorithmic Stablcoin pegged to 1 FTM. Acquired by Guru Network in October of 2022.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Scarab</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/ascend'">
<div class="dapps-p-h">Ascend: Scarab tokens</div>
<div class="dapps-p-u">↳ftm.guru/ascend</div>
<div class="dapps-p-d">Convert SCARAB, GSCARAB & SINSPIRIT tokens to ELITE. Powered by LlamaPay.io</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Scarab</span>
<span>#LlamaPay</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/ascend/floor'">
<div class="dapps-p-h">Floor Price Analytics (Ascend)</div>
<div class="dapps-p-u">↳ftm.guru/ascend/floor</div>
<div class="dapps-p-d">Track real-time floor prices of SCARAB, GSCARAB & SINSPIRIT tokens with historical charts.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Scarab</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ech.guru/dexch'">
<div class="dapps-p-h">Dexchelon</div>
<div class="dapps-p-u">↳ech.guru/dexch</div>
<div class="dapps-p-d">Native DEX Aggregator with a unique "JIT" Just-in-Time matching engine.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ech.svg">
<span>Echelon Network</span>
</div>
<div class="dapps-p-t">
<span>#DEX</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://vax.mtv.guru'">
<div class="dapps-p-h">Value Added eXchange</div>
<div class="dapps-p-u">↳vax.mtv.guru</div>
<div class="dapps-p-d">The V.A.X. is a decentralized exchange with governable trade-fee dynamics capable of flexible yields and high composability.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
<div class="dapps-p-t">
<span>#DEX</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/LF'">
<div class="dapps-p-h">LITE Farmlands</div>
<div class="dapps-p-u">↳mtv.guru/LF</div>
<div class="dapps-p-d">Farmlands enable any user to start their own farms and set their own conditions, including the Farmed asset, the Reward asset, the Duration and the Annual Percentage Returns.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
<div class="dapps-p-t">
<span>#Yield</span>
<span>#Farm</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/nftdrop'">
<div class="dapps-p-h">NFT Airdropper (Fantom)</div>
<div class="dapps-p-u">↳ftm.guru/nftdrop</div>
<div class="dapps-p-d">Bulk-send multiple Non-Fungible tokens to over 150 addresses in a single transaction.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://kcc.eliteness.network/airdrop'">
<div class="dapps-p-h">Token Airdropper (KCC)</div>
<div class="dapps-p-u">↳kcc.eliteness.network/airdrop</div>
<div class="dapps-p-d">The first multi-sender tool on KCC to distribute tokens to the masses in just 1 second.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/kcc.png">
<span>Kucoin Community Chain</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://mtv.guru/airdrop'">
<div class="dapps-p-h">Token Airdropper (MTV)</div>
<div class="dapps-p-u">↳ftm.guru/airdrop</div>
<div class="dapps-p-d">The first multi-sender tool on MultiVAC to distribute tokens to the masses in just 1 second.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/airdrop'">
<div class="dapps-p-h">Token Airdropper (Fantom)</div>
<div class="dapps-p-u">↳ftm.guru/airdrop</div>
<div class="dapps-p-d">The original multi-sender tool on Fantom to distribute tokens to the masses in just 1 second.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://scan.mtv.guru/apr'">
<div class="dapps-p-h">Trade-fee APR Tracker</div>
<div class="dapps-p-u">↳scan.mtv.guru/apr</div>
<div class="dapps-p-d">A simple dashboard to track the yield generated from trading fee at popular MTV DEXes.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://solidly.ftm.guru'">
<div class="dapps-p-h">Solidly.Exchange Mirror</div>
<div class="dapps-p-u">↳solidly.ftm.guru</div>
<div class="dapps-p-d">The first-ever mirror of Solidly's user interface launched within an hour after original's shutdown notice.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Solidly</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/solidly'">
<div class="dapps-p-h">Solidly Extended</div>
<div class="dapps-p-u">↳ftm.guru/solidly</div>
<div class="dapps-p-d">Extension for Solidly introducing BaseV1Router02 to enable multi-pool Trading & Liquidity management of tokens with Fee-on-Transfer, Rebase mechanisms, Auto-LP and more exotic De-Fi recipes.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Solidly</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru/dex'">
<div class="dapps-p-h">Beethoven-x Voter History</div>
<div class="dapps-p-u">↳ftm.guru/beets/votes</div>
<div class="dapps-p-d">A useful voter-tracker for bribers to help them disburse bribes swiftly! A great tool for data analysts to understand voter behaviour.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Data</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru/dex'">
<div class="dapps-p-h">Fantom DEX Rankings</div>
<div class="dapps-p-u">↳fmc.guru/dex</div>
<div class="dapps-p-d">Real-time overview and Ranking of All Decentralized Echanges (DEX) running on the Fantom Opera Blockchain.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#FantomMarketCap</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru/tokens'">
<div class="dapps-p-h">Popular Fantom Tokens & Statistics</div>
<div class="dapps-p-u">↳fmc.guru/tokens</div>
<div class="dapps-p-d">FMC's real-time statistics of popular tokens on Fantom, indexed by On-chain Price, Market Cap, Liquidity and Supply. </div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#FantomMarketCap</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru/defi'">
<div class="dapps-p-h">Opera's De-Fi Platforms</div>
<div class="dapps-p-u">↳fmc.guru/defi</div>
<div class="dapps-p-d">TVL synopsis of all the major DeFi Protocols that harness the speed of Opera the best.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#FantomMarketCap</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru/aggregators'">
<div class="dapps-p-h">DEX-Aggregators on Fantom</div>
<div class="dapps-p-u">↳fmc.guru/aggregators</div>
<div class="dapps-p-d">FantomMarketCap's list of all Liquidity Aggregation services present on Opera Network.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#FantomMarketCap</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru/compounders'">
<div class="dapps-p-h">Fantom's Yield Compounders</div>
<div class="dapps-p-u">↳fmc.guru/compounders</div>
<div class="dapps-p-d">FantomMarketCap's list of all Yield Compounding Platforms on Fantom Chain, ranked by TVL.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#FantomMarketCap</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/LF'">
<div class="dapps-p-h">LITE Farmlands</div>
<div class="dapps-p-u">↳ftm.guru/LF</div>
<div class="dapps-p-d">Farmlands enable any user to start their own farms and set their own conditions, including the Farmed asset, the Reward asset, the Duration and the Annual Percentage Returns.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Yield</span>
<span>#Farm</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://fmc.guru'">
<div class="dapps-p-h">FantomMarketCap</div>
<div class="dapps-p-u">↳fmc.guru</div>
<div class="dapps-p-d">FMC.guru is a data aggregator for Fantom Opera Blockchain. It provides a bird-eye view of the top and vetted projects running atop FTM including DEXes, Liquidity Aggregators, Yield Optimizers and other DeFi platforms</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Data</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/pair'">
<div class="dapps-p-h">Multi-DEX Pair Explorer</div>
<div class="dapps-p-u">↳ftm.guru/pair</div>
<div class="dapps-p-d">Find out the latest movements in pools and liquidity depths and constituents of any AMM pair on Fantom Opera.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Data</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/fantomscan'">
<div class="dapps-p-h">FantomScan</div>
<div class="dapps-p-u">↳ftm.guru/fantomscan</div>
<div class="dapps-p-d">Created in May 2021 when ftmscan.com went out of service. Find out anyone's FTM balance, Token Balances, View Token Allowances, find out the status of a Transaction, Check gas prices, estimate transaction costs and more useful data!</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Explorer</span>
<span>#ChainData</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://kcc.eliteness.network/kscan'">
<div class="dapps-p-h">KScan</div>
<div class="dapps-p-u">↳kcc.eliteness.network/kscan</div>
<div class="dapps-p-d">Find out anyone's KCC balance, Token Balances, View Token Allowances, find out the status of a Transaction, Check gas prices, estimate transaction costs and more useful data!</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/kcc.png">
<span>Kucoin Community Chain</span>
</div>
<div class="dapps-p-t">
<span>#Explorer</span>
<span>#ChainData</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://scan.ech.guru'">
<div class="dapps-p-h">EchScan</div>
<div class="dapps-p-u">↳scan.ech.guru</div>
<div class="dapps-p-d">Find out anyone's ECH balance, Token Balances, View Token Allowances, find out the status of a Transaction, Check gas prices, estimate transaction costs and more useful data!</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ech.svg">
<span>Echelon</span>
</div>
<div class="dapps-p-t">
<span>#Explorer</span>
<span>#ChainData</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://scan.mtv.guru'">
<div class="dapps-p-h">MTVScan</div>
<div class="dapps-p-u">↳scan.mtv.guru</div>
<div class="dapps-p-d">Find out anyone's MTV balance, Token Balances, View Token Allowances, find out the status of a Transaction, Check gas prices, estimate transaction costs and more useful data!</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
<div class="dapps-p-t">
<span>#Explorer</span>
<span>#ChainData</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://scan.mtv.guru/tokens'">
<div class="dapps-p-h">Token Explorer</div>
<div class="dapps-p-u">↳scan.mtv.guru/tokens</div>
<div class="dapps-p-d">General token info & transactions with Address & from-to combo filters. Enables inspection of anyone's, all past token transactions.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/mtv.png">
<span>MultiVAC</span>
</div>
<div class="dapps-p-t">
<span>#Explorer</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://scan.ech.guru/tokens'">
<div class="dapps-p-h">Echelon's Token Explorer</div>
<div class="dapps-p-u">↳scan.ech.guru/tokens</div>
<div class="dapps-p-d">General token info & transactions with Address & from-to combo filters. Enables inspection of anyone's, all past token transactions.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ech.svg">
<span>Echelon</span>
</div>
<div class="dapps-p-t">
<span>#Explorer</span>
<span>#Analytics</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/YS'">
<div class="dapps-p-h">YieldState</div>
<div class="dapps-p-u">↳ftm.guru/YS</div>
<div class="dapps-p-d">YieldState presents the "Core" liquidity providers of ELITE the opportunity to generate a passive yield on top of the AMM volumetric returns. Stake ELITE-paired LP tokens in the YieldState to boost your Liquidity APYs using Spooky/Sushi.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#ELITE</span>
<span>#Farm</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/apelist'">
<div class="dapps-p-h">Ape List</div>
<div class="dapps-p-u">↳ftm.guru/apelist</div>
<div class="dapps-p-d">Scan the Fantom Opera for latest markets created on its DEXes and brings the Elites an overview of the most recent Tokens created. Essentially a Coal field studded with rare Diamonds, The Ape-List brings a plateful of opportunities and risks alike!</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Data</span>
<span>#Explorer</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/approver'">
<div class="dapps-p-h">The Approver</div>
<div class="dapps-p-u">↳ftm.guru/approver</div>
<div class="dapps-p-d">The Approver tool enables everyone to create allowance, edit or modify spending limits, grant infinite permissions or Revoke any of these easily. Two intuitive functions, "Soft Approve" and "Hard Approve" make editing allowances on Smart Contracts a lot quicker and comfortable, even for Mobile users.
</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Tools</span>
<span>#Revoke</span>
<span>#Allowance</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/elite'">
<div class="dapps-p-h">ELITE Token</div>
<div class="dapps-p-u">↳ftm.guru/elite</div>
<div class="dapps-p-d">A concept called "Eliteness" dictates the eligibility to use some of our decentralized apps. Holding ELITE unlocks our tiered services and grants holders exciting perks with our partner-platforms as well.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#ELITE</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/xelite'">
<div class="dapps-p-h">The XELITE</div>
<div class="dapps-p-u">↳ftm.guru/xelite</div>
<div class="dapps-p-d">The xELITE is an interest-bearing, over-collateralized form of ELITE. In contrast, it is abundant in fungibility and yet envelopes all the qualities of its underlying.</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#ELITE</span>
<span>#Yield</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/rawdata/tvl'">
<div class="dapps-p-h">TvlGuru.sol</div>
<div class="dapps-p-u">↳ftm.guru/rawdata/tvl</div>
<div class="dapps-p-d">A Smart Contract that calculates instantaneous TVL (via on-chain calls) & per-block TVL (via web3 calls) of any Decentralized Finance platform. The Universal TVL Finder can work with any Protocol, Project or EVM-like blockchain.
</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#ChainData</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/bo'">
<div class="dapps-p-h">FTMUSD Binary Options</div>
<div class="dapps-p-u">↳ftm.guru/bo</div>
<div class="dapps-p-d">B.O. is the First Binary Options platform on Fantom Opera. A perpetual Prediction Market enabled by Band Protocol. Current Markets include FTM/USD with contract expiries of 13hrs. 37mins. Currently in pre-alpha! (v0.3.3)</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Options</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://dao.ftm.guru'">
<div class="dapps-p-h">DAO Proposals & Voting</div>
<div class="dapps-p-u">↳dao.ftm.guru</div>
<div class="dapps-p-d">Guru Network DAO is open to proposals from all its members who have an ELITENESS level of over 100. All members can vote on all proposals ranging from resource management to internal structuring and more, powered by Snapshot.org</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#DAO</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/treasury'">
<div class="dapps-p-h">Our Treasury</div>
<div class="dapps-p-u">↳ftm.guru/treasury</div>
<div class="dapps-p-d">Guru Network's Multi-Chain Treasury stores diversified assets and Protocol Owned Liquidity. Our Treasury also collects Governance Rights at prominent DeFi platforms across multiple asset-classes!</div>
<div class="dapps-p-f">
<img src="https://ftm.guru/icons/ftm.svg">
<span>Fantom Opera</span>
</div>
<div class="dapps-p-t">
<span>#Treasury</span>
<span>#DAO</span>
</div>
</div>
<div class="dapps-pb" target="_blank" onclick="window.location='https://ftm.guru/sellid'">
<div class="dapps-p-h">S-el-LID</div>
<div class="dapps-p-u">↳ftm.guru/sellid</div>