-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathdapps.json
More file actions
2306 lines (2306 loc) · 102 KB
/
dapps.json
File metadata and controls
2306 lines (2306 loc) · 102 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": "Something",
"type": "DeFi",
"logo": "https://apricot-capable-rat-626.mypinata.cloud/ipfs/bafkreia6kcth4yagcbquyuc5vfxzuxwmcn22vorhhdjssvhjuojlzj2pga",
"website": "https://monad.something.tools",
"description": "Something delivers a full launchpad with flexible migration fees, a highly customizable AMM, and revenue sharing for creators.",
"monad_exclusive": false,
"contracts": [
"0x00F4353C69039b25c9338097FfF51099981E00ce"
]
},
{
"name": "SomeSwap",
"type": "DeFi",
"logo": "https://apricot-capable-rat-626.mypinata.cloud/ipfs/bafkreicmt3l656cb6nhlotxlnvb6togtzgvc5sds32a7tnydwiwmokmepu",
"website": "https://someswap.org",
"description": "SomeSwap is a next-generation AMM and DEX built on Monad, featuring Chameleon Pools, dynamic fee tiers, anti-sniping protection, and Chimera smart routing. It powers trading, liquidity, and token launches across the Something ecosystem.",
"monad_exclusive": true,
"contracts": [
"0x00008A3c1077325Bb19cd93e5a0f1E95144700fa",
"0x000799B28aE9C3E9ca70B7Ff67b191519ab80fee",
"0x001176F5eF99F53Eae957Bb2Fb2aE93E9b6F110c"
]
},
{
"name": "0x",
"type": "DeFi",
"logo": "https://cdn.prod.website-files.com/66967cfef0a246cbbb9aee94/66967cfef0a246cbbb9aeeee_logo.svg",
"website": "https://0x.org/",
"description": "High performance APIs that aggregate DEX and private liquidity sources to provide optimal trade executions for digital asset trades.",
"monad_exclusive": false,
"contracts": [
"0x00000000000004533Fe15556B1E086BB1A72cEae"
]
},
{
"name": "Accountable",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1910248229968490496/TZd8HlZa_400x400.jpg",
"website": "https://accountable.capital",
"description": "Crypto-based yields done right. Total privacy, full transparency, maximizing your yield opportunities, worry-free.",
"monad_exclusive": false,
"contracts": [
"0x4DE9B4d7b70d1680cD8E3A2C60717cBbe6014991",
"0xeE004AEF79cb14BF31BFbFB14346E01fB7e5a2e8",
"0x1106a70223e98E2b1807bf3e12698aFe2C5693e6",
"0xf786154e56e5c88Ce984800dEa71B48EA4FFAbfE",
"0xD0A53e724EA9CB041e30f0243E3c84bdea238Dfa",
"0x59B0b84371BB3261FAD538C512eFFFc414CC1725",
"0x8a5Caf00C3EB20aEC11Fc35C153a8601Cd127fEd",
"0x606556A6B544ecDcbf15aF73A63B67516dc16Ad7"
]
},
{
"name": "Across",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1983984117092859904/0LvQEcB__400x400.jpg",
"website": "https://across.to",
"description": "Cross-chain liquidity protocol that allows users to swap tokens between different chains.",
"monad_exclusive": false,
"contracts": [
"0x09aea4b2242abc8bb4bb78d537a67a245a7bec64",
"0xeC41F75c686e376Ab2a4F18bde263ab5822c4511",
"0xd2ecb3afe598b746F8123CaE365a598DA831A449"
]
},
{
"name": "AethonSwap",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1963536268777979904/vX-IJ7U7_400x400.jpg",
"website": "https://app.aethonswap.com/",
"description": "AethonSwap is a next-generation decentralized exchange (DEX) designed to be the central liquidity hub of Monad.",
"monad_exclusive": false,
"contracts": [
"0x6f85F158c2289579BE8e79a31B78F7DCd4686857",
"0x05aA1d36F78D1242C40b3680d38EB1feE7060c20",
"0xC67F01e87294a846ACEcB22d4f8D7AAbea9EA794",
"0xE35569726922F66a71e1279824Ba6082767E8569",
"0xd1814cC0FAee1EC941112F8739C47ddd0a908860",
"0xf31443F5d3fe6B2d026B9079F2fcEf2647A9fEcc",
"0x8510E4C073fb7fe75B8e767A1856F85586e24679",
"0x50AA60Edb77F0446b8E760B5Dc3015AD53D04d80",
"0xBf511a2d4f7D895F4cb8DeC448CE25a7bE211EAF",
"0xDD68207A952718b91d5dF31819d0676C269f1fB5",
"0x90dD87C994959A36d725bB98F9008B0b3C3504A0",
"0x41534b64b8a10b4e5C03bbB792F75f6DfCF462bF",
"0x545069eBd6cFA0B3028CEC5A23C37839B9EeEBaa",
"0x79b952a25c03b109cE6a6118F1A68a0E0113E8f3",
"0x26c48519bBCf6df3E39d4C724ff82B6F060D3Bbe",
"0x77996bd2e8272cB694D320be78CE972307D85bF9",
"0x217fd038FF2ac580de8E635a5d726f6f0E5214e3",
"0xcea03e70f95e1998D90549Aba02E5f89D1db2C90",
"0xFF9382865eAc4C9E79f15586Ae7ff68209419f2e",
"0x245f061e602E690266012E8bFBf9b5131ee66d86",
"0x81554Cc2aC39D03Ef5F2e879c9B3748fff61385a"
]
},
{
"name": "ApeBond",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1912568082201018368/rp47FESU_400x400.jpg",
"website": "https://ape.bond",
"description": "The #1 Bonding Protocol in DeFi, with $20M+ bonded and 80k+ bonds sold, transforming how projects raise funds and secure liquidity.",
"monad_exclusive": false,
"contracts": [
"0xd731d8103132275b21A27eA8C8428Ac6B97C5D35",
"0xc765C358622cB346f236F8Bfffe53036e421bb4e",
"0x1b7858f745211dBa1387fE30124eBCa2D706D7Dd",
"0x1f226C1008f5De89614Bb15d09745128cf2a4D62"
]
},
{
"name": "Atlantis",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1902110216402927616/2KI7eXdp_400x400.jpg",
"website": "https://atlantisdex.xyz",
"description": "Modular V4 DEX offering cross-chain swaps, DeFAI, a launchpad, farming, staking, fiat on-ramp, & more.",
"monad_exclusive": false,
"contracts": [
"0xd7cB0E0692f2D55A17bA81c1fE5501D66774fC4A",
"0x10253594A832f967994b44f33411940533302ACb",
"0x4439199c3743161ca22bB8F8B6deC5bF6fF65b04",
"0x955B95b8532fe75DDCf2161f61127Be74A768158",
"0xFe3BEcd788320465ab649015F34F7771220A88b2",
"0x4A3BC48C156384f9564Fd65A53a2f3D534D8f2b7",
"0x13fcE0acbe6Fb11641ab753212550574CaD31415",
"0x03f8B4b140249Dc7B2503C928E7258CCe1d91F1A",
"0xa77aD9f635a3FB3bCCC5E6d1A87cB269746Aba17",
"0x3012E9049d05B4B5369D690114D5A5861EbB85cb",
"0xD637cbc214Bc3dD354aBb309f4fE717ffdD0B28C",
"0x6AD6A4f233F1E33613e996CCc17409B93fF8bf5f",
"0x69D57B9D705eaD73a5d2f2476C30c55bD755cc2F",
"0xB4F9b6b019E75CBe51af4425b2Fc12797e2Ee2a1",
"0x50FCbF85d23aF7C91f94842FeCd83d16665d27bA",
"0x658E287E9C820484f5808f687dC4863B552de37D",
"0x38A5C36FA8c8c9E4649b51FCD61810B14e7ce047",
"0x83D4a9Ea77a4dbA073cD90b30410Ac9F95F93E7C",
"0x503D191CaFaB1d097b5F798d850E5897195C1d74"
]
},
{
"name": "Axelar",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1874834853943824384/l71EkA26_400x400.jpg",
"website": "https://axelar.network",
"description": "Powering the Chain-Agnostic Future",
"monad_exclusive": false,
"contracts": [
"0xe432150cce91c13a887f7D836923d5597adD8E31",
"0x2d5d7d31F671F86C782533cc367F14109a082712",
"0x50beAbe4883981624aEa01F737B040d1e3Fe83FB",
"0x7DdB2d76b80B0AA19bDEa48EB1301182F4CeefbC",
"0x98B2920D53612483F91F12Ed7754E51b4A77919e",
"0x6513Aedb4D1593BA12e50644401D976aebDc90d8",
"0xB5FB4BE02232B1bBA4dC8f81dc24C26980dE9e3C",
"0x83a93500d23Fbc3e82B410aD07A6a9F7A0670D66"
]
},
{
"name": "Banza",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1978484417505955840/SJ2MfyYx_400x400.jpg",
"website": "https://banza.xyz/",
"description": "Banza helps you build a personal AI twin that learns freely from every app you use through verifiable, privacy-preserving data capture using OPzkTLS, then earns rewards for you while delivering tailored cross-platform recommendations and proactive actions that save you time, all of it with cryptographic proof.",
"monad_exclusive": false,
"contracts": [
"0x68b571F834C9853d2a7E8e364d28dB52De47d46d",
"0x11fBE9E637C4A3DECA3453f2925AAAa18e16963E"
]
},
{
"name": "Bean Exchange",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1981305723637166080/ubiQ-e6g_400x400.jpg",
"website": "https://bean.exchange",
"description": "The ultimate capital-efficiency Perps & DLMM Spot DEX on Monad",
"monad_exclusive": false,
"contracts": [
"0x8Bb9727Ca742C146563DccBAFb9308A234e1d242",
"0x721aC9E688E6b86F48b08DB2ba2D4B7bBBd12665",
"0xA398af902950081F2FBE3E16e5E474C2C72ae27a"
]
},
{
"name": "Blocksense",
"type": "Oracle",
"logo": "https://pbs.twimg.com/profile_images/1907393414901170176/CBZG2akF_400x400.png",
"website": "https://blocksense.network",
"description": "The universal verification layer for the autonomous economy",
"monad_exclusive": false,
"contracts": [
"0xADF5aaa34D0A2FbAeE73353ab1622E47d0600249",
"0x9CA25F9149e5204CDD1C5b7717C08Dff35A4eFc3",
"0x5985F6247985e0cB7750893093214A77F0F9D3cE",
"0x43662b6eD1EDEA444Ed2bA4e1e008403C5F32bAc"
]
},
{
"name": "bonad.fun",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1991955935841906688/7NmCLcoP_400x400.jpg",
"website": "https://bonad.fun",
"description": "Create, trade, and build your vision",
"monad_exclusive": false,
"contracts": [
"0x660eAaEdEBc968f8f3694354FA8EC0b4c5Ba8D12",
"0xC99b485499f78995C6F1640dbB1413c57f8BA684",
"0xFAafdE6a5b658684cC5eb0C5c2c755B00A246F45",
"0xb4deE32EB70A5E55f3D2d861F49Fb3D79f7a14d9",
"0x5F3bA43D44375286296Cb85F1EA2EBfa25dde731",
"0x136191B46478cAB023cbC01a36160C4Aad81677a",
"0xCe3099B2F07029b086E5e92a1573C5f5A3071783"
]
},
{
"name": "Bro Fun",
"type": "Consumer",
"logo": "https://pbs.twimg.com/profile_images/1983519855279042560/ntgzrOaU_400x400.jpg",
"website": "https://bro.fun",
"description": "Where fortune favors the bros. Sink cups, become a legend.",
"monad_exclusive": false,
"contracts": [
"0xDF7A89Fc62e5120C4617f143C7AcDDAB0D1Ca7A2"
]
},
{
"name": "Bungee.Exchange",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1938126602774450177/qEmo_mDl_400x400.png",
"website": "https://www.bungee.exchange",
"description": "Bungee provides seamless swaps between any blockchain. With over $24B in volume and trusted by major wallets and dApps, Bungee makes moving assets between networks efficient, secure, and accessible to everyone, powered by the SOCKET.",
"monad_exclusive": false,
"contracts": [
"0xd0389e84178f809903cbFE7D1EfAE3EFa9c1769c",
"0x3859AD748D03C358aAbB66d084bC5849B624E611",
"0xF20B3CB7508c519296556C1Caa9dB6F210e0232a",
"0x27D966329a325f214b4854a4F0E62550BFebdca3",
"0x01D8a85aDb82408E14bC242ed43fBaD0Ca2F94CB",
"0x1A2F1085A94De6fBcc334AAE1DDf527C567b75E7",
"0x3bb92b8452bDE5Ac20C18E10e606fdc9AC19b414",
"0x82260Eac86558C0835D08eeFF360014aEa7454b6",
"0xa873aab6a98cb764ad6d52820d129d0e3667d9f9",
"0x7aEa2188414C6d22ce15b2b0b2870Bce69e5e5D5",
"0x09b043840cd2f32687ec6b63fb0412585de39822",
"0x12efda5e4d410c5da723ceb7e43942779e3fe49b",
"0x94d0bef156041af3ef0b9fec4784468e660045dd",
"0xaB568b1B49f8bE7488Ca1c0D5DdA6fF94691e4c8",
"0x88a8596e2B51512aab3867Cc895d7047E1D9ef7B",
"0x26d8da52e56de71194950689ccf74cd309761324",
"0x5013c0b3defd8f832d1b6dec750382946de5c13b"
]
},
{
"name": "Capricorn",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1931864507590045696/yn7mxTi9_400x400.jpg",
"website": "https://capricorn.exchange/",
"description": "The premier liquidity venue on Monad.",
"monad_exclusive": true,
"contracts": [
"0x6B5F564339DbAD6b780249827f2198a841FEB7F3",
"0x0136B6347509D386c6da3896162BEBaAF19e51c4",
"0xEd2850D3704a1a5BcB6158f27deDA3d6FF4C31D9",
"0x4C02af995BB1f574c9bf31F43ddc112414aE0Ac7",
"0xdac97b6a3951641B177283028A8f428332333071",
"0x830b22425257A752314A5f0902559164c84e44A4",
"0x53153392D0175D394D721CCF31173a49F7E6Ef53",
"0xB430EDD2b54cdB3B25703fb3342ca3a88663A04D",
"0xEcEB2CfcB38D1f469f55a3E5dc0C950Df8A465c3"
]
},
{
"name": "Cashmere",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1551945866793164802/KmcIMByo_400x400.jpg",
"website": "https://cashmere.exchange",
"description": "Autonomous Monetary Infrastructure for stablecoins — a unified layer that powers zero-slippage omnichain transfers, yield agent, on/off ramps, privacy transfers directly on https://app.cashmere.exchange.",
"monad_exclusive": false,
"contracts": [
"0xD156fFB54871F4562744d6Be5d6321B5BffCa3B6"
]
},
{
"name": "Chainlink",
"type": "Oracle",
"logo": "https://pbs.twimg.com/profile_images/1800426318099595264/N7yf_kOD_400x400.jpg",
"website": "https://chain.link/",
"description": "Chainlink is the standard for onchain finance, verifiable data, and cross-chain interoperability. Learn more by visiting chain.link.",
"monad_exclusive": false,
"contracts": [
"0x33566fE5976AAa420F3d5C64996641Fc3858CaDB",
"0xEd813D895457907399E41D36Ec0bE103E32148c8",
"0x2a954d493eE80BcC7cDeF56DB6fC6edC6758CA5d",
"0x81Bf4bbD9910F95c18cf661752bD9a07629fe191",
"0xA7cd3368eBC801df68812d46AB6b3F47d4BF37ea",
"0x900f68B165443A4aa1F8071471DFb8000df3bfF2",
"0x714de9941991c7Cec93efA6cB63469bD6bFE1258",
"0xF43deF45aCd1C1c54937937591dDA64b43DD87C2",
"0xcD22c0012480987F6F81F1099E74954B75666361",
"0xBb911c169033289187f70Af5c0DD8E6f643e4ADc",
"0xb0c0202E6d8b978f9b6FE6B5e50ebD6FD7A962a1",
"0x060728Ec2e1e132279EBa0a79b2ffFE26AbAD65C",
"0x92929c1b04C6b4AbD6c2C34111d447d972cACA71",
"0x3b126914ad2f884A68b8C182129109eF2Bf97ab7",
"0xEB58Fa36e5715fc1Bdb9959E0Ae01803B7432882",
"0xBAf3aaECB1A4f8468D88c74cD014a3550F204970",
"0xc1d4C3331635184fA4C3c22fb92211B2Ac9E0546",
"0xC6D6f57EFe5Ce2769aF0e0D8708477e4819F92d0",
"0x6156c406B7672b4720B7A2E637F32fc68E55930c",
"0x8fB6979CCB8Cbe1596Ad712955aF201e0A29c26f",
"0x3dDc1bAE752aaEe31b577bF844c799C349A1d6BD",
"0x14ef5938Cb0D1164516DD71fC656A8294570Ca7e",
"0xfDa103bb79FbB958eD270F828ca2506D046cAC91",
"0x91E70e5E0eAc9F07E3abd7B4b62173e6b67c30d8",
"0x1c747D909102bfCdb305C54bDdDBdA3eF588B1d0",
"0xDfc4441DBBeD5F2A743C001F722BD8d4f587C8fb",
"0xc40F902d11b11BF243283AF537A4Fc617344B2C7",
"0x18d19FECf754B2F16301B9Cd9A4F3d3A3540Aaa2",
"0x1B1414782B859871781bA3E4B0979b9ca57A0A04",
"0x3d21E2E680E2a60b440da427820aEe2391375EB7",
"0xC38c1843751941019EdE3B8E041EE1bD14575B44",
"0x7d12A857FB76396b3fF8749f6F832908E2DC55f5",
"0xf62D24B17181305B22E520fB14384eB86b9C6944",
"0x68bA3f3b52b17bFCc8cFB9cB97Df14D6A0f96E5E",
"0x3D160cBa91B35BC295295Cb790080E9be9A46811",
"0xF73F65C2DF4E1CB89f31DeE710A00627E6B9bbbC",
"0x5c266b5c655664d6c99a13fF0d7F1F7eaF4Ac9ba",
"0x44b9e53236b95Ca6Cfc1dAED893C5b312e596477",
"0xF29B907b292fb27e07f06331E4e92Ea7288a6001",
"0x24f29BB8ec47674F1A0a9011116c41F867a94337",
"0x921cB0E4f2397454240CcdB27596217CE4e65090",
"0x5658EC04E7e6EF42B1C567AafC33Cd92751E1730",
"0x3B59380FdCf2fd414F1675D76AF5F20FB92663a7",
"0xB5bE9cb264D299710F98c03f2604157E33E2c4cc",
"0x519dC0fBb6f4fa37F59Dc17CC60eF4d95cd8D001",
"0x23c377a8f4d153803a9D7869d56d0A4aEFdEeA93",
"0xb368d0CF937A6843fb68f1CD0056C835B4Cf3F70",
"0x638405174C766b9d1797860fDF696732921179F5",
"0x7422d308f0Aeb0c7816402Ff4E68078c2549435b",
"0x19d7FD9167597e0338dece5F3DE95f1BE61FAc40",
"0x1Bd7CEBABA5C2c40D44b83A08F42A3377447dDFe",
"0xd3f27362D951Cfb596242FFbA9c71E6c7d5d09AF",
"0x251eD64BD39e8fceB708b483D18Ee34bf4040aE8",
"0xB983b1b6f1Fc04030F9d8935DBBFd2a1239D00d9",
"0x68f23F7820B8528FBd1039B235923d8FB2590985",
"0xF007B6D353302A6C49D18C35809faa031E94eFbB",
"0x16F8008c3e89f62e5e2b909Ce70999370D38F4F2",
"0x10da0c6188A7d74d8556e1d6A193D58721e5E102",
"0xd447F67Dc94f234dFA1a3921C08330CecA06a1dC",
"0xE4DE4f111f6a015963589256A0EcC2F70Cb29BdA",
"0xad7AF5c6d78Ef5f4d3c4133593047d9E2A8BDa8d",
"0xBE1442Ec0a67D37D1e57c4940e0C0747cf7d55b9",
"0x69E075202802B5a90661AfDb4aDC117Eef8a59DF",
"0x097d4088e99c1a01a5713B079C898Fad852b9920",
"0xB7E7A36A0Fc6543C10f4F9B60E942F1b628f2a13",
"0xFe3165008F7FFfc27cc2649c18FfcbB959F0495a",
"0x31938934512dFFf3c410a6D07CeAF5F38B66BFee",
"0xC64012057A58b91bF42361c7D50bA36C0255cb73",
"0x8Cc589634A0B5959Fb29fc1111CFf26356b11918",
"0x5075Ea68c3D769723BC9CC23120A60e4026dD70F",
"0xa63564f2A626f69130C1CCA87f984351B26Cf2f1",
"0xCc973DAEf0A2d92BC99c21561b3FEa74DA033796",
"0xf5F15f188AbCb0d165D1Edb7f37F7d6fA2fCebec",
"0x449aeeE17b0447Af2D2Cdf3334EBF1e15C886Fb9",
"0x6b5902EABcE27C23FC97ea136504395b4d22C1FD",
"0x7bA2142854c5116D610AD2Eb45eB5435b875D08a",
"0xa16212CD5b330583B346167fA91E138d41AEe8CC",
"0xDfFa1693B3DDBE1A6a26c29B727e073a1D2A4Be5",
"0x1a1Be4c184923a6BFF8c27cfDf6ac8bDE4DE00FC",
"0x0087d34545e1A9a62051c023A31B2193C21Cbf4F",
"0x5A96Af6E7c9aA17901D9E2f00feafAFc7655B19F",
"0x4b1DFE1e642d8786Af6D19d63CEAf0D5475EDdF8",
"0x2D1Df1bD061AAc38C22407AD69d69bCC3C62edBD",
"0x1d6533DdC0E46514afbeAB55a013D6ded720307C",
"0x42dd36b9D6938dccff8Fe4E9770589aBa614FCBB",
"0x24b8BEAD860e19fA9650c349eC496eb4b09F7f9E",
"0xe6cd21b31948503dB54A07875999979722504B9A",
"0x4E14B7f0744a757F3c04Bfd7980721AEE3b7ea9F",
"0x29bEb7e730f09D33417357dbed020B549fdF7db4",
"0x8Aa871027BA54dc1a9c803456AD613668a643fB4",
"0x61dD33A34E47a181EE02e42eE0546a3DA808f1B4",
"0xFeccbf9C82Ff5231073580334DC605740309ebCe",
"0x979211Dfbc0738559B778a6a58a5b1bbbBe720f9",
"0xfd03e1bd18b11fA56c55582a91e8fc0bB0A1c27E"
]
},
{
"name": "Chainlink CCIP",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1800426318099595264/N7yf_kOD_400x400.jpg",
"website": "https://chain.link/",
"description": "Chainlink is the standard for onchain finance, verifiable data, and cross-chain interoperability. Learn more by visiting chain.link.",
"monad_exclusive": false,
"contracts": [
"0x4AfC00570596d172595A4E38384289b880263006",
"0x99dFCa5d88f4D9C023531F4403966b8d61562AcD",
"0xF181489663b5b99af5C5a57310F1d66eEEEC2160",
"0xDdBC012B8a5C317b9611ee593fA49dE370BF950f",
"0x11ACd984DD680363117B310f6ebdf78fD6c0195f",
"0x4c1D9f81D59270ddc1c0f1A4D7C39264D9ADa379",
"0xb39B7D0cdd79B94B08b334965C1720be51A31986",
"0xCE78587FEADDefC30e36520C09fc3a333dd6eEf4",
"0xBad8b04ED03A1CEaC89e8328f4eA7148B2E6D642"
]
},
{
"name": "Chronicle",
"type": "Oracle",
"logo": "https://pbs.twimg.com/profile_images/1501371292557185027/0XmX2Tp3_400x400.png",
"website": "https://chroniclelabs.org",
"description": "The verifiable data provider for onchain finance.",
"monad_exclusive": false,
"contracts": [
"0x55900781784cC88e10b53B400241a8B5099b1a58",
"0xaE9Ef5d8193348E484805683aA4026F4d410d9E9",
"0xECd09Ce60c069384D6B91656A841097F1181A59e",
"0x8644203113402C1D9CBe0A39064E467eE76e2fBC",
"0x7FC72F82B67aD3bbbaDA92b62d412AB284f910A6",
"0xcBA348Ee71970714cEBBC26C7e38baCeb0C6A597",
"0xa7f041Fb6AfFb962162Ff3f318cA184299e4eC58",
"0x7a5c9Bc685C16190Ac832a6bc232BC6C22e9ed18",
"0x8B9CB9999871423A549261B53e9cf87300e50349",
"0xCbec56397d82D353767911142aB2cBEB2F5e06ae",
"0x936a444C983347FFBfe3F26D1497CAbfA2BfE271",
"0xA3835b84BcaBF17C7509D09487E7B7169A82d64F",
"0xEe4631539c06aCC8c1f681C0b1b573FbC8506Da8",
"0x23035f3554c8EeC9d079276Cc4af0d2FED067992",
"0x43a05b07238d1f9814B55E145738AFdeEDACa68f",
"0x144a4B14115fcBe23408611a5307115a96ab5bA1",
"0xd52C49Ea370cDaa0E5912A98B3AAf3375768E49B",
"0xDa75F9d81dca1Ad7a2D3F628425c3736E2e7B685",
"0x46eA6F8Ad2F346801a346FB95E0e9E6106791291",
"0x812Aab12D9C323678C78d7EC6Aa76F4bc86f623a",
"0x8F9ad9205B442ACC5105Aac1F1efe5f09B194e1d",
"0x5B49FA5187F99DA89C644cd2C1c23ff3b1d8dd88",
"0x700EdC28DC93E72D76E8C1eA2Be0A50d60a4844D",
"0x83D794F01A3eDBdD92ae2f2EcC8e56b41eD7777c",
"0x109Bbc7056B5e808F8E64Fc71D12C89e654F688F",
"0xf8689D8A90cDB562ea2B83cecE80c8a551a931C6",
"0x847A305548462557945088c97074524d1Fe9d563",
"0xD4920c3Eba8c0E4824afe7B3737fACD7C1022234",
"0x418541FFD62bDB3078fb669cB9c18D45942d9C3d"
]
},
{
"name": "Circle CCTP",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1719446730091962368/Bl01sQsB_400x400.png",
"website": "https://circle.com",
"description": "Building the Internet Financial Platform",
"monad_exclusive": false,
"contracts": [
"0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d",
"0x81D40F21F12A8F0E3252Bccb954D722d4c464B64",
"0xfd78EE919681417d192449715b2594ab58f5D002",
"0xec546b6B005471ECf012e5aF77FBeC07e0FD8f78"
]
},
{
"name": "Clanker",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1953706842032324608/Arf6RRS3_400x400.jpg",
"website": "https://clanker.world/",
"description": "Clanker is an AI that launches crypto tokens for you. Give it a name and symbol, and it handles deployment, market creation, and fee sharing automatically.",
"monad_exclusive": false,
"contracts": [
"0xF9a0C289Eab6B571c6247094a853810987E5B26D",
"0xDe51a86D3b6EC9ac4756115D3744335Aa2c30144",
"0xe7D402A5BEd94E5c49Ac0639E80f784D06E2D397",
"0x654E7221fa51d4359ded21D524E3AfF18e93A507",
"0x8790d79283eB941c719b616CfD0Ef116D13C7683",
"0x3231D1ddfdC4Ad585cF1939FfEcd9c88b338Dbf2",
"0x46B77BaCFd712D79131F1AD7611794869483C353",
"0x94F802a9EFE4dd542FdBd77a25D9e69A6dC828Cc"
]
},
{
"name": "Clober",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1679045925556355075/lvEiK0XY_400x400.jpg",
"website": "https://clober.io",
"description": "Clober is a fully on-chain CLOB DEX protocol with a gas-efficient matching engine optimized for on-chain execution.",
"monad_exclusive": false,
"contracts": [
"0x6657d192273731C3cAc646cc82D5F28D0CBE8CCC",
"0x19b68a2b909D96c05B623050C276FBD457De8e83",
"0xe424c211e2Ed8a5B6d1C57FA493C41715568D238",
"0x7B58A24C5628881a141D630f101Db433D419B372",
"0xB09684f5486d1af80699BbC27f14dd5A905da873",
"0x54cd5332b1689b6506Ce089DA5651B1A814e9E7D",
"0xb1251BF43Bb7De76DE7e6CE7B64aF843dfc9d242",
"0x9050b0A12D92b8ba7369ecc87BcD04643Fa0CfDB"
]
},
{
"name": "Covenant",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1760674458497654784/SeqF3eEq_400x400.jpg",
"website": "https://covenant.finance",
"description": "Covenant is a fully on-chain credit marketplace that enables the creation and funding of leverage against any collateral asset",
"monad_exclusive": false,
"contracts": [
"0x11A7Ab0A9D7bD531DBcF0f0630BF7167F8F198f6",
"0xAB0f8aB1e67cc02A9D58fc27055292289B159094",
"0x6A5Aa3df89bA1C1f8B471c72159458D61a9447c2",
"0x9a369DF53EC62725c93f41B891e701BD88aFf2c8",
"0x5c1fb9a1232E87702897424eC0852D30B713bfD8"
]
},
{
"name": "Curve Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1220560374346461185/W1sQNVWo_400x400.jpg",
"website": "https://curve.finance",
"description": "Creating deep on-chain liquidity using advanced bonding curves.",
"monad_exclusive": false,
"contracts": [
"0x8271e06E5887FE5ba05234f5315c19f3Ec90E8aD",
"0xe460dec242bc0A1a364c250a9D2F731d8D923650",
"0xFC687EFAFED297b765eDEcF8179c32195597C2df",
"0x845b942DeEF9BC20a39A8b34B23e8c33aC2921BF",
"0xC9459A955a885467f01Ccc531c51dBcC957993c0",
"0x46FEffb8Ed015250Cd48f9bf7F4a4584049Ca4aE",
"0x6E28493348446503db04A49621d8e6C9A40015FB",
"0x286182220E734AaC601282ba059de531d4BEAC1f",
"0xA4A2E7E11cBe5213B316E801D2172Ef10e566A96",
"0x2Fe4A238F6A3BD7fAA68e0B6951e3FAFdB2876Eb",
"0xBBbe22DEe69747e61f676cF50465b1bfbA4a4dD6",
"0xe7FBd704B938cB8fe26313C3464D4b7B7348c88C",
"0x5F870C2cf22ff829B5DC1Da09856B79dA6544f94",
"0x95249Dd40dDa3c0cbB4A7dd7D287E04aA68A3D4B",
"0x17c67C3A38F68cbc4dEC77Fd7378978971B6c271",
"0x7e595b3b77CC16680C30617b88E9b87F987Ac934",
"0x41D2c5128A7241EC1f7CE346B162C347C19548B7",
"0xbb8A5E91295131Ce07B6Bfe301C49bcD925A2902",
"0x193110Ce1542d7371e1515BD6A2E470fDefc310D",
"0xB2Be7692B07b640C9f2ee1187cee2fAec741F872",
"0x129578f94C253b8Bc903Bf2b73D07BF2583cc11d",
"0xFF5Cb29241F002fFeD2eAa224e3e996D24A6E8d1",
"0x2AF43209B366A4491CCe0A97C5a7B6059fd21295",
"0x4574921eb950d3Fd5B01562162EC566Cb8bc3648",
"0xe6dA14500f0b5783E2325F9C5a7eE5d99DA0fB42"
]
},
{
"name": "Cycle Network",
"type": "Infrastructure",
"logo": "https://pbs.twimg.com/profile_images/1745373174735540224/egXcozCp_400x400.jpg",
"website": "https://www.cyclenetwork.io/",
"description": "Cycle Network is building a universal all-chain settlement layer and a bridgeless liquidity network for the entire blockchain ecosystem.",
"monad_exclusive": false,
"contracts": [
"0x647E77A1AF7c87688B974F20DB75eA36C28D033E",
"0xaD5cA27D8932114a9457d385FC0b88825c845960"
]
},
{
"name": "DeBridge",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1894665537466040320/5vQrjq6M_400x400.jpg",
"website": "https://debridge.com/",
"description": "Trade any opportunity, ahead of the curve. For first-movers.",
"monad_exclusive": false,
"contracts": [
"0x663DC15D3C1aC63ff12E45Ab68FeA3F0a883C251",
"0x43dE2d77BF8027e25dBD179B491e8d64f38398aA",
"0xE7351Fd770A37282b91D153Ee690B63579D6dd7f",
"0xeF4fB24aD0916217251F553c0596F8Edc630EB66"
]
},
{
"name": "Definitive Finance",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1989507102352764928/AXdL2XHz_400x400.jpg",
"website": "https://definitive.fi",
"description": "Definitive Finance is a professional trading terminal delivering advanced on-chain execution and risk tooling for active traders on Monad.",
"monad_exclusive": false,
"contracts": [
"0xdeF00000cc0a125ba7962e8113d3B69786851736",
"0x0000000d1126e7651931461F31Be87712CD9E05C",
"0x000000005aE5f42270cDf0E41960840e7FB1b2dc"
]
},
{
"name": "Dexalot",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1905272093492572160/3ilOLKT8_400x400.png",
"website": "https://app.dexalot.com/",
"description": "Dexalot is a decentralized exchange (DEX) for spot trading, powered by a fully on-chain central limit order book (CLOB). Competitive prices, zero to minimal slippage and no fees.",
"monad_exclusive": false,
"contracts": [
"0x1FD108cf42A59c635bD4703b8DbC8a741ff834Be",
"0xC725229Aefeab5fAec9cc1667d79D9478e564a0C",
"0x3D3E4F0523500f95039D0Fe600ACf2ADE4b06eB9",
"0xA0421a4DB5bb7577f9bb9B577b5F600a642368be",
"0x246c87368580acd6E9ca46Bf112aD91978389634",
"0x170c15cb9887E6Adb097518104B174Df212bB190",
"0xa5C079C1986E2335d83fA2d7282e162958e515D5",
"0x06B82468100A3A7b0EAC77289f0D1ab920573B16",
"0x15764530c716cEFaD9Cbd2310D722704D03de875"
]
},
{
"name": "Dirol",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1971111107335979008/da7R3pmO_400x400.jpg",
"website": "https://dex.dirol.io/",
"description": "Dirol is the all-in-one trading aggregator for the Monad ecosystem, designed to be a single gateway to everything in DeFi. We aggregate all token launches, launchpads, and DEX liquidity from muptile AMM's, Orderbooks, into one seamless platform, eliminating the need to jump between multiple dApps and interfaces.",
"monad_exclusive": false,
"contracts": [
"0x77E73c3fCd3FEDba383025CDe4a5b97733A34c2E",
"0xA82098c33c75A4A1e20e06f352732910C75C690D"
]
},
{
"name": "Doppler",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1989072411757568001/hKlsQbpS_400x400.jpg",
"website": "https://www.doppler.lol/",
"description": "Create custom capital markets with efficient price discovery and maximum flexibility. ",
"monad_exclusive": false,
"contracts": [
"0x5fbe931dc4b923a7abe4c47ad68d5bf9eda5b76d",
"0x8b4c7db9121fc885689c0a50d5a1429f15aec2a0",
"0xaa47d2977d622dbdfd33eef6a8276727c52eb4e5",
"0x580ca49389d83b019d07e17e99454f2f218e2dc0"
]
},
{
"name": "Eisen",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1861248882824593408/h5CrU_s__400x400.jpg",
"website": "https://eisenfinance.com",
"description": "A multichain DEX & CEX aggregator—streamline every swap.",
"monad_exclusive": false,
"contracts": [
"0x787C474B8A86354d0F5f19FB599a5FC7662A265f",
"0xECE5E77f9A9846C4D69555Eb44E0CFF8B5F03F1e"
]
},
{
"name": "Enjoyoors",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1846943911429697536/Km5JGs5b_400x400.jpg",
"website": "https://enjoyoors.xyz",
"description": "Enoyoors is a protocol that unlocks yield on any asset on any chain",
"monad_exclusive": false,
"contracts": [
"0x6B5E332387e8beC98C52F10A72952B17176B4f1b",
"0x71F60773885011cC0a61613078733b4738B38f35"
]
},
{
"name": "Fastlane",
"type": "LST",
"logo": "https://pbs.twimg.com/profile_images/1935840734726270976/nnMo1axH_400x400.jpg",
"website": "https://www.shmonad.xyz/",
"description": "Fastlane launched shmonad, the first holistic LST on Monad and Atlas, the first MEV protocol for apps to capture the MEV their users create.",
"monad_exclusive": false,
"contracts": [
"0x1B68626dCa36c7fE922fD2d55E4f631d962dE19c",
"0x2DA28fedc4643c787CB5c5e84fa6AaDb596875E8"
]
},
{
"name": "Fibrous",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1910332320067747840/SGkFXgaC_400x400.jpg",
"website": "https://fibrous.finance",
"description": "One place for best execution across chains.",
"monad_exclusive": false,
"contracts": [
"0x274602a953847d807231d2370072F5f4E4594B44"
]
},
{
"name": "Flap",
"type": "DeFi",
"logo": "https://beta.flap.sh/_next/image?url=%2Flogo.png&w=1080&q=75&dpl=dpl_D8pNRVsFr6RF8LkbCB6nnUb1Rb4w",
"website": "https://flap.sh/monad",
"description": "The premier memecoin launchpad for trench warriors on Monad.",
"monad_exclusive": false,
"contracts": [
"0x30e8ee7b5881bf2E158A0514f2150aabe2c68b23",
"0xB88189aA1162850D75A1c1e16F837b7979994184",
"0x1C8847736521f5cD725dFB8f33c7c610826e7C42",
"0x57Fed6832F12150a77D5952b49190d9447aCB5ee"
]
},
{
"name": "Fluffle",
"type": "Social",
"logo": "https://pbs.twimg.com/profile_images/1972672305336569856/JLjBcagi_400x400.jpg",
"website": "https://fluffle.world/",
"description": "Fluffle is the first hyper-gamified productivity platform that makes focus addictive. ",
"monad_exclusive": false,
"contracts": [
"0x8255DACD8A45f4aBE6dc821E6f7F3c92a8E22fBB",
"0x2eD99dbE114249B7611478d67818B399865FFc89",
"0x67f58f1faf78781b7eb90c457846e0f965bb1a2f"
]
},
{
"name": "Garden",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1955253205832699904/83uUswbn_400x400.jpg",
"website": "https://garden.finance/",
"description": "Garden is transforming Bitcoin interoperability with its next-gen bridge. It is built by the renBTC team using an intents based architecture with trustless settlement, enabling cross-chain Bitcoin swaps in as little as 30 seconds with zero custody risk.\n\nIn its first year, Garden processed over $1 billion in volume—proving the market’s demand for seamless, cost-effective Bitcoin bridging solutions.\n\nNow, Garden is unlocking a new era of interoperability—supporting non-likewise assets, external liquidity, and a wallet-friendly API—to onboard the next wave of partners and users.",
"monad_exclusive": false,
"contracts": [
"0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb",
"0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E"
]
},
{
"name": "Gas.zip",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1750310657680101376/HEtUyTZy_400x400.jpg",
"website": "https://gas.zip",
"description": "Instant liquidity bridging for over 350+ chains",
"monad_exclusive": false,
"contracts": [
"0x9E22ebeC84c7e4C4bD6D4aE7FF6f4D436D6D8390",
"0x391E7C679d29bD940d63be94AD22A25d25b5A604",
"0x8C826F795466E39acbfF1BB4eEeB759609377ba1"
]
},
{
"name": "Gearbox",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1737949216708739072/ISu5WSUS_400x400.jpg",
"website": "https://gearbox.finance/",
"description": "Gearbox delivers a seamless, all-in-one prime brokerage experience, right from your favorite wallet.",
"monad_exclusive": false,
"contracts": [
"0xF7f0a609BfAb9a0A98786951ef10e5FE26cC1E38",
"0x1cE2B1BE96a082b1b1539F80d5D8f82Ec06a0f9A",
"0xcCCCCcCc42B7DA9fdEc1761698Fb55fdD41CDF55",
"0xBcD875f0D62B9AA22481c81975F9AE1753Fc559A",
"0x0Bc03983Da93021a374C964A22b73865220Ce962",
"0x74A868AC479EE145029bB80827BB77F7B7c441cB",
"0x7D60CfaF7c2cec210638A5e46E4000894830C034",
"0x2fcbD02d5B1D52FC78d4c02890D7f4f47a459c33",
"0x2238eDf33a72860cDbaec5F83ec246Df9e85c8E2",
"0x81Cda0aB38d8Bd0732123Eb0e36C0C566d35DADD",
"0xF7533CDCE5A2F7BF78B6fbf4B05f04F45D10140B",
"0xA7dE2e941c8818E51D1Fd84111d8F71dcafa6C3B",
"0xbede127c14407b9c345f5d7fae5782ab8eaa33f3",
"0x0E535b7D073a93646512cEa18fa7e650CC2b17C4",
"0x59b2fd348e4Ade84ffEfDaf5fcdDa7276c8C5041",
"0x4115708Fc8fe6bB392De2e0C21c2C81dA2222394",
"0x93Cba8445b13a05287bFf90D882cbcB514D617b7",
"0x12c8faEdD62cF0C5d4D742E57B98737a9a3F5E0f",
"0x70F1753a765C4df582FFA3B8d96AB492714E8992",
"0xa7ED6dB5761613CaE7CaCfAAE9Dca07a77809F9d",
"0x847a05C22c7508C674342A95356Adf9b3a0e0D57",
"0x19Ca61E672d1c6105f609418bfDC784F92F4Ecf0",
"0xAe3Dd11e5a7f99eD4cba2768D4095a55fbF7841B",
"0x00aDE38841AB8c6e236E232041e43B41d74B8B45",
"0x81cb9eA2d59414Ab13ec0567EFB09767Ddbe897a",
"0xfB79b6713fe214B8748ED7b0db1f93E4f1aC9d29"
]
},
{
"name": "HaHa Wallet",
"type": "Infrastructure",
"logo": "https://pbs.twimg.com/profile_images/1954195620006346752/644sSCzE_400x400.jpg",
"website": "https://www.haha.me/",
"description": "Native wallet with ultra-fast transactions, exclusive rewards, and discounts.",
"monad_exclusive": false,
"contracts": [
"0xbd2C0dc6521CD25A8bb3943f50B5Eec7A9d9a8a2",
"0x4631F923C3c470061A97e008ED9c33DA4349612c",
"0xfFf4baDfe0EB9731F5593fE7CEd5B1209055E640",
"0xA01A2488Cbe09156da4a78fA46483556CE41710a"
]
},
{
"name": "Hyperlane",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1671589406816313345/wGzRPeEf_400x400.jpg",
"website": "https://hyperlane.xyz",
"description": "GMP interoperability to bridge, issue, swap, and more",
"monad_exclusive": false,
"contracts": []
},
{
"name": "KINETK",
"type": "AI",
"logo": "https://pbs.twimg.com/profile_images/1947607859702673408/hpZ89aya_400x400.jpg",
"website": "https://www.kinetk.ai/",
"description": "KINETK is building the IP infrastructure layer for the next generation of digital creativity, unlocking attribution, protection, and capital for creators. Through the combination of proprietary invisible watermarking, agentic AI detection and tracking, and on-chain registration, KINETK is providing the tools that will underpin the future data models of the digital landscape.",
"monad_exclusive": false,
"contracts": [
"0xD057B63f5E69CF1B929b356b579Cba08D7688048"
]
},
{
"name": "Kinic AI Memory Agent",
"type": "AI",
"logo": "https://cdn.prod.website-files.com/6712749157ea3bf4a781f309/671bbee00d9198b08a63cb40_kinic-logo.svg",
"website": "https://kinicmemory.com",
"description": "AI-powered memory system combining Kinic/Internet Computer for semantic storage with Monad blockchain for transparent metadata logging and audit trails. Features Claude AI integration for intelligent context-aware responses.",
"monad_exclusive": false,
"contracts": [
"0xEB5B78Fa81cFEA1a46D46B3a42814F5A68038548"
]
},
{
"name": "Kintsu",
"type": "LST",
"logo": "https://pbs.twimg.com/profile_images/1984001421960704000/UpI70-s4_400x400.jpg",
"website": "https://kintsu.xyz",
"description": "Composable liquid staking protocol that powers decentralized validator curation, governed by the Kintsu DAO.",
"monad_exclusive": false,
"contracts": [
"0xA3227C5969757783154C60bF0bC1944180ed81B9",
"0xf16f96c342913575e46cff1bb827533c0b285138"
]
},
{
"name": "Kodeus",
"type": "AI",
"logo": "https://arweave.net/MS-KY8qBeQ0KHJvez0HgkkrXCN48_ZnlUWrzIQJil2k",
"website": "https://kodeus.ai",
"description": "Kodeus is the Internet's Agent Layer where users create programmable and monetizable agents that act, settle and prove autonomously",
"monad_exclusive": false,
"contracts": [
"0x3d3c1Db86989eD5196358eE03e2F1258EA183dCB",
"0xa0371d51C086f846Bd02c331DD31cc510645332e",
"0xa2c272C0D4fd83587ce3A4e81FA3Ad0eB9d63F9D"
]
},
{
"name": "Kuru",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1950962142917619714/R7Cj_qk7_400x400.jpg",
"website": "https://kuru.io",
"description": "Kuru is the all-in-one trading hub for Monad. Trade any spot asset with our smart aggregator and trading terminal. Deploy liquidity on our hybrid AMM-orderbook. Launch a new token in seconds.",
"monad_exclusive": false,
"contracts": [
"0xb3e6778480b2E488385E8205eA05E20060B813cb",
"0x465D06d4521ae9Ce724E0c182Daad5D8a2Ff7040",
"0xd651346d7c789536ebf06dc72aE3C8502cd695CC",
"0x2A68ba1833cDf93fa9Da1EEbd7F46242aD8E90c5",
"0x974E61BBa9C4704E8Bcc1923fdC3527B41323FAA",
"0xe29309e308af3EE3B1a414E97c37A58509f27D1E"
]
},
{
"name": "KyberSwap",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1641706567014940672/UFuWgdxn_400x400.jpg",
"website": "https://kyberswap.com/",
"description": "KyberSwap is a decentralized trading solution that helps users find the best token swap rates by routing trades through multiple DEXs and other liquidity sources across multiple chains.",
"monad_exclusive": false,
"contracts": [
"0x6131B5fae19EA4f9D964eAc0408E4408b66337b5",
"0xcab2FA2eeab7065B45CBcF6E3936dDE2506b4f6C",
"0x89C91686948C3Bc9A5bDF7A2A773ea71530a233e",
"0x4445520306c9C70952bDFEc28F3989f53d9f80C4"
]
},
{
"name": "LFJ",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1852261646409809920/-ZwSUHqA_400x400.jpg",
"website": "https://lfj.gg/",
"description": "The most CRACKED fee machine in crypto. Ultrasound DLMM with hyper-efficient trade flow capture.",
"monad_exclusive": false,
"contracts": [
"0xb43120c4745967fa9b93E79C149E66B0f2D6Fe0c",
"0x18556DA13313f3532c54711497A8FedAC273220E",
"0x9A550a522BBaDFB69019b0432800Ed17855A51C3",
"0x3A8E1Be95467690F7C592B596e42d11b3710c633",
"0x6124086B90AB910038E607aa1BDD67b284C31c98",
"0xA5c68C9E55Dde3505e60c4B5eAe411e2977dfB35",
"0x7ac3Dd4B5A3F7013116D8a28f0579a678282EA5c",
"0xDbeeB3FB3e864e490e71b1d5c86c3de683cA4626",
"0x45A62B090DF48243F12A21897e7ed91863E2c86b",
"0xF8155BcA49576B54018311C6129bdA088605B88b",
"0xF780668669C193B5D2Cf22B8420473fA1E3Ee3D1",
"0xe32D45C2B1c17a0fE0De76f1ebFA7c44B7810034",
"0x4faCe5b0EF2757Ceb9151D14C036A1135931C70E",
"0xf57B8a91F775B01d53450D7Cb4D2A99Ba989fd19",
"0xe70d21aD211DB6DCD3f54B9804A1b64BB21b17B1",
"0x371c7ec6d8039ff7933a2aa28eb827ffe1f52f07"
]
},
{
"name": "LayerZero",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1779646801605242880/FrFssPAQ_400x400.jpg",
"website": "https://layerzero.network",
"description": "Powering the Chain-Agnostic Future",
"monad_exclusive": false,
"contracts": [
"0x6F475642a6e85809B1c36Fa62763669b1b48DD5B",
"0xAaB5A48CFC03Efa9cC34A2C1aAcCCB84b4b770e4",
"0x4208D6E27538189bB48E603D6123A94b8Abe0A0b",
"0x6788f52439ACA6BFF597d3eeC2DC9a44B8FEE842",
"0xC39161c743D0307EB9BCc9FEF03eeb9Dc4802de7",
"0xe1844c5D63a9543023008D332Bd3d2e6f1FE1043",
"0x41Bdb4aa4A63a5b2Efc531858d3118392B1A1C3d",
"0xc1ce56b2099ca68720592583c7984cab4b6d7e7a"
]
},
{
"name": "LeverUp",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1963940143171346433/mefOgn9M_400x400.jpg",
"website": "https://leverup.xyz",
"description": "LeverUp is a next-gen perps DEX with LP-free trading, deep liquidity, and up to 1001x leverage.",
"monad_exclusive": false,
"contracts": [
"0xea1b8E4aB7f14F7dCA68c5B214303B13078FC5ec",
"0xFD44B35139Ae53FFF7d8F2A9869c503D987f00d1",
"0x91b81bfbe3A747230F0529Aa28d8b2Bc898E6D56",
"0x135951057cfcccA7E8ef87ee41318D670f723F68",
"0xbF52cED429C3901AfA4BBF25849269eF7A4ad105"
]
},
{
"name": "Levr Bet",
"type": "Gaming",
"logo": "https://pbs.twimg.com/profile_images/1836024387042004992/YKdDMkOG_400x400.jpg",
"website": "https://www.levr.bet/",
"description": "Decentralized Leveraged Sports Betting",
"monad_exclusive": false,
"contracts": [
"0x8e334460192926576ccD04271190c9E9e5916560"
]
},
{
"name": "Li.Fi",
"type": "Bridge",
"logo": "https://pbs.twimg.com/profile_images/1940673908946120704/ZkHt9ssN_400x400.png",
"website": "https://li.fi/",
"description": "One API for seamless swaps, bridging and Zaps across EVM and Solana.",
"monad_exclusive": false,
"contracts": [
"0x026F252016A7C47CDEf1F05a3Fc9E20C92a49C37"
]
},
{
"name": "M0narch",
"type": "Gaming",
"logo": "https://m0narch.xyz/logo.jpg",
"website": "https://m0narch.xyz",
"description": "M0narch is provably fair, fully on‑chain iGaming platform",
"monad_exclusive": true,
"contracts": [
"0x5B159027C1BcFDADd11CB5b44519251DbADb3749",
"0x266b1540d35DB5f64569Fe2d7db79EeC2ACF67dB",
"0x79575d8787b184841fD9eB28AAee2971646259cE",
"0xbB053a8CE778D8492Db5079aC36FfA99Bde92aBc",
"0x446012177a183adc281Df23987c21B0F83Fb7e97"
]
},
{
"name": "LootGO",
"type": "Gaming",
"logo": "https://pbs.twimg.com/profile_images/1947490514921488384/TLSJg7Z5_400x400.jpg",
"website": "https://lootgo.app",
"description": "LootGO is a walk-to-earn mobile app that turns your steps into a real-world crypto treasure hunt. Think: Pokémon GO, but with crypto rewards.",
"monad_exclusive": false,
"contracts": [
"0x3E1fC8371bf6dCEFfd829ae2134005a4AE890b71"
]
},
{
"name": "LumiterraGame",
"type": "Gaming",
"logo": "https://pbs.twimg.com/profile_images/1667436896480563200/8YPmbLbv_400x400.png",
"website": "https://lumiterra.net/",
"description": "Lumiterra is an open-world game where you team up with an AI smart-companion that learns your playstyle, helps you win battles, farm faster, and explore smarter",
"monad_exclusive": false,
"contracts": [
"0x4bd7aB4f4251f6A20E8c64D24F3A2f89F47D80B9",
"0x8f28E18039c37cdB4389E6dcb8703966fb9480A8"
]
},
{
"name": "Mace",
"type": "DeFi",
"logo": "https://pbs.twimg.com/profile_images/1876861581763764224/3Z3F9Cef_400x400.jpg",
"website": "https://www.mace.ag/",
"description": "The smartest DEX aggregator on Monad",
"monad_exclusive": false,
"contracts": [
"0x6F05a0746a8CB5c7DE5aF1568C8d020DBB521B23",
"0x70ca11a8bb062EF86e6E662b58aE3cAEeF1d66e5",
"0x60672942Dd9BEAf2D4980892A1B8001B5178149f",
"0x8A64d063Dc534a160914da4Dc86804be5e8DE98b",
"0x73590e38F40F799eDb3AfE3142c0Ea891F393D9D",
"0x0E89C6d18933E2dA3a5C56B0727113B2247AC847",
"0x59966aDd989Bb2b8A528B796a81FB7e593072529",
"0xb346fbd2Ba963a1C3B00946c733e9f0d5CE7AEeC",
"0xaA318069cEe0E16E25B8aA34C27Ac20C4DE16fC2",