-
Notifications
You must be signed in to change notification settings - Fork 3
/
list.json
2144 lines (2144 loc) · 76.9 KB
/
list.json
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
[
{
"slug": "vela-exchange",
"name": "Vela Exchange",
"website": "https://vela.exchange",
"description": "Trade with up to 250x leverage across crypto, forex, metals and more",
"tags": [
"perpetual futures",
"forex"
],
"chains": [
"Arbitrum One"
],
"docs": "https://docs.vela.exchange/vela-knowledge-base/exchange/platform-overview",
"twitter": "https://twitter.com/vela_exchange",
"telegram": "https://t.me/vela_exchange",
"discord": "https://discord.com/invite/velaexchange",
"maxLeverage": 250,
"leverageInfo": "https://www.vela.exchange/whitepaper.pdf"
},
{
"slug": "gmx-v1",
"name": "GMX",
"website": "https://gmx.io/",
"description": "Trade BTC, ETH, AVAX and other with up to 50x leverage from your wallet",
"tags": [
"perpetual futures"
],
"chains": [
"Arbitrum One",
"Avalanche"
],
"docs": "https://docs.gmx.io/",
"twitter": "https://twitter.com/GMX_IO",
"telegram": "https://t.me/GMX_IO",
"discord": "https://discord.com/invite/ymN38YefH9",
"github": "https://github.com/gmx-io",
"maxLeverage": 50,
"leverageInfo": "https://docs.gmx.io/docs/trading/v2"
},
{
"slug": "dydx",
"name": "dYdX",
"website": "https://dydx.exchange/",
"description": "Trade Perpetual Contracts with low fees, deep liquidity, and up to 20× more Buying Power",
"tags": [
"perpetual futures"
],
"chains": [
"Ethereum"
],
"docs": "https://v4-teacher.vercel.app/",
"twitter": "https://twitter.com/dydx",
"discord": "https://discord.com/invite/Tuze6tY",
"github": "https://github.com/dydxprotocol/",
"maxLeverage": 20
},
{
"slug": "perpetual-protocol",
"name": "Perpetual Protocol",
"website": "https://app.perp.com/",
"description": "Designed to facilitate the trading of derivatives known as perpetual contracts.",
"tags": [
"perpetual futures"
],
"chains": [
"Optimism"
],
"twitter": "https://twitter.com/perpprotocol",
"telegram": "https://t.me/perpetualprotocol",
"discord": "https://discord.com/invite/mYKKRTn",
"github": "https://github.com/perpetual-protocol",
"maxLeverage": 10
},
{
"slug": "metavault-derivatives-v2",
"name": "Metavault Trade",
"website": "https://metavault.trade/",
"description": "Decentralized spot & perpetual futures.",
"tags": [
"perpetual futures",
"binary options"
],
"chains": [
"Polygon"
],
"twitter": "https://www.twitter.com/metavaulttrade/",
"telegram": "https://t.me/MetavaultTrade/",
"discord": "https://discord.com/invite/metavault",
"github": "https://github.com/metavaultorg/",
"maxLeverage": 50,
"leverageInfo": "https://docs.metavault.trade/trading-features/perpetual-and-spot-trading/what-is-spot-and-perp-trading#leveraged-instrument"
},
{
"slug": "mcdex",
"name": "MUX",
"website": "https://mux.network/",
"description": "MUX dynamically routes positions to suited underlying trading protocols.",
"tags": [
"perpetual futures",
"aggregator"
],
"chains": [
"Arbitrum One",
"Binance Smart Chain",
"Avalanche",
"Optimism",
"Fantom"
],
"twitter": "https://twitter.com/muxprotocol",
"telegram": "https://t.me/muxprotocol",
"discord": "https://discord.com/invite/bd88NrzN3N",
"github": "https://github.com/mux-world/mux-protocol",
"maxLeverage": 100,
"leverageInfo": "https://docs.mux.network/protocol/overview/leveraged-trading-protocol"
},
{
"slug": "kwenta",
"name": "Kwenta",
"website": "https://kwenta.eth.limo/",
"description": "Decentralized derivatives trading platform. Gain exposure to a variety of on-chain and real-world assets, and advanced functionality through the Kwenta Smart Margin Wallet.",
"tags": [
"perpetual futures",
"synthetic assets",
"synthetix ecosystem"
],
"chains": [
"Optimism"
],
"twitter": "https://twitter.com/kwenta_io",
"discord": "http://discord.gg/kwentaio",
"github": "https://github.com/Kwenta",
"maxLeverage": 50,
"leverageInfo": "https://docs.kwenta.io/using-kwenta/perpetual-futures/leverage"
},
{
"slug": "apex-protocol",
"name": "Apex",
"website": "https://www.apex.exchange/",
"description": "ApeX Pro is a non-custodial trading platform that delivers limitless cross-margined perpetual contracts to its metacommunity under a new social trading framework",
"tags": [
"perpetual futures"
],
"chains": [
"Ethereum",
"Binance Smart Chain",
"Polygon",
"Arbitrum One",
"Avalanche",
"Optimism"
],
"docs": "https://apex-pro.gitbook.io/apex-pro/",
"twitter": "https://twitter.com/OfficialApeXdex",
"telegram": "https://t.me/ApeXdex",
"discord": "https://discord.com/invite/366Puqavwx",
"github": "https://github.com/ApeX-Protocol"
},
{
"slug": "apx-finance",
"name": "ApolloX",
"website": "https://www.apollox.finance/",
"description": "Trade crypto perpetuals with up to 500x leverage, low fees, and the lowest slippage on the market",
"tags": [
"perpetual futures"
],
"chains": [
"Binance Smart Chain"
],
"twitter": "https://twitter.com/ApolloX_Finance",
"telegram": "https://t.me/apolloxchange",
"discord": "https://discord.com/invite/q5eH3zktcm",
"github": "https://github.com/apollox-finance",
"maxLeverage": 500,
"leverageInfo": "https://apollox-finance.gitbook.io/apollox-finance/welcome/trading-on-v1/how-to-start-trading-on-apollox/margin-mode-and-leverage"
},
{
"slug": "mango-markets-v3",
"name": "Mango Markets",
"website": "https://mango.markets/",
"description": "Solana and Serum blockchain-powered platform, all-in-one trading platform for spot markets, derivatives assets, lending and borrowing",
"tags": [
"perpetual futures"
],
"chains": [
"Solana"
],
"twitter": "https://twitter.com/mangomarkets",
"discord": "https://discord.com/invite/8vs8uJJrcp",
"github": "https://github.com/blockworks-foundation",
"maxLeverage": 20,
"leverageInfo": "https://docs.mango.markets/mango-v3-deprecated/perp-faq#how-much-leverage-can-i-take"
},
{
"slug": "synthetix",
"name": "Synthetix Ecosystem",
"website": "https://synthetix.io/",
"description": "Provides liquidity for permissionless derivatives like perpetual futures, options, parimutuel markets, and more across EVM chains.",
"tags": [
"ecosystem",
"synthetix ecosystem",
"commodities"
],
"chains": [
"Ethereum"
],
"twitter": "https://twitter.com/synthetix_io",
"discord": "https://discord.com/invite/AEdUHzt",
"github": "https://github.com/synthetixio",
"leverageInfo": "https://docs.synthetix.io/v/v3/for-developers/smart-contracts#setcollateralleverage"
},
{
"slug": "fulcrom",
"name": "Fulcrom",
"website": "https://fulcrom.finance/",
"description": "Decentralized perpetual futures on Cronos for leverage trading with minimal fees and price impact, and staking",
"tags": [
"perpetual futures"
],
"chains": [
"Cronos"
],
"twitter": "https://twitter.com/FulcromFinance",
"telegram": "https://t.me/FulcromFinance",
"discord": "https://discord.com/invite/7cTMWnpAfd",
"maxLeverage": 75,
"leverageInfo": "https://docs.fulcrom.finance/fulcrom-finance/core-modules/trading-module#fulcrom-provides-below-trading-features"
},
{
"slug": "vertex-protocol",
"name": "Vertex Protocol",
"website": "https://vertexprotocol.com/",
"description": "Trade, Earn & Borrow. All in One DEX. Turbo-charged trading engine to outperform the competition. Trade on Vertex and earn $VRTX",
"tags": [
"perpetual futures"
],
"chains": [
"Arbitrum One"
],
"twitter": "https://twitter.com/vertex_protocol",
"discord": "https://discord.com/invite/vertexprotocol",
"github": "https://github.com/vertex-protocol",
"maxLeverage": 20,
"leverageInfo": "https://vertex-protocol.gitbook.io/docs/tutorials/perpetual-trading#step-2-decide-your-trade-leverage"
},
{
"slug": "fxdx",
"name": "fxdx exchange",
"website": "https://fxdx.exchange/",
"description": "Trading in Cryptocurrency Futures with No Fees, Robust Oracle Pricing",
"tags": [
"perpetual futures"
],
"chains": [
"Optimism",
"Base"
],
"twitter": "https://twitter.com/fxdxdex",
"telegram": "https://t.me/fxdxdex",
"discord": "https://discord.com/invite/AdmFvVjfjh",
"github": "https://github.com/fxdxdex",
"maxLeverage": 50,
"leverageInfo": "https://fxdxdocs.gitbook.io/fxdx-knowledge-base/guides/getting-started#at-present-one-can-do-the-following-actions"
},
{
"slug": "synfutures-v2",
"name": "SynFutures",
"website": "https://trade.synfutures.com/",
"description": "Meet the next-generation derivatives platform designed for any blockchain",
"tags": [
"perpetual futures",
"oracle"
],
"chains": [
"Polygon",
"zkSync Era"
],
"twitter": "https://twitter.com/SynFuturesDefi",
"telegram": "https://t.me/synfutures_Defi",
"discord": "https://discord.com/invite/qMX2kcQk7A",
"github": "https://github.com/SynFutures",
"maxLeverage": 10,
"leverageInfo": "https://help.synfutures.com/en/articles/5405020-asset-futures"
},
{
"slug": "polynomial-trade",
"name": "Polynomial",
"website": "https://trade.polynomial.fi/",
"description": "Polynomial trade is a decentralised derivative trading exchange powered by the Synthetix protocol on Optimism. The exchange allows leverage trading up to 50x with a faster and smoother UI and lower fees than other derivative exchanges.",
"tags": [
"perpetual futures",
"synthetix ecosystem"
],
"chains": [
"Optimism"
],
"docs": "https://docs.trade.polynomial.fi/",
"twitter": "https://twitter.com/polynomialfi",
"discord": "https://discord.gg/polynomial",
"maxLeverage": 50,
"leverageInfo": "https://docs.trade.polynomial.fi/trade/perp/leverage"
},
{
"slug": "polymarket",
"name": "Polymarket",
"website": "https://polymarket.com/",
"description": "The worlds largest decentralized prediction market",
"tags": [
"binary options",
"uma ecosystem"
],
"chains": [
"Polygon"
],
"docs": "https://docs.polymarket.com/",
"twitter": "https://twitter.com/Polymarket",
"discord": "https://discord.gg/Polymarket"
},
{
"slug": "across",
"name": "Across",
"website": "https://across.to/",
"description": "Across is a cross-chain bridge for L2s and rollups secured by UMA's optimistic oracle",
"tags": [
"bridge",
"uma ecosystem"
],
"chains": [
"Ethereum",
"Optimism",
"Arbitrum One",
"zkSync Era"
],
"docs": "https://docs.uma.xyz/",
"twitter": "https://twitter.com/AcrossProtocol",
"discord": "https://discord.com/invite/sKSkhTtu8s",
"github": "https://github.com/across-protocol/"
},
{
"slug": "1inch-network",
"name": "1inch",
"website": "https://1inch.io/",
"description": "One-stop access to decentralized finance",
"tags": [
"swaps",
"aggregator",
"automated market maker",
"order book",
"address screening"
],
"chains": [
"Ethereum",
"Arbitrum One",
"Binance Smart Chain",
"Polygon",
"Optimism",
"Avalanche",
"Fantom",
"Base"
],
"docs": "https://docs.1inch.io/",
"twitter": "https://twitter.com/1inch",
"telegram": "https://t.me/OneInchNetwork",
"discord": "https://discord.com/invite/1inch",
"github": "https://github.com/1inch"
},
{
"slug": "uniswap-labs",
"name": "Uniswap",
"website": "https://uniswap.org/",
"description": "Swap, earn, and build on the leading decentralized crypto trading protocol",
"tags": [
"swaps",
"automated market maker",
"open source"
],
"chains": [
"Ethereum",
"Arbitrum One",
"Optimism",
"Polygon",
"Base",
"Binance Smart Chain",
"Avalanche",
"Celo"
],
"docs": "https://docs.uniswap.org/",
"twitter": "https://twitter.com/Uniswap",
"discord": "https://discord.com/invite/FCfyBSbCU5",
"github": "https://github.com/Uniswap"
},
{
"slug": "curve-dex",
"name": "Curve DAO",
"website": "https://www.curve.fi/",
"description": "Curve is an exchange liquidity pool on Ethereum (like Uniswap) designed for extremely efficient stablecoin trading",
"tags": [
"swaps",
"automated market maker"
],
"chains": [
"Ethereum",
"Arbitrum One",
"Aurora",
"Avalanche",
"Fantom",
"Harmony",
"Optimism",
"Polygon",
"xDai",
"Moonbeam",
"Kava",
"Celo"
],
"docs": "https://curve.readthedocs.io/",
"twitter": "https://twitter.com/CurveFinance",
"telegram": "https://t.me/curvefi",
"discord": "https://discord.com/invite/9uEHakc",
"github": "https://github.com/curvefi"
},
{
"slug": "pancakeswap-stableswap",
"name": "PancakeSwap",
"website": "https://pancakeswap.finance/",
"description": "Trade, earn, and win crypto on the most popular decentralized platform in the galaxy",
"tags": [
"swaps",
"automated market maker",
"bridge",
"order book",
"open source"
],
"chains": [
"Binance Smart Chain",
"Ethereum",
"Polygon zkEVM",
"zkSync Era",
"Arbitrum One",
"Aptos",
"Linea",
"Base"
],
"docs": "https://docs.pancakeswap.finance/",
"github": "https://github.com/pancakeswap/",
"twitter": "https://twitter.com/pancakeswap",
"telegram": "https://t.me/pancakeswap",
"discord": "https://discord.gg/pancakeswap"
},
{
"slug": "osmosis-dex",
"name": "Osmosis",
"website": "https://osmosis.zone/",
"description": "Swap, earn, and build on the leading decentralized Cosmos exchange",
"tags": [
"swaps",
"automated market maker",
"open source",
"ecosystem",
"osmosis ecosystem"
],
"chains": [
"Osmosis"
],
"docs": "https://docs.osmosis.zone/",
"twitter": "https://twitter.com/osmosiszone",
"telegram": "https://t.me/osmosis_chat",
"discord": "https://discord.com/invite/osmosis",
"github": "https://github.com/osmosis-labs/osmosis"
},
{
"slug": "balancer-v1",
"name": "Balancer",
"website": "https://balancer.finance/",
"description": "A decentralized automated market maker (AMM) protocol built on Ethereum that represents a flexible building block for programmable liquidity.",
"tags": [
"swaps",
"automated market maker",
"ecosystem"
],
"chains": [
"Ethereum",
"Gnosis",
"Polygon",
"Polygon zkEVM",
"Base",
"Arbitrum One",
"Avalanche"
],
"docs": "https://docs.balancer.fi/",
"twitter": "https://twitter.com/Balancer",
"discord": "https://discord.balancer.fi/",
"github": "https://github.com/balancer"
},
{
"slug": "sushi-kashi",
"name": "Sushi",
"website": "https://sushi.com/",
"description": "Buy and Sell Instantly on Sushi. Whenever. No registration needed. Over 400 tokens to trade at your fingertips.",
"tags": [
"swaps",
"automated market maker",
"cross-chain swaps"
],
"chains": [
"Ethereum",
"Arbitrum One",
"Base",
"Polygon",
"Optimism",
"Binance Smart Chain",
"Gnosis",
"Avalanche",
"Fantom",
"Arbitrum Nova",
"Harmony",
"Kava",
"Celo",
"Moonbeam",
"Polygon zkEVM"
],
"docs": "https://www.sushi.com/academy",
"twitter": "https://twitter.com/sushiswap",
"discord": "https://discord.com/invite/NVPXN4e",
"github": "https://github.com/sushiswap"
},
{
"slug": "archi-finance",
"name": "Archi Finance",
"website": "https://archi.finance/",
"description": "Composable leveraged yield farming protocol, connects passive safe APR & leverage degens.",
"tags": [
"leveraged yield farming"
],
"chains": [
"Arbitrum One",
"Avalanche",
"Binance Smart Chain",
"Ethereum",
"xDai",
"Optimism",
"Polygon"
],
"docs": "https://docs.archi.finance/",
"twitter": "https://twitter.com/archi_fi",
"discord": "https://discord.com/invite/ZhNeAzF5JA",
"github": "https://github.com/ArchiFinance/",
"maxLeverage": 10,
"leverageInfo": "https://docs.archi.finance/user-guide/degen-farmer#how-to-open-a-leverage-position"
},
{
"slug": "drift",
"name": "Drift",
"website": "https://www.drift.trade/#",
"description": "On-Chain Perpetual & Spot Trading with Leverage",
"tags": [
"yield farming"
],
"chains": [
"Solana"
],
"docs": "https://docs.drift.trade/",
"twitter": "https://twitter.com/driftprotocol",
"discord": "https://discord.com/invite/fMcZBH8ErM",
"github": "https://github.com/drift-labs",
"maxLeverage": 10,
"leverageInfo": "https://docs.drift.trade/what-are-perpetual-futures"
},
{
"slug": "stella",
"name": "Stella",
"website": "https://app.stellaxyz.io",
"description": "leveraged strategies protocol with 0% cost to borrow",
"tags": [
"leveraged yield farming"
],
"chains": [
"Stella"
],
"docs": "https://docs.stellaxyz.io/stella-doc/overview/getting-started",
"twitter": "https://twitter.com/stellaxyz_",
"telegram": "https://t.me/Stellaxyz_io",
"discord": "https://discord.com/invite/BcVquv4DMR",
"github": "https://github.com/stellaxyz",
"maxLeverage": 4,
"leverageInfo": "https://docs.stellaxyz.io/stella-doc/app-guide/open-a-position"
},
{
"slug": "ipor",
"name": "IPOR",
"website": "https://www.ipor.io/",
"description": "Fix your interest rate or hedge your exposure by leveraging non-custodial on-chain IPOR derivative instruments",
"tags": [
"derivatives"
],
"chains": [
"Ethereum"
],
"docs": "https://docs.ipor.io/ipor-faq/about-the-ipor-protocol",
"twitter": "https://twitter.com/ipor_io",
"discord": "https://discord.com/invite/bSKzq6UMJ3",
"github": "https://github.com/IPOR-Labs",
"maxLeverage": 500,
"leverageInfo": "https://docs.ipor.io/faq/who-uses-ipor-and-for-what#speculation-and-leverage"
},
{
"slug": "hyperliquid",
"name": "Hyper Liquid",
"website": "https://hyperliquid.xyz/",
"description": "Hyperliquid is a decentralized perpetual futures with best-in-class speed, liquidity, and price.",
"tags": [
"derivatives"
],
"chains": [
"Arbitrum One"
],
"docs": "https://hyperliquid.gitbook.io/hyperliquid-docs/",
"twitter": "https://twitter.com/HyperliquidX",
"telegram": "https://telegram.me/hyperliquidX",
"discord": "https://discord.com/invite/zgpuDGdFm6",
"maxLeverage": 50,
"leverageInfo": "https://hyperliquid.gitbook.io/hyperliquid-docs/trading/margining"
},
{
"slug": "nest-protocol-staking",
"name": "Nest Protocol",
"website": "https://www.nestprotocol.org/",
"description": "A Decentralized Martingale Network. Trading with smart contract. No market makers. No LPs.",
"tags": [
"derivatives",
"oracle"
],
"chains": [
"Ethereum",
"Binance Smart Chain"
],
"docs": "https://www.nestprotocol.org/docs/Overview/what-is-NEST-Protocol",
"twitter": "https://twitter.com/i/flow/login?redirect_after_login=%2Fnest_protocol%2F",
"telegram": "https://t.me/nest_chat/",
"github": "https://github.com/NEST-Protocol"
},
{
"slug": "linear-finance",
"name": "Linear Finance",
"website": "https://linear.finance/",
"description": "Linear is a non-custodial cross-chain compatible DeFi protocol with deep aggregated liquidity and the platform's peer-to-peer contracts allow users to mint synthetic assets (Liquids) with zero slippage.",
"tags": [
"derivatives",
"synthetic assets"
],
"chains": [
"Binance Smart Chain"
],
"docs": "https://linear.finance/defi/Linear_Whitepaper_EN.pdf",
"twitter": "https://twitter.com/linearfinance",
"telegram": "https://t.me/LinearExchangeCommunity",
"discord": "https://discord.com/invite/nvCk356bky",
"github": "https://github.com/Linear-finance"
},
{
"slug": "pika",
"name": "Pika Protocol",
"website": "https://www.pikaprotocol.com/",
"description": "Trade crypto and forex with up to 200x leverage",
"tags": [
"swaps",
"derivatives",
"forex"
],
"chains": [
"Optimism"
],
"docs": "https://docs.pikaprotocol.com/overview",
"twitter": "https://twitter.com/PikaProtocol",
"discord": "https://discord.com/invite/ueEe398UWt",
"maxLeverage": 200,
"leverageInfo": "https://docs.pikaprotocol.com/user-guide/trading#place-market-order"
},
{
"slug": "synfutures-v1",
"name": "Syn Futures",
"website": "https://www.synfutures.com/",
"description": "Derivatives platform, Long or short NFTs with leverage, open and trustless Bitcoin Hash Rate Oracle ",
"tags": [
"derivatives",
"oracle"
],
"chains": [
"Polygon",
"Binance Smart Chain",
"Ethereum",
"Arbitrum One"
],
"docs": "https://www.synfutures.com/synfutures-whitepaper.pdf",
"twitter": "https://twitter.com/SynFuturesDefi",
"telegram": "https://t.me/synfutures_Defi",
"discord": "https://discord.com/invite/qMX2kcQk7A",
"github": "https://github.com/SynFutures",
"maxLeverage": 10,
"leverageInfo": "https://academy.synfutures.com/leverage-trading-fighting-with-a-double-edged-sword/"
},
{
"slug": "quickperps",
"name": "Quick Perps",
"website": "https://perps.quickswap.exchange/#/trade",
"description": "Decentralized perpetuals exchange",
"tags": [
"derivatives",
"perpetual futures"
],
"chains": [
"Polygon zkEVM"
],
"docs": "https://docs.quickswap.exchange/",
"twitter": "https://twitter.com/quickswapdex",
"telegram": "https://t.me/QuickSwapDEX",
"discord": "https://discord.com/invite/dSMd7AFH36",
"github": "https://github.com/QuickSwap",
"maxLeverage": 50,
"leverageInfo": "https://perps-docs.quickswap.exchange/faq#i-dont-understand-how-perpetual-swap-contracts-or-leverage-trading-work.-where-can-i-go-to-learn-mor"
},
{
"slug": "mummy-finance",
"name": "Mummy Finance",
"website": "https://www.mummy.finance/#/",
"description": "Trade BTC, ETH, FTM, OP, ARB and other top cryptocurrencies with up to 100x leverage from your wallet",
"tags": [
"derivatives"
],
"chains": [
"Fantom",
"Optimism",
"Arbitrum One"
],
"docs": "https://docs.mummy.finance/",
"twitter": "https://twitter.com/mummyftm",
"telegram": "https://t.me/mummyftm",
"discord": "https://discord.com/invite/xqSJaw8sUB",
"maxLeverage": 100,
"leverageInfo": "https://docs.mummy.finance/trading#opening-a-position"
},
{
"slug": "aark-digital",
"name": "Aark Digital",
"website": "https://app.aark.digital",
"description": "Leverage Everything Perpetual DEX",
"tags": [
"derivatives",
"leveraged yield farming"
],
"chains": [
"Arbitrum One"
],
"docs": "https://aark-digital.gitbook.io/aark-digital/",
"twitter": "https://twitter.com/aark_digital",
"telegram": "https://t.me/aarkdigital",
"discord": "https://discord.com/invite/aarkdigital",
"maxLeverage": 25,
"leverageInfo": "https://aark-digital.gitbook.io/aark-digital/features/trading/leverage-and-liquidation"
},
{
"slug": "anyhedge",
"name": "Any Hedge",
"website": "https://anyhedge.com/",
"description": "A Bitcoin Cash futures contract that aims to mitigate volatility through trading of risk in a peer-to-peer, non-custodial, blockchain enforced, fully collateralized way",
"tags": [
"derivatives",
"open source"
],
"chains": [
"Bitcoin Cash"
],
"docs": "https://anyhedge.com/whitepaper/introduction/",
"twitter": "https://twitter.com/AnyHedge",
"telegram": "https://t.me/AnyHedge",
"maxLeverage": 5
},
{
"slug": "bluefin",
"name": "Bluefin",
"website": "https://bluefin.io/",
"description": "Decentralized exchange (DEX) for derivatives currently offering perpetual swaps trading with up to 20x leverage using isolated margin. The exchange is non-custodial and uses an off-chain order book.",
"tags": [
"derivatives",
"order book"
],
"chains": [
"Arbitrum One"
],
"docs": "https://learn.bluefin.io/arbitrum/",
"twitter": "https://twitter.com/bluefinapp",
"telegram": "https://t.me/bluefinapp",
"discord": "https://discord.com/invite/bluefinapp",
"github": "https://github.com/fireflyprotocol",
"maxLeverage": 20,
"leverageInfo": "https://learn.bluefin.io/arbitrum/tutorials/perpetual-swaps"
},
{
"slug": "hakka-finance",
"name": "Hakka Finance",
"website": "https://hakka.finance/",
"description": "Hakka Finance is a set of decentralized derivatives & original financial instruments, forming an all-inclusive ecosystem of tools that allow users to pursue financial sovereignty.",
"tags": [
"perpetual futures",
"ecosystem",
"swaps",
"derivatives"
],
"chains": [
"Ethereum",
"Binance Smart Chain"
],
"docs": "https://hakkafinance.gitbook.io/hakka-wiki/",
"twitter": "https://twitter.com/hakkafinance",
"telegram": "https://t.me/hakkafinance",
"discord": "https://discord.com/invite/cU4D2a8",
"github": "https://github.com/hakkafinance",
"maxLeverage": 50
},
{
"slug": "levana-perps",
"name": "Levana",
"website": "https://www.levana.finance/",
"description": "Trade native tokens with 30x leverage and low fees. Levana is the only platform with zero insolvency risk",
"tags": [
"swaps",
"perpetual futures",
"derivatives"
],
"chains": [
"Osmosis",
"Sei"
],
"docs": "https://docs.levana.finance/",
"twitter": "https://twitter.com/Levana_protocol",
"discord": "https://discord.com/invite/RqTCqks8yk",
"github": "https://github.com/Levana-Protocol",
"maxLeverage": 30,
"leverageInfo": "https://docs.levana.finance/high-level-overview?highlight=leverage#flipped-leverage"
},
{
"slug": "jarvis-network",
"name": "Jarvis Network",
"website": "https://jarvis.network/",
"description": "Stablecoins and Forex for Decentralized Finance.",
"tags": [
"forex"
],
"chains": [
"Polygon",
"Optimism",
"Binance Smart Chain",
"Avalanche",
"Arbitrum One",
"Gnosis"
],
"docs": "https://jarvis.network/about",
"twitter": "https://twitter.com/jarvis_network",
"discord": "https://discord.com/invite/2GbKwERXDc",
"github": "https://github.com/jarvis-network"
},
{
"slug": "ktx.finance",
"name": "KTX Finance",
"website": "https://www.ktx.finance/",
"description": "Trade and earn cryptocurrencies with lowest fees, depthless liquidity, and leverage. Generate yield in a bull, bear, or sideways market.",
"tags": [
"perpetual futures",
"derivatives"
],
"chains": [
"Binance Smart Chain"
],
"docs": "https://docs.ktx.finance/",
"twitter": "https://twitter.com/KTX_finance",
"telegram": "https://t.me/KTX_officials",
"discord": "https://discord.com/invite/tAFgvRNxTQ",
"maxLeverage": 50,
"leverageInfo": "https://docs.ktx.finance/getting-started/traders/trader-tutorials#opening-a-position"
},
{
"slug": "horizon-protocol",
"name": "Horizon Protocol",
"website": "https://horizonprotocol.com/",
"description": "Horizon Protocol facilitates the creation and trading of synthetic assets (zAssets) that represent the real economy.",
"tags": [
"forex",
"perpetual futures",
"synthetic assets",
"derivatives"
],
"chains": [
"Binance Smart Chain"
],
"docs": "https://academy.horizonprotocol.com/",
"twitter": "https://twitter.com/horizonprotocol",
"telegram": "https://t.me/HorizonProtocol",
"discord": "https://discord.com/invite/SaDKvkbQF2",
"github": "https://github.com/Horizon-Protocol",
"leverageInfo": "https://academy.horizonprotocol.com/horizon-protocol/synthetic-assets-zassets#what-can-i-do-with-synthetic-assets"
},
{
"slug": "unidex",
"name": "Unidex",
"website": "https://www.unidex.exchange/",
"description": "Swap rates & fills in DeFi",
"tags": [
"swaps",
"perpetual futures",
"derivatives"
],
"chains": [
"zkSync Era",
"Arbitrum One",
"Optimism",
"Fantom",
"Base",
"Metis",
"Binance Smart Chain"
],
"docs": "https://docs.unidex.exchange/unidex/",
"twitter": "https://twitter.com/UniDexFinance",
"telegram": "https://t.me/unidexfinance",
"discord": "https://discord.com/invite/unidex",
"maxLeverage": 500,
"leverageInfo": "https://www.unidex.exchange/leverage"
},
{
"slug": "derivadex",
"name": "DerivaDEX",
"website": "https://derivadex.com/",
"description": "A community-governed derivatives exchange",
"tags": [
"perpetual futures",
"derivatives"
],
"chains": [
"Ethereum"
],
"twitter": "https://twitter.com/DDX_Official",
"discord": "https://discord.com/invite/uR2Kt4Q"
},
{
"slug": "goodentry",
"name": "GoodEntry",
"website": "https://goodentry.io/",
"description": "Protected Perps native to Arbitrum",
"tags": [
"perpetual futures",
"derivatives"
],
"chains": [
"Arbitrum One"
],
"docs": "https://gitbook.goodentry.io/",
"twitter": "https://twitter.com/goodentrylabs",
"discord": "https://discord.com/invite/goodentry",
"github": "https://github.com/GoodEntry-io/GoodEntryMarkets",
"maxLeverage": 10,
"leverageInfo": "https://gitbook.goodentry.io/protected-perps#step-3-adjust-your-position-size"
},
{
"slug": "uniwhale",
"name": "Uniwhale ",
"website": "https://uniwhale.co/",
"description": "Trade BTC, ETH, and more with leverage from your wallet.",
"tags": [
"perpetual futures",
"derivatives"
],
"chains": [
"Binance Smart Chain"
],
"docs": "https://docs.uniwhale.co/",
"twitter": "https://twitter.com/UniwhaleEx",
"telegram": "https://t.me/UniwhaleEx",
"discord": "https://discord.com/invite/AAW3FpBHRU",
"github": "https://github.com/uniwhale-io",
"maxLeverage": 200,
"leverageInfo": "https://docs.uniwhale.co/trading#trade-up-to-200x"
},
{
"slug": "urdex-finance",
"name": "UrDEX Finance",
"website": "https://urdex.finance/",
"description": "Liquidity with a Decentralized Perpetual Exchange and Risk Management Solutions.",
"tags": [
"ecosystem",
"oracle",
"perpetual futures",
"derivatives"
],
"chains": [
"Arbitrum One"
],
"docs": "https://docs.urdex.finance/overview/introduction",
"twitter": "https://twitter.com/UrDEX_Finance",
"telegram": "https://t.me/urdexfinance",
"github": "https://github.com/Urdex-finance",
"maxLeverage": 10,
"leverageInfo": "https://docs.urdex.finance/overview/revenue-model"
},