forked from nodeinfra/monad-dapp-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdapps.json
More file actions
6120 lines (6115 loc) · 330 KB
/
Copy pathdapps.json
File metadata and controls
6120 lines (6115 loc) · 330 KB
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
[
{
"name": "Purps DEX",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1898733671798157312/SKe2XB43_400x400.jpg",
"website": "https://www.purps.xyz/",
"description": "Deep Liquidity, Fluid Incubation & Unmatched DEX Execution",
"monad_exclusive": true,
"contracts": [
"0xC921877BEcB785fDFbb96B6D8354Bb443C015995",
"0xc80585f78A6e44fb46e1445006f820448840386e",
"0x0c0c92fcf37ae2cbcc512e59714cd3a1a1cbc411",
"0x43DaE16358005f67f99D012613bf1e44568D3993",
"0x4019EBaFEbe64213e7777D8F0A4Bd60e645dB599"
]
},
{
"name": "Crust Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1814222320795369473/_EZGsvtJ_400x400.jpg",
"website": "https://www.crust.finance/",
"description": "Concentrated Liquidity DEX with native ALM, ve(3,3) mechanics and oTokenomics",
"monad_exclusive": true,
"contracts": [
"0x8b146d71a2b075407F1C4e8f2092f4FFe6d626B8",
"0x41fF64E47E35d9eC56Def353E15FBE3A27bec5eA",
"0xa03cc635595F0607622222cD15822cf4f1Bcd411",
"0xEB7B885CF774aAB4C658123fB2bDC1096ee3B175",
"0x021724a16C7831be1FaA306A324438Ed95a6144E"
]
},
{
"name": "zkSwap Finance",
"type": "DeFi",
"logo": "https://static.debank.com/image/user/official_avatar/10984/b895dab7bab94c50de493cebd0a4e8fb.png",
"website": "https://www.zkswap.finance/",
"description": "zkSwap Finance is a DEX and a Swap to Earn DeFi Platform",
"monad_exclusive": false,
"contracts": [
"0x760AfE86e5de5fa0Ee542fc7B7B713e1c5425701",
"0x969491FC643492E7a6bCfD49ed06E20Bc9B98C53",
"0x6dcd25E655A6F551b69A7a00D27e6cBd21c83438",
"0xF82343c8b777BAdB0921ee4c4F7581c968687B6b",
"0x095f464B7A6A45b4f03abB32E7C42e05F0c58E9b",
"0x3be99Db246c81df2Bd8Dc0d708E03F64e1A84917",
"0xC60cBC14D170A95938bb630AE78a8306dd7cF120",
"0xCEd35925A87990E3B06a63Ff4Dae82E159ceDA27",
"0xAA218216b7DB7b1F51a6d3a615D9470c86E29219",
"0xD2d52B5F624bC7Dc6EF66a86F833cF93524f99fD",
"0x2e11640eE1368F2cD90C36607760a274a30094F5",
"0x3eC4879991d51338d2A2D037f4DaD439570Cf971",
"0xBC7dcb8C29971bc0293d54Db9D29738c7ae09964",
"0x14df23F5DFC0d0Cf781fBc552443ab9FF33Bb9d4",
"0xD7Ec145b53CB1a62dB42fc1bB27E050d8b835d8F",
"0x6d85e2783e1602DF1306631c068FA6870C5459d5",
"0xCd219ae923b5F20cB36aD316a129D8F9015D1822",
"0x82c4d4d7bef842A7274E5D557c510a40307bc6cd",
"0xa29812968fCC0c34bF89926A22939CafCe02C639",
"0x74a116B1Bb7894D3cFbC4B1a12F59ea95f3FFf81",
"0x0aa3e6692e4E8845e21867b520A2Bb0377199350",
"0x43B111c0fc140e613B5482ee85a41aBcD96823a1",
"0x4f79d211d0536fFe453203229C6AD32aD25681e8",
"0x987B30CBe19F0a4461731C32bBe4a22271ec0D57"
]
},
{
"name": "Token Factory",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1899663213912014849/nWwtQ8yA_400x400.jpg",
"website": "https://scfactory.xyz/",
"description": "One-stop Web3 platform: Create & trade tokens/NFTs + DEX trading",
"monad_exclusive": false,
"contracts": ["0xC4e34BB4d73b2062725E4C27260DE61c7F389Ed2", "0x7b960218b7E31274C724e50dca055576e4361C5b"]
},
{
"name": "Owlto Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1886736859054923778/Iv098oCX_400x400.jpg",
"website": "https://owlto.finance/",
"description": "🦉 An intent-centric interoperability protocol",
"monad_exclusive": false,
"contracts": ["0x05c4c16F7aAF68EFca9b32f5e6AE260Fa2c26B2c"]
},
{
"name": "Uniswap",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1831348758753206272/y2Z0hMrl_400x400.jpg",
"website": "https://app.uniswap.org/",
"description": "The largest onchain marketplace.",
"monad_exclusive": false,
"contracts": ["0x3aE6D8A282D67893e17AA70ebFFb33EE5aa65893"]
},
{
"name": "MonadM0narch",
"type": "GameFi",
"logo": "https://m0narch.xyz/logo.jpg",
"website": "https://m0narch.xyz",
"description": "MonadM0narch is provably fair, fully on‑chain gaming platform",
"monad_exclusive": true,
"contracts": [
"0x32abcb3ec874c934bfb81fc66bc7943bf3dacde7",
"0x801bab7088890ec76db4841822d9abc427a6aa8d",
"0xb320c0db0e7d2feeda4cf09dbd009450561c551e",
"0x21730Db7aE00538A2ccfF5AFA602c37db1C0cC2f"
]
},
{
"name": "Pancake Swap",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1874650049172705281/OOl4g9ZD_400x400.jpg",
"website": "https://pancakeswap.finance/",
"description": "Everyone's Favorite DEX",
"monad_exclusive": false,
"contracts": ["0xb5cd83754FceCFFC37C5d6008ca56a28cf99191e"]
},
{
"name": "Covenant",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1760674458497654784/SeqF3eEq_400x400.jpg",
"website": "https://covenant.finance/",
"description": "Liberating token liquidity. Lever up or earn yield, through tradeable debt markets.",
"monad_exclusive": false,
"contracts": ["0x1d30392503203dd42f5516B32dACA6b2e11F71d7"]
},
{
"name": "Magic Eden",
"type": "NFT",
"logo": "https://pbs.twimg.com/profile_images/1833545964285513728/oPr7l7VU_400x400.jpg",
"website": "https://magiceden.io/monad-testnet",
"description": "Gmonad 💜 Magic Eden",
"monad_exclusive": false,
"contracts": ["0x224ecB4Eae96d31372D1090c3B0233C8310dBbaB", "0x0000000000000068F116a894984e2DB1123eB395"]
},
{
"name": "Zaros",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1877572008512204800/KwLZqD6k_400x400.jpg",
"website": "https://www.zaros.fi/",
"description": "Trade, Earn, and Build Derivatives on Zaros",
"monad_exclusive": false,
"contracts": ["0x6D90B34da7e2AdCB07FDf096242875ff7941eC74"]
},
{
"name": "Monarch",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1891939490769567744/OpT7M2-5_400x400.png",
"website": "https://monarchai.app/",
"description": "I crown tokens, move liquidity, and reign supreme",
"monad_exclusive": true,
"contracts": [
"0x87d7cC2a399Eb4Deedae7090eDf9902008840Ae3"
]
},
{
"name": "Exo Spirits",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1872710135342141440/nCLGyIVX_400x400.jpg",
"website": "https://www.exospirits.com/",
"description": "Releasing your spirit and inspiring a free living.",
"monad_exclusive": true,
"contracts": [
"0x1E134586bc39987fb38515147EE3c5ef20D4895f"
]
},
{
"name": "Fizen",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1882605133584027648/AwUfhIOh_400x400.jpg",
"website": "https://fizen.io/",
"description": "Fizen Super App w/ Crypto Payments at 10,000 TPS on Monad",
"monad_exclusive": false,
"contracts": [
"0x9c766d18493e56174Fb8c85E20B374CB8780dF1f",
"0x985ddbb8dd2c6eba617fa059e75f61c329d7501d",
"0x40d224b96ce70cbcbda7735d1085d66f7d8da473",
"0x78dc21acea2a3de42f222313744972244f12ae87",
"0xb7670fe22654ada625311ba76a84125fa00138a9",
"0xc368e98be777820c0bcc9414b576ef0636336288",
"0x374eb01ce9a641d2bb2d39c0467f7d0b92f18409"
]
},
{
"name": "Crystal",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1879675733162827777/8LXGXCcY_400x400.jpg",
"website": "https://crystal.exchange/",
"description": "Crystal is a fully on-chain CLOB exchange that brings CEX-grade performance to the EVM",
"monad_exclusive": true,
"contracts": [
"0xefe2f96DF94Bd1337E79bdF3D524cEc44b10B45C",
"0x3E186070cb7a1B2C498cD7347735859Bc5ae278D",
"0x3514E481e658533EE4d02A7De53C19A803F1783F",
"0x35e79dac2EF49aBD319F50d028F99e7d0f1a3559",
"0x302f9eadE89F38Cef56a252C8F84f3a1F7f94933",
"0x20db6a0DB7B47539E513CE29Ac4018fe504FBb2a"
]
},
{
"name": "Opals",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1886971538169323521/rec2Sh_B_400x400.jpg",
"website": "https://opals.io/",
"description": "Kickstart with Opals.io => PatronNFTs + Token Launcher + Diamond Hand Vesting",
"monad_exclusive": true,
"contracts": [
"0x23B5938F89d19a03cF00E08579cF9328EF7B615a",
"0xcf311F55A787f4ae2AC03879ba8dBF2184d6b109",
"0x7a93589147246e93D0A52e8EEbF7d8dD1A1172A6",
"0xCE754009a519a302d09693cC402CC6ba0809d35E",
"0x6a0be6487344ed6b276ee7779c140e0d07c55eb2",
"0x7bcd924cd5d3b18c54ab19287d35452d03175e60",
"0x2ed9bbfc150d794b50a308e5b16e8ee8f33f4e0a",
"0xa62af50bc0bc44d8b7e740a22f540d0fc32226e3",
"0x9a8b3623b2f7abcdeb7a7cbd3f007854750d85d6"
]
},
{
"name": "Talentum",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1887928331066060801/_ahPl-Y4_400x400.jpg",
"website": "https://monad.talentum.id/",
"description": "1st of its kind: combined with SocialFi and GambleFi dynamics",
"monad_exclusive": false,
"contracts": [
"0x938040943A712E381732215aF499123857bd6FC4",
"0x260f79C677E12aeCB03C69b481eF1B35512C7837",
"0x7De60c03E2CeAF3D96E5FbD0278C6EC07bB0E182",
"0xF8636866Af66124ebB9e217Aa9DDc6994B5986AE",
"0x9eBA691d4B08Da1806b0E0f26bf2257AC17AeA77",
"0x45F5C5AF2ebD444bC102557Ea638812d9a939F1E",
"0x1815FA538b3B47216317b38EFe1965Be333bcC65",
"0xEf01ef16dB18D78552881FE0c45cD4c1A0D26E30",
"0x89Cb2761A18eD26D39c6cDBE89BbFaace3bd919d",
"0xE9027dE44Da8174079E9f35639a5005076E0402e",
"0x2519620eA16b0a6ce4D3751A9E431968bDB1A3ec",
"0xBf0333c952Cf2261067D028b57e3480FB5F81027",
"0xa723f242b46B323b1E576884c5126619340f0D4c",
"0xdC30709A9626F43B6cadC9fC5FF9C79DA836DC91",
"0xE4Ba314ebb73B9A1dEbe0709B3005933e45447D4",
"0xFdf2f120833A9d86E1c6BAB0254a3Cd2138211EF",
"0xf5bC687410583D39C0edf806948Cfa08A86AbEB8",
"0x79Ee84D10369Fc6e62e94399b75b26C3Aa8411da",
"0x1cD929af003B72C77FDD25511890B42b99153eAa",
"0xce94391ed2e95b13d41aE3FeF7A27499Ac4C3E01",
"0xcBE623D259261FFa0CFAff44484bFF46c1b7D6c2",
"0xc803D3Cbe1B4811442a4502153685a235Ea90741",
"0xD646ed71B83ae652E5C77B1a981fc1bcEbcf1533"
]
},
{
"name": "Folks Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1898632548495831040/7blTbbiv_400x400.jpg",
"website": "https://folks.finance/",
"description": "Lend, borrow, stake and trade.",
"monad_exclusive": false,
"contracts": [
"0x1217Fd6DDa71708FF3A8eB82602777379b59ba64",
"0xeA2bcd7178fa69c12389C0a5E6FfaB0B0154D653",
"0x0e78A4EE07e3f20ef7a21C0f61eb58FCa26d4d1f",
"0x811A937b4349850AD8a52C6cA47083337d65c3dB"
]
},
{
"name": "Flappy Monad",
"type": "Game",
"logo": "https://pbs.twimg.com/profile_images/1893215783481942016/HW-g2N5X_400x400.jpg",
"website": "https://flappymonad.netlify.app/",
"description": "First fully on-chain Flappy Bird game, built on Monad",
"monad_exclusive": true,
"contracts": ["0x9ed532A08B2C29bF61f3D196fE6BFC655c21cd7e"]
},
{
"name": "fantasy.top",
"type": "Prediction",
"logo": "https://pbs.twimg.com/profile_images/1892230717163126784/eqi-qnny_400x400.jpg",
"website": "https://monad.fantasy.top/",
"description": "Bet on your favorite 𝕏 influencers",
"monad_exclusive": false,
"contracts": ["0xfA4D5a9ceA2822BA08d0266F121011aC527ced64"]
},
{
"name": "NitroFTL ✧",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1741714746842263552/h5PynzNX_400x400.jpg",
"website": "https://nitrofinance.xyz/",
"description": "Fused Trade and Liquidity Market on @monad_xyz",
"monad_exclusive": true,
"contracts": [
"0xc218d4dd36C9d865a6Da0913b2aa517fa5629dC7",
"0x2470D9F5CCf95cA782D43b9e61B9e54BDa1B440F",
"0xDAdd5aa38952e7bDB0113Df8500f27dFFAd59BcB",
"0x6Be402B06D4FE8CDE9B698a50853a66Ea260d009",
"0xBa0fACfB8fd4971BE4765Eb336136bcf7e524ba2",
"0xd10047Dc109167Aa52617b74CD8F4E94C90e0479",
"0x91E667106b9F4cDd11BE9EDbdBf999400f2EfF01",
"0x8f74182C65EA21114483a0fE35691c7e59AfA93f",
"0xFF5DDCF0774006C9B263858F1ad11962bAaaE41C",
"0xCe896Cff1849B2b553Bc591f2c474566f8D81730"
]
},
{
"name": "Poply",
"type": "NFT",
"logo": "https://pbs.twimg.com/profile_images/1875189576207110144/n5tn07pM_400x400.jpg",
"website": "https://linktr.ee/poply_xyz",
"description": "Community-based NFT marketplace where anyone can generate custom NFT collections",
"monad_exclusive": true,
"contracts": []
},
{
"name": "OctoSwap",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1881835000024231936/Fb3P06s-_400x400.jpg",
"website": "https://octo.exchange/",
"description": "Simple, secure, efficient and fun. Natively on Monad.",
"monad_exclusive": true,
"contracts": [
"0xb6091233aAcACbA45225a2B2121BBaC807aF4255",
"0xe26dd94f67Ca3615fcaF6062750147F37Df84F7a"
]
},
{
"name": "Mace",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1876861581763764224/3Z3F9Cef_400x400.jpg",
"website": "https://www.mace.ag/",
"description": "The first native DEX aggregator on Monad",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Drake",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1840900183787520001/RiZyjhhL_400x400.png",
"website": "https://linktr.ee/drake_exchange",
"description": "Putting the CEX in perp DEX | High-speed, fully-onchain orderbook",
"monad_exclusive": true,
"contracts": []
},
{
"name": "nad.fun",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1827607782356619264/Owr-840k_400x400.jpg",
"website": "https://testnet.nad.fun/",
"description": "Social Memecoin Playground. Powered by Monad.",
"monad_exclusive": true,
"contracts": [
"0x60216FB3285595F4643f9f7cddAB842E799BD642",
"0x13eD0D5e1567684D964469cCbA8A977CDA580827",
"0x822EB1ADD41cf87C3F178100596cf24c9a6442f6",
"0x3bb9AFB94c82752E47706A10779EA525Cf95dc27",
"0x4734cA49207d11626b89F182ed0981f7Cb8e45F9",
"0x619d07287e87C9c643C60882cA80d23C8ed44652"
]
},
{
"name": "Narwhal Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1888827499775397888/y5kxJoAo_400x400.jpg",
"website": "https://testnet.narwhal.finance/",
"description": "AI-Driven Trading; Gamified Glory; only on Monad",
"monad_exclusive": true,
"contracts": [
"0x6593F49Ca8D3038cA002314C187b63dD348c2F94",
"0x17642CE98f4ABfABcBb5e1A5d5825902CC311CEB",
"0x59Cf938d5e2Af9E79685Efaf02ad1A97669B7941",
"0xD6bb56a6DC5c6652B2619d0A715a60DCbc4Fa8c5",
"0x5c1C68a709427Cfdb184399304251658f91d4ea8",
"0xc552a88f2FAB0b7800F2F54141ACe8C4C06f50A2",
"0x55Ccbf961e6785DCC94Ae92fC0be51227897635d",
"0x5939199FC366f741c5f4981BF343aC5A3ddf748d",
"0xcd1368878315C85C340090880D820d1b4d404b7E",
"0x07cb95D208F3d5E0b728fc97b44A189a3374c95C",
"0x3eaF32781C9d6D9B39C14F2763FD99ba47164b57",
"0xAFB103427f6DA3566F0fB43285815C67e5D0D9AE",
"0x5Dcd7e6EbFE2F4C3572f569d1ba7aDEEbD8CEa4c",
"0x780781058CC9FaF7abb9a9267684B34Ab97b390d",
"0xa02ED5A9Ba4A042686168314d1cde809c3BBE421",
"0x5343A4aEE56bDDD0F18Fafe7906BAa95fF835945",
"0x021f4912593e64ac1Ac7c40DCB0126F623d3451D",
"0xa35807359D256e96A2C35C2b0CC200D1632bD06C",
"0x3696da49e9cc9850d41872D466f406AB52E139bb",
"0x93e2a4Bc77A8cfB1EbEf4a3723d2Ab5E8F076064"
]
},
{
"name": "Magma",
"type": "Staking",
"logo": "https://pbs.twimg.com/profile_images/1798840544887787520/OWxSEpYX_400x400.jpg",
"website": "https://www.magmastaking.xyz/",
"description": "Liquid Staking for the People on @monad_xyz",
"monad_exclusive": true,
"contracts": ["0x2c9C959516e9AAEdB2C748224a41249202ca8BE7"]
},
{
"name": "Kintsu",
"type": "Staking",
"logo": "https://pbs.twimg.com/profile_images/1889795497059143680/c-neRA1E_400x400.png",
"website": "https://kintsu.xyz/",
"description": "Creators of sMON and the most decentralized and powerful Liquid Staking protocol ever made.",
"monad_exclusive": true,
"contracts": ["0x51E6da0E284609cD96e3134B12E94b4C4F0cA241", "0x07AabD925866E8353407E67C1D157836f7Ad923e", "0xe1d2439b75fb9746E7Bc6cB777Ae10AA7f7ef9c5"]
},
{
"name": "aPriori",
"type": "Staking",
"logo": "https://pbs.twimg.com/profile_images/1821177411796410369/GtzmUXok_400x400.jpg",
"website": "http://testnet-staking.apr.io/",
"description": "mev powered liquid staking platform on Monad",
"monad_exclusive": true,
"contracts": ["0xb2f82D0f38dc453D596Ad40A37799446Cc89274A"]
},
{
"name": "Lootify",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1849030393787195392/Yf3tL4-H_400x400.jpg",
"website": "https://beta.lootify.xyz/",
"description": "Empowering hobbies on @monad_xyz",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Nad Name Service",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1882928904589254656/HOrr3i1H_400x400.png",
"website": "https://app.nad.domains/",
"description": "First and only .nad name service on @Monad_xyz.",
"monad_exclusive": true,
"contracts": ["0x758D80767a751fc1634f579D76e1CcaAb3485c9c"]
},
{
"name": "Dirol",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1910640573490380800/VDASt3Gj_400x400.jpg",
"website": "https://dex.dirol.network/",
"description": "DeFi without the complexity. All on Dirol.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Griffy",
"type": "Prediction",
"logo": "https://pbs.twimg.com/profile_images/1888905511783084032/pf1nPK14_400x400.jpg",
"website": "https://t.me/griffybot_bot",
"description": "Prediction market for degens 💜",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Composite Labs",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1772956651210891264/1Murgaqw_400x400.jpg",
"website": "https://www.compositelabs.io/",
"description": "Building the best all-in-one trading platform on @monad_xyz",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Omnia",
"type": "Game",
"logo": "https://pbs.twimg.com/profile_images/1796709016808394752/C91LWB9H_400x400.jpg",
"website": "https://t.co/pzGcUdcy2v",
"description": "An upcoming pet battle and adventure game. Brought to you by Sappy.",
"monad_exclusive": false,
"contracts": []
},
{
"name": "Encifher",
"type": "Dev",
"logo": "https://pbs.twimg.com/profile_images/1884893783164395520/j8AdcIiG_400x400.jpg",
"website": "http://monad.encifher.io/",
"description": "Encrypting soon",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Caddy Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1834464053701607424/bgW06V3j_400x400.jpg",
"website": "https://caddy.finance/",
"description": "World's first protocol for LSDs with no lockups, hedge against volatility of the underlying asset.",
"monad_exclusive": true,
"contracts": [
"0xaC65Aa139370e3D50525AB24dfC534942968a62D",
"0x14c17817F5De551db8dFC9071Af53BBE26C6Ff71",
"0x199c0Da6F291a897302300AAAe4F20d139162916",
"0xd026e90B490115CeE33c34f1aE56c23dD65b3B90",
"0xF4cA0DC6b15F20E0B7d172746F3DeE98c9aB0Fb4",
"0xbB667fe78300751297a236b90F866E0d7D77c366",
"0x864994fF0F4ae3B7f6D0606372E4fC6D9Fd3EeCC"
]
},
{
"name": "HaHa Wallet",
"type": "Wallet",
"logo": "https://pbs.twimg.com/profile_images/1439511089406955523/djw2YASo_400x400.jpg",
"website": "https://www.haha.me/",
"description": "Best Wallet Experience on Monad 📱🧰",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Monadata.ai",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1795745903728541696/hQc4MMtO_400x400.jpg",
"website": "https://monadata.ai/",
"description": "Pioneering AI Annotator Workflow on @monad_xyz",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Mu Digital",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1834816886292508672/VDkHAG2v_400x400.jpg",
"website": "https://mudigital.net/",
"description": "RWA on Monad | Join the Yield Mu-vement",
"monad_exclusive": true,
"contracts": [
"0x49FDEEe09430dd74d2a7FaB8b5157F9D47BcA87f",
"0x87d28Ff0a712b28D2f89B228118Af5e4F84045B4",
"0x0EfeD4D9fB7863ccC7bb392847C08dCd00FE9bE2",
"0x1a5c6875BCB96b31d312f9ba36Ff8aF35b748163",
"0xab832F9d41788A792b9801A4889DB90c7e28cA3e"
]
},
{
"name": "Jigsaw",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1766154707083640832/S6Hu9K57_400x400.jpg",
"website": "https://jigsaw.finance/",
"description": "The missing piece of DeFi 🧩",
"monad_exclusive": false,
"contracts": []
},
{
"name": "Moseiki",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1875460351665295360/GzV_mEab_400x400.jpg",
"website": "https://moseiki.app/",
"description": "Moseiki | AI Powered SocialFi Platform",
"monad_exclusive": true,
"contracts": ["0x9B3e4242d5D301e05e8EF3f0399cb1a579e757B3", "0x5Ec240Bb1cEa429b67e0Edd62f58362CEB8CD2E7"]
},
{
"name": "Levr.Bet",
"type": "Prediction",
"logo": "https://pbs.twimg.com/profile_images/1836024387042004992/YKdDMkOG_400x400.jpg",
"website": "http://levr.bet/",
"description": "Decentralized Leveraged Sports Betting",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Curvance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1890481278673207296/TiHA905U_400x400.png",
"website": "https://monad.curvance.com/monad",
"description": "DeFi from everywhere, for everyone. Powered by @wormhole",
"monad_exclusive": false,
"contracts": [
"0xA3dbBD3887228aE84f08bE839f9e20485759a004",
"0x0f1208510A8C3373179F08F496992735a4B0878e",
"0x7a9C5264bCa5a04B7555bEe2B85c81bd85b12D51",
"0x9E8B8EF23E4dF648ad186C38868E0D09Aae0A14f",
"0xcf812caa58BEcD37DA673b6c265Bb1505b1D93a4",
"0x7fdF92a43C54171F9C278C67088ca43F2079d09b",
"0xe6DB1Fb846A59E0780124b659358B6d2ccb45A81",
"0x9E7EbD0f8255F3A910Bc77FD006A410E9D54EE36",
"0xcDA16E9c25f429F4B01A87Ff302Ee7943F2D5015",
"0xCfeE48B617F60067F1976E558D47c2Af3F9BD7a7",
"0x5b54153100e40000f6821a7EA8101DC8F5186C2D",
"0x5D876D73f4441D5f2438B1A3e2A51771B337F27A",
"0x6BB379A2056d1304E73012b99338F8F581eE2E18",
"0xDFCf14d3e2a6eB731e27A810Cb1400eEa42A7Fdc",
"0x0E1C9362CDeA1d556E5ff89140107126BAAf6b09",
"0xB5481b57fF4e23eA7D2fda70f3137b16D0D99118",
"0xB7C174bF3b05E7a4DEf6794Cac3F740D38fDAC73",
"0x2f930b339DE82F34FDbe54e872Eb4A2855B76EA2",
"0x2994Add81714dB3354dd254f60B118602F9fbe5d",
"0x21BCb0b8E3b96aFFDA697B93Be36220e82637590",
"0xfBe02Ba8f0d729A33fF8d9aCB3a4aAb47D8cf4A5",
"0x14eB1F738a2044960804A156F23243552e5a90D6",
"0xF1a75FC4C9B3785c24571aFf2cA7d44d2f7f874C",
"0x8462c247356d7deB7e26160dbFab16B351Eef242",
"0x952f9Ea592Ed1e94c0934F6835a2d27C28A001c2",
"0x9b678ff27160378EB9B847200b2eEABc7C4aEB0a",
"0x372Bf9CDf3669C5aB418B89AB1F4e29ae59b1877",
"0xa598C0533F7BDC43b9ebef054Ac92A48001BE727",
"0x2555223A15a931a71951707cb32A541f14e2c730"
]
},
{
"name": "Monadex",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1875333130246057985/L0YkWW0T_400x400.jpg",
"website": "https://app.bubblefi.xyz/",
"description": "Let’s Make Dex experience fun on Monad.",
"monad_exclusive": true,
"contracts": [
"0xd829c1d3649dbc3fd96d3d22500ef33a46daae46",
"0x8e9ee594125019cb0a658df98809f8ab8ad41f45",
"0xcbcd292c9dae11875e090bb963aa4c74ccce6a23"
]
},
{
"name": "Dusted",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1828047418304409601/GGXw7DEE_400x400.jpg",
"website": "https://www.dusted.app/",
"description": "We revolutionize this and that to make a better world for bagholders.",
"monad_exclusive": true,
"contracts": ["0x18C9534dfe16a0314B66395F48549716FfF9AA66", "0xd3E51bfEE95E31760B671AfEF9763fB2CF4A375a"]
},
{
"name": "Holdara",
"type": "Game",
"logo": "https://pbs.twimg.com/profile_images/1755904514001920000/zMIsmhmq_400x400.png",
"website": "https://holdara.io/",
"description": "A Living World where Players Forge the Future.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Hedgemony",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1822286581736378368/tzWQhkz5_400x400.jpg",
"website": "https://www.hedgemony.xyz/",
"description": "Intent Centric Execution Layer. Building the best trading experience on Monad.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Kizzy",
"type": "Prediction",
"logo": "https://pbs.twimg.com/profile_images/1889975983941591040/NeddfENS_400x400.jpg",
"website": "https://kizzy.io/",
"description": "Tap into the new world of social media betting.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Townesquare",
"type": "Dev",
"logo": "https://pbs.twimg.com/profile_images/1563311542334267398/gaQXK0FD_400x400.jpg",
"website": "http://townesquare.xyz/",
"description": "The Modular DApp Layer for Web 3 & DeFi onboarding.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "RareBetSports",
"type": "Prediction",
"logo": "https://pbs.twimg.com/profile_images/1802788848956506112/KJnlcaQj_400x400.jpg",
"website": "https://rarelink.rarebetsports.io/",
"description": "Building the culture of sports onchain.",
"monad_exclusive": true,
"contracts": [
"0x047b1457956F31bcbC966F99180B6410a5f817E5",
"0x80B3480695D94d6c0Cc305e77f2001062807F031",
"0x8a86d48c867b76FF74A36d3AF4d2F1E707B143eD",
"0xF70DA0470B81315Fe9cEb695c9bE89F67713C815",
"0x3AD50059d6008b711209A509Fe58E68F0B672a42"
]
},
{
"name": "Modus",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1842311976308928512/W-LT6OO9_400x400.jpg",
"website": "https://www.modus.finance/",
"description": "Capital efficiency gone wild on Monad's first modular lending stack.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Fortytwo",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1892073351524319232/mX1OD5jb_400x400.png",
"website": "https://fortytwo.network/",
"description": "Decentralized AI for Unmatched Scalability on Monad.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Mozi",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1797574929904508928/QTb2OJV2_400x400.jpg",
"website": "https://mozi.finance/",
"description": "A lossless crypto experience powered by yield bearing assets.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Fastlane",
"type": "Staking",
"logo": "https://pbs.twimg.com/profile_images/1915844867864899584/GBre1nqp_400x400.jpg",
"website": "https://www.fastlane.xyz/",
"description": "Accelerating execution & security on Monad with FastLane for Validators",
"monad_exclusive": true,
"contracts": [
"0x9eaba701a49ade7525dffe338f0c7e06eca7cf07",
"0x3a98250F98Dd388C211206983453837C8365BDc1",
"0x686bff22da7eecff8d9606e81b1a8ce15dd925b7",
"0xBce2C725304e09CEf4cD7639760B67f8A0Af5bc4"
]
},
{
"name": "Monorail",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1867666284353036288/VQntKH9l_400x400.png",
"website": "https://monorail.xyz/",
"description": "Merging orderbook efficiency with AMM liquidity into personalized orderbooks.",
"monad_exclusive": true,
"contracts": ["0xC995498c22a012353FAE7eCC701810D673E25794"]
},
{
"name": "Sparkball",
"type": "Game",
"logo": "https://pbs.twimg.com/profile_images/1873539179298398208/xG3rc8eJ_400x400.jpg",
"website": "https://linktr.ee/playsparkball",
"description": "A 4v4 rush of adrenaline - brawl hard, ball harder.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "Pulse",
"type": "DEPIN",
"logo": "https://pbs.twimg.com/profile_images/1865163275807150080/jov8V4we_400x400.jpg",
"website": "https://linktr.ee/PulseNoLimits",
"description": "Next-gen longevity wearable & protocol.",
"monad_exclusive": true,
"contracts": []
},
{
"name": "aiCraft.fun",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1880563397655150592/C_wOzCgf_400x400.jpg",
"website": "https://aicraft.fun/",
"description": "Plug in AI. Earn. The 1st Decentralized AI Agent Launchpad that turns your expertise into income.",
"monad_exclusive": "true",
"contracts": ["0xd227d3bce59b91380b7bc4a61a045b528b509439"]
},
{
"name": "Codatta",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1795634788382203904/zTxvHedw_400x400.jpg",
"website": "https://codatta.io/",
"description": "Make AI Subscribe to Your Knowledge.",
"monad_exclusive": "false",
"contracts": ["0x7DdD7dE29a12c122AC6a97584Aa734b5d096EF8f"]
},
{
"name": "MERV",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1829480401930264577/Cs2lSwGe_400x400.jpg",
"website": "https://merv.wtf/",
"description": "THE FIRST IP LAUNCHPAD ❀❀❀❀❀❀❀❀ Autonomous Memetic Mascots ❀ Infinite Media Engine ❀",
"monad_exclusive": "",
"contracts": []
},
{
"name": "Nextmate.AI",
"type": "Betting",
"logo": "https://pbs.twimg.com/profile_images/1820582939110866944/3sRJ544t_400x400.jpg",
"website": "https://nextmate.ai/",
"description": "Decentralized AI-Driven Prediction Market!",
"monad_exclusive": "",
"contracts": []
},
{
"name": "Balancer",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1656222978919784449/eQgwPTaY_400x400.png",
"website": "https://balancer.fi/",
"description": "Build On Balancer http://discord.balancer.fi",
"monad_exclusive": "",
"contracts": [
"0x85a80afee867aDf27B50BdB7b76DA70f1E853062",
"0xF24917fB88261a37Cc57F686eBC831a5c0B9fD39",
"0xd07101ebD191C366D5A177cA67826014B0E42Ae3",
"0x956CCab09898C0AF2aCa5e6C229c3aD4E93d9288",
"0x36caC20dd805d128c1a6Dd16eeA845C574b5A17C"
]
},
{
"name": "Impossible Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1388056927167340544/9SxWPsH6_400x400.jpg",
"website": "https://impossible.finance/",
"description": "Building the Impossible | Accelerator, Advisor & Launchpad",
"monad_exclusive": "",
"contracts": []
},
{
"name": "INFINIT",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1881657854337413120/Q-cwamaR_400x400.jpg",
"website": "https://infinit.tech/",
"description": "The DeFi Abstraction Layer For DeFAI Automate personalized intents with DeFi Agents.",
"monad_exclusive": "",
"contracts": []
},
{
"name": "iZUMi Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1509704804032937991/5qVVZwJj_400x400.jpg",
"website": "https://alpha.izumi.finance/trade/swap",
"description": "iZUMi Finance is a multi-chain DeFi protocol providing one-stop DEX-as-a-Service (DaaS).",
"monad_exclusive": "",
"contracts": [
"0x64c2F1306b4ED3183E7B345158fd01c19C0d8c5E",
"0xED9b4E3ED8fe7e820B950F28f939AF848f98e995",
"0x706A11AF5bb5C2a50aB9802503ddbfF69373D1bd",
"0x817EC83Fb6906ba0777E89110d5089313385F4A2",
"0xAF931D7AaB9643d1E63Ed2E1fB17911c65e09678",
"0x29b66280F0Ea5F5DfbD7C94D560FC060575360cd",
"0x1eE5eDC5Fe498a2dD82862746D674DB2a5e7fef6",
"0xF6FFe4f3FdC8BBb7F70FFD48e61f17D1e343dDfD"
]
},
{
"name": "Kinza Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1743294053247307776/UG7myCUz_400x400.jpg",
"website": "https://monad-test.kinza.finance/#/",
"description": "The Ultimate Liquidity Hub for BTCÐ Restaking Assets.",
"monad_exclusive": "",
"contracts": [
"0x590B03D84441c1277f32784d1fbC22Fe18b1eEe0",
"0x29D924267ef89036d50C2008C810842A0E1091B5",
"0xE1dDD3273A775e70eB532b311073DefB79bc5D82"
]
},
{
"name": "Ambient",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1686951614656225280/eb1BN7ld_400x400.jpg",
"website": "https://monad.ambient.finance/",
"description": "Zero-to-One Decentralized Trading Protocol.",
"monad_exclusive": "false",
"contracts": ["0x88B96aF200c8a9c35442C8AC6cd3D22695AaE4F0"]
},
{
"name": "Bean Exchange",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1875029488180080640/vVqXpCvW_400x400.jpg",
"website": "https://bean.exchange/",
"description": "Gamified on-chain Spot & Perpetual DEX natively built on Monad ⨀ Powered by Pyth 🔮",
"monad_exclusive": "true",
"contracts": [
"0xca810d095e90daae6e867c19df6d9a8c56db2c89",
"0x94D008662D80AE47E7ebBdf50235dEb5f562A57A",
"0x7cf76fe510F356804D9772F0Ba2Fe27019b8d390",
"0x492afd85004A233E2d06c5b1aE3e6cdE22dDF07B",
"0x84ac6084E604D811D128b449207d5cd3F79f7959",
"0xD460A26469BB3a1141AF8B8EDD702dD2AFA86b77",
"0x497715002FC58DA7cB5B6486aF8e6E14e9B7f8a8",
"0xdF0A565F332278fF2d0C50876DA3a6701cBc6123"
]
},
{
"name": "Bebop",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1888879617886531584/EqdazUob_400x400.jpg",
"website": "https://bebop.xyz/",
"description": "Web3 trading app and API that finds the best route for all your trades. 😎",
"monad_exclusive": "",
"contracts": []
},
{
"name": "Zona",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1816376732183863296/YK5ufOqo_400x400.png",
"website": "https://www.zona.finance/",
"description": "Scalable and composable RWAs || 🏙️ Long or short housing prices in 🇨🇳🇮🇳🇭🇰🇸🇬 🇦🇺🇦🇪",
"monad_exclusive": "",
"contracts": ["0xCF91CD9f22889F1E8631a51B6115B46B51548202"]
},
{
"name": "Demask Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1760896467370139648/cPAMD1ra_400x400.jpg",
"website": "https://demask.finance/",
"description": "NFT-Fi project on @monad_xyz 💜",
"monad_exclusive": "",
"contracts": [
"0xd70160709b01d7e5E3CDEfB80eb7807345bB51c2",
"0x61d312360E36a6045cf4b96dDb64Cc721D9CcAC8"
]
},
{
"name": "Defx",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1748268807964205056/kfUHpQV1_400x400.jpg",
"website": "https://defx.com/",
"description": "A pretty good perp DEX. Tweets, voice and opinions by Defx intern™.",
"monad_exclusive": "",
"contracts": ["0xbd03338D0740cAC5929CF605a3C246B32C489fD5"]
},
{
"name": "Fufuture",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1780486877235249152/3jHe57EW_400x400.jpg",
"website": "https://www.fufuture.io/",
"description": "Perpetual options, 0 slippage, never liquidate, dual pools.",
"monad_exclusive": "",
"contracts": []
},
{
"name": "Golden Goose",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1839294437803044870/DMmcRsCR_400x400.jpg",
"website": "https://www.goose.farm/",
"description": "The first real super hybrid yields platform incubated by @cyclenetwork_GO",
"monad_exclusive": "",
"contracts": []
},
{
"name": "hashflow",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1847278911270350848/02xMr_HB_400x400.png",
"website": "https://app.hashflow.com/",
"description": "Powering DeFi with RFQ. Proving Exchanges with xOS.",
"monad_exclusive": "",
"contracts": ["0xCa310B1B942A30Ff4b40a5E1b69AB4607eC79Bc1"]
},
{
"name": "Kuru",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1876637778336710656/2en6ZY-L_400x400.jpg",
"website": "https://kuru.io/",
"description": "Find and trade your favourite coins on a fully on-chain CLOB.",
"monad_exclusive": true,
"contracts": [
"0xd53dcdc500d157b1e4cd20ff9a13926f7f7451fc",
"0xd8336cb07d4be511ccaf06b799851e1a80f98c71",
"0x05e6f736b5dedd60693fa806ce353156a1b73cf3",
"0x37676650654c9c2c36fcecfaea6172ee1849f9a4",
"0x678309b306567364ca34eb67f551615bb7bd2b91",
"0xef3f1266f145efc95bdeaf9940993ae680e5419d",
"0x24d385bbfb07e6f396035f4ab008646f5e050e28",
"0xe5b98f6bdde486467d28ddf5c7bbe6dad64db5ad",
"0xff26933157351c3a587cd502c864e4ff308956aa",
"0x17940652865df947c225caa7778db25b0df48dee",
"0x3499fa8693a31177b2e3c7b88994214f27036a71",
"0xae6ab45ce853b81a0ab21ccbcf22892d19545569",
"0xb6586e556b2baadf9be6f8591229df0372a79fc5",
"0x464b4d02607058ecc1c81fb067e7ea2ffc5eb550",
"0xe392400dae84fa63fcbf23b6a39ce286e58db0fa",
"0x4f50467bb040bd618783c78bceede3cb7d3c4d62",
"0x17a05dd7b228c9bb32e6e6d88f4756e72c0140dc",
"0x277bf4a0aac16f19d7bf592feffc8d2d9a890508",
"0x3d2935b62622ff65bff64fc4d6d025d264de9741",
"0x94b72620e65577de5fb2b8a8b93328caf6ca161b",
"0xfe77e7992e270a504aa41977ac1d076df4814957",
"0xf7f70cb1a1b1128272d1c2751ab788b1226303b1",
"0xd5c1dc181c359f0199c83045a85cd2556b325de0",
"0xcad8bc0d3ded4b8b43ba5d28143e9c449b50b652",
"0xd3af145f1aa1a471b5f0f62c52cf8fcdc9ab55d3",
"0xb2641dc8cbf9f103f5b3d34f889ed38835941f12",
"0xe219dfcd363407e32aa200c9fab3a47ca37903d3",
"0xedc682c84366e8806c886549a09352be06ea70a2",
"0xf82fb2ac13cb9fd921847f916a6b8cc88f853aa1",
"0x859953f431ac895ccb822251832fce1c7d0f622b",
"0x673e66e40241095529f4d9e9b7f0e6cde17d62a5",
"0x00dd545041076b6ce81e834caab42b10a1637f20",
"0x686b991914b170a6499cda8fbd0af4b9b87bfb13",
"0xcda1e52133643fdb8758c710abfb7b0ffdce6736",
"0x5f9eaeb57b7567584e7a1d9de74f84684df9c228",
"0xf68e65d62194406aa53af5052d935f021b409c47",
"0x81f75c3aa7637a19417b6655e6d1e51730d6d7a5",
"0x396f12826aacceb9fe3e26fa78db48a09e5e7783",
"0xc805b8386c801dfac04f7950a4461b8c399ac493",
"0x95cfa1d92830fe6b8a990a66c07228549d0408d3",
"0x60d2584a2b6bc72179b40c48826181bcb4d195fb",
"0xa456f3969cb03146f99cbeba14e45a1992d50622",
"0x98dca7528718d0dde5ebccf38017a4c11818018f",
"0x7671afde42bd841acac4853a2316fc4017fffa58",
"0x912dc5f4b8fc77f248d2949e4c2e2f632d2a46ea",
"0x989a2cef9da2b0abfc39e600ea625c7030901bed",
"0xc0f6e2bf4801b2302a0f63ea1290aada35a79020",
"0x570e45f21da5f6b9c977ec7004215ed06f240068",
"0xd8d3addaf3d5dcfe68c5e1e53132b51a0ee91ac0",
"0x281e0efeb83e11507f21129ecadaf1631f0fcae2",
"0x1279083f1db5de7ae174b432bc153041d3b6f270",
"0xd6fc4e2d26fa43991673539de1e2c9eea1e87a0f",
"0x7301695e21051ffd4cd9661d28b21946a2f89de0",
"0xad3e0f5cc77b5013510bbc2ed22aff9c25bab33d",
"0xdb9e3824c14ad8d0f95a293f3195799c44bf5881",
"0xbae4d1356e92cd52a0dd8db061e33f1ea70ba499",
"0x894745226e19e068105fe9810bde2a961aaac5af",
"0x07ff4fec0a9b7973c086e72f4dbce47ec2127bba",
"0x1f02334102ef07344a17009af54c0380856f92ce",
"0x28bc41c1a810c23ac92971e161e112e84dcea0b1",
"0xa637b33e2027ff68da1b849bd21391f1e0ab9140",