forked from base/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecosystem.json
More file actions
4042 lines (4042 loc) · 186 KB
/
ecosystem.json
File metadata and controls
4042 lines (4042 loc) · 186 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": "Ratio1",
"description": "A decentralized AI compute network ensuring trustless execution, data ownership, and linear scalability via a censorship-resistant, encrypted, and autonomous compute layer.",
"url": "https://ratio1.ai",
"imageUrl": "/images/partners/ratio1.png",
"category": "ai",
"subcategory": "ai"
},
{
"name": "Bebop",
"description": "Bebop is a trading app and a suite of APIs that finds the best route for your trades. Quick, secure, any tokens in any size, at the best prices.",
"url": "https://bebop.xyz/trade?network=base",
"imageUrl": "/images/partners/bebop.png",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"name": "3DNS",
"description": "3DNS is a decentralized domain name service (DNS) that can power real web domains. Users can import an existing domain or register a new one and bring the domain onchain via 3DNS.",
"url": "https://3dns.box",
"imageUrl": "/images/partners/3dns.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Infinity Wallet",
"description": "Infinity Wallet is a decentralized all-in-one non-custodial wallet ecosystem and first-of-its-kind Web3 browser, providing a one-stop wallet & DeFi solution.",
"url": "https://infinitywallet.io/",
"imageUrl": "/images/partners/infinity-wallet.png",
"category": "wallet",
"subcategory": "self-custody"
},
{
"name": "CoW Swap",
"description": "CoW Swap is an intent-based meta-DEX aggregator that leverages CoW Protocol's bespoke batch/solver ecosystem. With built in MEV protection, CoW Swap lets traders big and small do more and worry less",
"url": "https://swap.cow.fi",
"imageUrl": "/images/partners/cowswap.png",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"name": "Arcadia Games",
"description": "Arcadia Games provides PvP board games on the blockchain. Play Chess, Battleship and other classic games against other players for crypto.",
"url": "https://arcadiagames.io",
"imageUrl": "/images/partners/arcadia-games.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Moxie Protocol",
"description": "Moxie is a SocialFi protocol on the Base blockchain that allows users to create and interact with Fan Tokens.",
"url": "https://moxie.xyz",
"imageUrl": "/images/partners/moxie.png",
"category": "consumer",
"subcategory": "social"
},
{
"name": "MADNFT",
"description": "MADNFT is a creator-first NFT platform empowering artists, collectors, and communities with tools to mint, list, and engage while earning XP points and rewards.",
"url": "https://madnft.io",
"imageUrl": "/images/partners/madnft.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "DIMO",
"description": "DIMO is a connected car platform enabling user-authorized access to vehicle data to create new types of car apps. For vehicle owners, the DIMO Mobile app unlocks your car’s data providing valuable vehicle health insights, personalized service offers, and weekly rewards.",
"url": "https://dimo.co",
"imageUrl": "/images/partners/dimo.png",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "SynFutures",
"description": "SynFutures (F) is a leading decentralized exchange (DEX) and full-stack financial infrastructure powering the future of trading.",
"url": "https://www.synfutures.com/",
"imageUrl": "/images/partners/synfutures.png",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Vertex",
"description": "Vertex is an orderbook DEX offering spot, perpetuals, and money markets with unified cross-margin. Enjoy lightning-fast speeds, deep liquidity, low fees, cross-chain deposits, and multiple collaterals.",
"url": "https://link.vertexprotocol.com/base",
"imageUrl": "/images/partners/vertex.png",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Coinbase",
"url": "https://www.coinbase.com",
"description": "Coinbase is a secure online platform for buying, selling, transferring, and storing cryptocurrency.",
"imageUrl": "/images/partners/wallet-retail.webp",
"category": "wallet",
"subcategory": "centralized exchange"
},
{
"name": "Anzen",
"url": "https://anzen.finance",
"description": "Anzen is the creator of USDz, a stablecoin backed by a diversified RWA portfolio, allowing holders to mitigate volatility and earn rewards through all market cycles",
"category": "defi",
"subcategory": "stablecoin",
"imageUrl": "/images/partners/anzen.png"
},
{
"name": "Connext",
"description": "Connext is an intent-based modular interoperability protocol for securely passing funds and data between chains with the best possible speed, pricing, and security.",
"url": "https://bridge.connext.network/",
"imageUrl": "/images/partners/connext.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Layerswap",
"description": "Layerswap is a fast, reliable and cost-efficient solution for bridging crypto assets across 55+ EVM and non-EVM networks.",
"url": "https://layerswap.io/app?to=base_mainnet",
"imageUrl": "/images/partners/Layerswap-logo.png",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Infusion",
"description": "Infusion is an AMM protocol that facilitates deep and stabilized liquidity. It's time-lock component that allows for liquidity to be utilized as an onchain primitive for DApps.",
"url": "https://infusion.finance",
"imageUrl": "/images/partners/infusion.png",
"category": "defi",
"subcategory": "liquidity management"
},
{
"name": "Frenpet",
"description": "Own and grow with your onchain fren.",
"url": "https://frenpet.xyz/",
"imageUrl": "/images/partners/frenpet.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Defi Launch",
"description": "Decentralized hub for easy onboarding and bridging powered by LayerZero",
"url": "https://defilaunch.app/",
"imageUrl": "/images/partners/defilaunch.png",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "The Open X Project",
"description": "Auto-compounding Vaults. 1% fee NFT Marketplace. Next-gen Aggregator. DeFi applications accessible and open to everyone.",
"url": "https://app.openxswap.exchange/",
"imageUrl": "/images/partners/openx.png",
"category": "defi",
"subcategory": "dex"
},
{
"name": "MoonPay",
"description": "MoonPay is the world's leading Web3 infrastructure company, empowering brands and consumers to unlock next-gen transactions.",
"url": "https://www.moonpay.com/business/onramps",
"imageUrl": "/images/partners/moonpay.png",
"category": "onramp",
"subcategory": "fiat on-ramp"
},
{
"name": "Vrbs DAO",
"description": "Vrbs is a global, community-run organization that uses money raised by the community to fund open-source technology, art and public-works projects.",
"url": "https://vrbs.build",
"imageUrl": "/images/partners/vrbsdao.png",
"category": "consumer",
"subcategory": "dao"
},
{
"name": "TransFi",
"description": "Buy or sell crypto with 100+ local payment methods in 40+ countries around the world.",
"url": "https://buy.transfi.com/",
"imageUrl": "/images/partners/transfi.png",
"category": "onramp",
"subcategory": "fiat on-ramp"
},
{
"name": "MiniMatch",
"description": "MiniMatch offers a thrilling \"spot-the-ball\" game, where players challenge their skills to predict the ball's location and win the competition. The skill-based game is a fully on-chain experience.",
"url": "https://www.minimatch.gg/spot-the-ball",
"imageUrl": "/images/partners/minimatch.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Heroes of Mavia",
"description": "Heroes of Mavia is a mobile multiplayer Web3 strategy game where players use their base and army to battle other players. ",
"url": "https://www.mavia.com",
"imageUrl": "/images/partners/mavia.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "KOMPETE",
"description": "Create your build, lock in your playstyle, and drop into some of the best multiplayer game modes of all time across different genres. ",
"url": "https://kompete.game",
"imageUrl": "/images/partners/kompete.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Function Over Form",
"description": "A collection of on-chain games, utilities, and apps, all packaged as collectible NFTs on Base.",
"url": "https://functionoverform.xyz",
"imageUrl": "/images/partners/formoverfunction.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "EthXY",
"description": "Onchain MMORPG on Base. Create a pixel RPG character, strengthen your attributes, gather loot, battle boss monsters, duel other players.",
"url": "https://ethxy.com",
"imageUrl": "/images/partners/ethxy.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Ghost",
"description": "Next-gen indexing stack for next-gen blockchains. Built high-performance indexers (subgraphs) in Solidity.",
"url": "https://tryghost.xyz",
"imageUrl": "/images/partners/ghostLogs.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Bulla Network",
"description": "Bulla is a global onchain credit protocol that streamlines web3 business with one-step invoicing, payments, payroll, loans and multi-functional account management and tax reporting across 14 chains.",
"url": "https://www.bulla.network/",
"imageUrl": "/images/partners/bulla.webp",
"category": "consumer",
"subcategory": "payments"
},
{
"name": "DeFi Saver",
"description": "DeFi Saver is an all-in-one management app for decentralised finance, providing you fully non-custodial access to protocols such as Aave, Compound, Morpho, Maker & Liquity.",
"url": "https://defisaver.com/",
"imageUrl": "/images/partners/defisaver.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "BitAvatar",
"description": "A Soulbound Avatar Identity for Multi-Ecosystem Social & Communication. Customize, interact, and build verifiable reputation with unique and personalized digital identities.",
"url": "https://bitavatar.io/",
"imageUrl": "/images/partners/bitavatar.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Crypto Tax Calculator",
"description": "Sort out your crypto tax nightmare with the most degen-friendly calculator in web3.",
"url": "https://cryptotaxcalculator.io",
"imageUrl": "/images/partners/cryptotax.webp",
"category": "consumer",
"subcategory": "crypto taxes"
},
{
"name": "Show Up",
"description": "Onchain RSVP and Event management protocol designed to reshape event participation.",
"url": "https://www.showup.events/",
"imageUrl": "/images/partners/showup.webp",
"category": "consumer",
"subcategory": "real world"
},
{
"name": "Catalog Radio",
"description": "Internet radio made for independent music. Enjoy and directly support artists in real time. ",
"url": "https://catalog.radio/",
"imageUrl": "/images/partners/catalog.webp",
"category": "consumer",
"subcategory": "music"
},
{
"name": "Lore",
"description": "Upgrade Your Web3 Experience with Lore as your primary explorer for Ethereum, Avalanche (C-Chain), Fantom Opera, Base. Stay ahead of the curve with LoreAI, notifications, and more.",
"url": "https://lorescan.com/",
"imageUrl": "/images/partners/lore.png",
"category": "infra",
"subcategory": "data"
},
{
"name": "RubyScore",
"description": "Onchain ranking protocol. Track your progress in your favorite projects and rise to the top.\n",
"url": "https://rubyscore.io/",
"imageUrl": "/images/partners/rubyscore.png",
"category": "infra",
"subcategory": "data"
},
{
"name": "Blocto",
"description": "Blocto is an account abstraction wallet supporting EVM chains. We boast a user base of 1.7 million so far with a seamless social log in and speedy 30-second onboarding experience, completely coinless.",
"url": "https://blocto.io/",
"imageUrl": "/images/partners/Blocto.webp",
"category": "wallet",
"subcategory": "account abstraction"
},
{
"name": "Cred Protocol",
"description": "Credit risk management infrastructure, quantifying on-chain lending risk at scale. Realtime Credit Scoring, Reporting and Monitoring across 200M EVM addresses.",
"url": "https://credprotocol.com",
"imageUrl": "/images/partners/Cred.webp",
"category": "defi",
"subcategory": "insurance"
},
{
"name": "Ducky City",
"description": "Ducky City is a gamefi project built on Base, and is a MMORPG game run on browser compatible with all devices.",
"url": "https://duckycity.io/",
"imageUrl": "/images/partners/DuckyCity.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Nirvana Labs",
"description": "Built by crypto engineers and optimized for the bandwidth, storage, and compute workloads of blockchain transactions, Nirvana offers a bare metal cloud with vertically integrated managed RPC services.",
"url": "https://nirvanalabs.io/",
"imageUrl": "/images/partners/Nirvana.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "Oku Trade",
"description": "Oku Trade is the best DEX interface. Powered by Uniswap v3, the trading platform offers limit orders, analytics, and position management without fees.",
"url": "https://oku.trade",
"imageUrl": "/images/partners/Oku.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "SubQuery",
"description": "Fast, reliable, opens source, decentralised, and customised APIs supercharging dApps on over 150 networks, enabling a user-focused web3 world. SubQuery Network is innovating web3 infrastructure with tools that empower builders to decentralise the future.\n",
"url": "https://subquery.network/",
"imageUrl": "/images/partners/Subquery.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Subsquid",
"description": "Subsquid Network is Web3 necessiware—a decentralized data lake and query engine for blazing-fast cross-chain indexing and queries. Infinitely horizontally scalable, Subsquid makes the consumer dApps that real people want to use possible, from social media to games and DeFi. Secured by ZK proofs, Subsquid supports over 100 networks.",
"url": "https://subsquid.io",
"imageUrl": "/images/partners/Subsquid.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Hitdex",
"description": "A decentralized ecosystem for cross-chain trading and buying & selling crypto. Trade ETH and your favorite tokens across eight chains including Base, Ethereum, Solana, Polygon PoS, Optimism, and more.",
"url": "https://www.hitdex.com/#/base",
"imageUrl": "/images/partners/hitdex.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Brian",
"description": "Brian offers a non custodial solution to perform transactions, research web3 info and deploy smart contracts via prompting.",
"url": "https://www.brianknows.org/",
"imageUrl": "/images/partners/brian.webp",
"category": "ai",
"subcategory": "ai"
},
{
"name": "Cede.Store",
"description": "Access and transfer your assets from 10+ centralized exchanges, with a DeFi UX.",
"url": "https://send.cede.store/",
"imageUrl": "/images/partners/cede.webp",
"category": "onramp",
"subcategory": "centralized exchange"
},
{
"name": "L2Pass",
"description": "L2Pass is an Omni-Chain Protocol Designed for Seamless Multi-Chain Token Movement, Swaps, and Art Performances.",
"url": "https://l2pass.com/",
"imageUrl": "/images/partners/l2pass.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "MES Protocol",
"description": "MES is a stablecoin-focused bridge and swap. Traders enjoy instant and secure cross chain transactions at low cost.",
"url": "https://www.mesprotocol.com/",
"imageUrl": "/images/partners/mes.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "SafeSwap",
"description": "SafeSwap is a decentralized atomic swap bridge for native tokens. The Atomic Swap protocol enables builders to transport their native tokens to other EVM-based blockchains, without having to rely on wrapped tokens.",
"url": "http://safeswap.io/",
"imageUrl": "/images/partners/safeswap.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "OmniKingdoms",
"description": "OmniKingdoms is an on-chain MMORPG that focuses on state transactions. Players can join the community and earn rewards for questing, battling, crafting and much more. We aim to integrate the newest gaming mechanics and other projects.",
"url": "https://www.omnikingdoms.io/",
"imageUrl": "/images/partners/omnikingdom.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Cyberscope ",
"description": "An award-winning blockchain security firm specializing in smart contract audits. We work with some of the biggest networks out there such as Polygon, Chainlink, Klaytn, Oasis, and many more.",
"url": "https://cyberscope.io",
"imageUrl": "/images/partners/cyberscope.webp",
"category": "infra",
"subcategory": "security"
},
{
"name": "Layerr",
"description": "Layerr is crafting an innovative platform where users can effortlessly tokenize a variety of consumer-based digital assets. Our platform simplifies the complexities of blockchain, allowing users to tokenize at scale.",
"url": "https://layerr.xyz/",
"imageUrl": "/images/partners/layerr.webp",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Envio",
"url": "https://envio.dev",
"description": "Envio is a modern, multi-chain EVM blockchain indexing framework speed-optimized for querying real-time and historical data. ",
"imageUrl": "/images/partners/envio.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Reserve Protocol",
"url": "https://reserve.org/",
"description": "The Reserve Protocol enables the creation of a new kind of money that holds long term value better than fiat currency.",
"imageUrl": "/images/partners/reserve.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "ARPA Network",
"url": "https://www.arpanetwork.io/en-US/randcast",
"description": "A secure computation network that builds Randcast, an onchain verifiable RNG for tamper-proof randomness in AW, gaming, and NFTs.",
"imageUrl": "/images/partners/arpa2.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "BaseSwap",
"url": "https://baseswap.fi/",
"description": "BaseSwap is an independent decentralized exchange (DEX) that introduces a groundbreaking concept by allowing users to not only trade assets but also earn protocol-generated revenue from fees. This innovative feature is made possible through the $BSWAP & $BSX tokens, boosting rewards, and enabling users to directly earn cryptocurrencies from swap fees.",
"imageUrl": "/images/partners/baseswap.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Bitwave",
"url": "https://bitwave.io",
"description": "The #1 Digital Asset Finance Platform For Enterprises! Bitwave combines audit-proven tax and accounting automation software with workflow and process expertise.",
"imageUrl": "/images/partners/bitwave.webp",
"category": "consumer",
"subcategory": "crypto taxes"
},
{
"name": "ZKP2P",
"url": "https://zkp2p.xyz/",
"description": "ZKP2P is a trustless P2P fiat to crypto on/offramp powered by zero knowledge proofs. Convert USD in Venmo to USDC in 60 seconds!",
"imageUrl": "/images/partners/zkp2p.webp",
"category": "onramp",
"subcategory": "fiat on-ramp"
},
{
"name": "Rubic",
"url": "https://rubic.exchange/",
"description": "Rubic is a Cross-Chain Tech Aggregator for users + tools for dApps. Trade 15,500+ tokens across 70+ networks, through the aggregation of 220+ DEXs and bridges!",
"imageUrl": "/images/partners/rubic.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Wombat Exchange",
"url": "https://www.wombat.exchange/",
"description": "Swap stablecoins at minimal slippage and stake at maximum yield. Just one stablecoin currency to earn it all.",
"imageUrl": "/images/partners/wombat.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "NetherFi",
"url": "https://nether.fi/#/dashboard",
"description": "Nether.Fi is a Base-native Perpetuals and Spot DEX. Traders can enjoy deep liquidity and reliable price data backed by industry-leading oracles. 100% of fees generated on Nether.Fi are distributed to liquidity providers and stakers!",
"imageUrl": "/images/partners/netherfi.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "SlashToken",
"url": "https://slashtoken.io/",
"description": "SlashToken is a powerful and budget-friendly tool for sending tokens and NFTs to multiple wallets at once.",
"imageUrl": "/images/partners/slashtoken.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Everdex",
"url": "https://www.everdex.app/",
"description": "Everdex is a multi-chain native decentralized exchange (DEX) that makes trading various tokens across networks simple and efficient. Leveraging Chainrunner, we provide optimized route for swap.",
"imageUrl": "/images/partners/everdex.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Contango",
"url": "https://contango.xyz/",
"description": "Perps built through looping, the native way of trading on-chain",
"imageUrl": "/images/partners/contango.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Avantis",
"url": "https://www.avantisfi.com/",
"description": "Onchain perpetuals exchange for crypto, forex and commodities with advanced risk management for LPs and up to 100x leverage for traders.",
"imageUrl": "/images/partners/avantis.png",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Seamless Protocol",
"url": "https://www.seamlessprotocol.com/",
"description": "Seamless is the first native, decentralized lending protocol on Base. Seamless enables a new form of undercollateralized borrowing—integrated liquidity markets—which are isolated, smart contract-to-smart contract markets for amplifying strategies.",
"imageUrl": "/images/partners/seamless.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "IceCream Swap",
"url": "https://icecreamswap.com/?chainId=8453",
"description": "Multi-chain DeFi Ecosystem. Swap, Bridge, Farm and Launch across multiple blockchains.",
"imageUrl": "/images/partners/icecream.webp",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"name": "BiFi",
"url": "https://crosschain.bifi.finance/",
"description": "BiFi is a cross-chain lending platform. User can deposit asset and lend any asset from different networks by CCCP (Cross-chain Communication Protocol). Our approach provides improved UX and security.",
"imageUrl": "/images/partners/bifi.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "Bifrost Network Bridge",
"url": "https://www.bifrostnetwork.com/bridge",
"description": "Bifrost bridge allows users to bridge their assets across the chains with enhanced security. Unlike the other bridges that use backend solutions, our bridge is validated by Bifrost network nodes.",
"imageUrl": "/images/partners/bifrostbridge.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "trustalabs",
"url": "https://www.trustalabs.ai/",
"description": "Trusta Labs aims to build web3 security and data infrastructure to bring more trust and less friction to the web3 world.",
"imageUrl": "/images/partners/trusta.webp",
"category": "infra",
"subcategory": "identity"
},
{
"name": "BlockWallet",
"url": "https://blockwallet.io/networks/base-wallet",
"description": "BlockWallet is a self-custodial Web3 wallet focused on speed, reliability, and security ensuring users genuinely own their digital assets without technical concerns.",
"imageUrl": "/images/partners/blockwallet.webp",
"category": "wallet",
"subcategory": "self-custody"
},
{
"name": "Redlion Printer",
"url": "https://app.prints.red",
"description": "Redlion Printer is an innovative solution for the cryptoart community, designed to seamlessly integrate the digital with physical forms of art, offering a novel solution for artists and art owners.",
"imageUrl": "/images/partners/redlion.webp",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Collab.Land",
"url": "https://www.collab.land/",
"description": "Collab.Land is the original community management tool that curates social membership based on tokens. We verify and confirm that members possess the required token(s) to participate in communities.",
"imageUrl": "/images/partners/collabland.webp",
"category": "infra",
"subcategory": "identity"
},
{
"name": "OpenFriend",
"url": "https://openfriend.tech/",
"description": "OpenFriend.Tech is an auxiliary tool providing multi-dimensional data analytics for Friend.Tech users, allowing every user to build their own on-chain reputation based on Friend.Tech.",
"imageUrl": "/images/partners/openfriend.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Nextme",
"url": "https://nextme.one/",
"description": "Nextme is committed to building a social economic network that connects creators, brands and users.",
"imageUrl": "/images/partners/nextme.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Sound.xyz",
"url": "https://www.sound.xyz/",
"description": "Discover amazing new music and prove that you were there first.",
"imageUrl": "/images/partners/sound.webp",
"category": "consumer",
"subcategory": "music"
},
{
"name": "GetBlock",
"url": "https://getblock.io/",
"description": "GetBlock offers fast and cost-efficient RPC nodes for over 50 blockchains, including Base, catering to hundreds of dApps from diverse segments.",
"imageUrl": "/images/partners/getblock.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "Quick Intel",
"url": "https://app.quickintel.io/",
"description": "Quick intel provides the security tools you need to avoid scams, have more peace of mind and become a confident crypto trader.",
"imageUrl": "/images/partners/quickintel.webp",
"category": "infra",
"subcategory": "security"
},
{
"name": "Cobo Argus",
"url": "https://www.cobo.com/argus",
"description": "Cobo Argus is a secure and efficient on-chain digital asset management solution that supports role-based access controls, DeFi investment strategies and more. ",
"imageUrl": "/images/partners/coboargus.webp",
"category": "defi",
"subcategory": "liquidity management"
},
{
"name": "Surf Protocol",
"url": "https://www.surf.one/",
"description": "the first permissionless derivative exchange, enabling trading and listing of over 10,000+ assets.",
"imageUrl": "/images/partners/surf.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "LlamaNodes",
"url": "https://llamanodes.com/",
"description": "Fast and private RPC infrastructure designed for Web3 native teams 🦙",
"imageUrl": "/images/partners/llamanodes.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "OKLink",
"url": "https://www.oklink.com/base",
"description": "OKLink Base explorer is a multi-chain aggregated blockchain explorer that allows users to search through transactions, blocks, wallet addresses, smart contracts and other on-chain data covering 20+ mainstream chains including BTC, ETH, BSC, Base,Solana, polygon,etc. OKLink Base explorer is an intuitive and powerful explorer to be part of the Base ecosystem.",
"imageUrl": "/images/partners/oklink.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Symbiosis",
"url": "https://app.symbiosis.finance/",
"description": "Symbiosis is a cross-chain AMM DEX that pools together liquidity from different networks: L1s and L2s, EVM and non-EVM. With Symbiosis, you can easily swap any token and move your assets across different networks.",
"imageUrl": "/images/partners/symbiosis.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "VMEX Finance",
"url": "https://vmex.finance/",
"description": "VMEX is a lending protocol that uses an isolated pool structure to support the expansion of collateral in DeFi. Your one-stop-shop for leveraging staked LP, vault tokens, and borrowing against RWA.",
"imageUrl": "/images/partners/vmex.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "Equalizer",
"url": "https://base.equalizer.exchange",
"description": "Equalizer provides a liquidity hub for Base chain through its capital efficient system.",
"category": "defi",
"subcategory": "dex",
"imageUrl": "/images/partners/equalizer.webp"
},
{
"name": "BMX",
"url": "https://bmx.morphex.trade/",
"description": "BMX by Morphex: A unique derivative trading platform that boosts capital efficiency. Liquidity providers access market-making liquidity via wBLT, which is transferable and can pair with any asset to LP for rewards.",
"imageUrl": "/images/partners/bmx.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "F1337",
"url": "https://f1337.vercel.app/",
"description": "F1337 is the world first memetic onchain game exclusively for Farcaster users.",
"imageUrl": "/images/partners/F1337.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Singular",
"url": "https://singular.app",
"description": "The home of NFTs 2.0 by @RmrkApp. Create and trade your nestable, equippable, soulbound, and multi-asset NFTs.",
"imageUrl": "/images/partners/singular.webp",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Coinvise",
"url": "https://coinvise.co",
"description": "Coinvise makes it simple for web3 projects, communities and brands to reward onchain contributions—distribute tokens/NFTs for completing actions such as actions on DeFi platforms, collecting NFTs on marketplaces, engaging on social platforms (eg: lens), bridging assets, holding tokens/NFTs and even reward custom smart contract actions.",
"imageUrl": "/images/partners/coinvise.webp",
"category": "consumer",
"subcategory": "creator"
},
{
"name": "Mellow",
"url": "https://mellow.to",
"description": "Mellow is a new take on social media that connects creators and their communities.",
"imageUrl": "/images/partners/mellow2.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Dmail Network",
"url": "https://mail.dmail.ai/login",
"description": "Dmail Network is building an AI-powered decentralized communication infra, offering encrypted emails, consolidated notifications, and targeted marketing services across multiple chains and dApps.",
"imageUrl": "/images/partners/dmail.webp",
"category": "consumer",
"subcategory": "messaging"
},
{
"name": "Desig",
"url": "https://desig.io/",
"description": "Meet Desig: A Smart Multisig wallet simplifying treasury ops. Flourishing funds with intuitive tracking, smart allocation & insightful cashflow reports. Enjoy gasless vault control; intel-driven swap.",
"category": "wallet",
"subcategory": "multisig",
"imageUrl": "/images/partners/desig.webp"
},
{
"name": "Cradles",
"url": "https://www.cradles.io/",
"description": "Cradles stands out as an AAA MMORPG blockchain game, boasting features such as PvP, PvE, ecological strategies, and the discovery of extinct species. Gamers can traverse cities, hunt for treasures, and solve puzzles in bustling taverns and casinos.",
"imageUrl": "/images/partners/cradles.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Lore",
"url": "https://lore.xyz/",
"description": "Community driven fun. With Lore, communities can run engagement programs, create media and own assets — together.",
"imageUrl": "/images/partners/lore.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Gem Wallet",
"url": "https://gemwallet.com",
"description": "Gem Wallet is a community owned, privacy respecting crypto wallet for iOS and Android. It supports multiple cryptocurrencies, tokens and NFTs, and lets you buy, swap, stake, and explore Web3.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/gemwallet.webp"
},
{
"name": "TokenTerminal",
"url": "https://app.xtokenterminal.io/mining/discover?utm_source=coinbase&utm_medium=web",
"description": "The vision for Terminal is to build a capital markets and liquidity management platform designed for DeFi and NFT projects.",
"imageUrl": "/images/partners/tokenterminal.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Coinage Media",
"url": "https://www.coinage.media/?utm_source=coinbase&utm_medium=web",
"description": "Coinage is a community-owned media organization answering crypto's biggest questions, with host and finance reporter Zack Guzman. Our 5,000 Caucus membership passes give you the option to join the Coinage Co-op, the ability to collaborate on production, and the ability to own crypto’s most trusted narrative.",
"imageUrl": "/images/partners/coinnagemedia.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Sonne Finance",
"url": "https://sonne.finance/",
"description": "Sonne Finance is a decentralized lending protocol for individuals, institutions and protocols to access financial services. It is a permissionless and open source protocol serving users on Base. Users can deposit their assets, use them as collateral and borrow against them.",
"imageUrl": "/images/partners/sonne.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "Xena Finance",
"url": "https://xena.finance/",
"description": "Xena Finance is a Perpetual DEX Platform that aims to revolutionize digital asset trading by seamlessly integrating optimized strategies and bespoke risk management. With minimal collateral, users can harness on-demand liquidity, access an automated trading system, and benefit from on-chain transparency.",
"imageUrl": "/images/partners/xena.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "OKX DEX",
"url": "https://www.okx.com/web3/dex-swap#inputChain=1&inputCurrency=ETH&outputChain=1&outputCurrency=0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
"description": "OKX DEX is a cross-chain DEX Aggregator that provides users with the best possible prices on the market through an intelligent routing algorithm.",
"imageUrl": "/images/partners/okxdex.webp",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"name": "OpenPool",
"url": "https://www.openpool.co/",
"description": "OpenPool's onchain API processes wallet txs at scale to calculate real-time and historical pricing, cost basis, P&Ls, and realization events so you don't have to.",
"imageUrl": "/images/partners/openpool2.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Sweep n' Flip",
"url": "https://app.sweepnflip.io/sweep?chainId=8453",
"description": "NFT DEX built for Liquidity.",
"imageUrl": "/images/partners/sweep2.webp",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Register.app",
"url": "https://register.app/#/?chainId=1",
"description": "Register enables anyone to mint, redeem, stake and govern asset-backed stablecoins, flatcoins and indexes (“RTokens”) on the Reserve Protocol",
"imageUrl": "/images/partners/register.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "NewThrone",
"url": "https://www.newthrone.gg/",
"description": "Join NewThrone today, a browser-based PVP Game project built on the Base Chain. NewThrone delivers an easy-to-use and profitable experience, as playing engages you in attacking enemies with the end goal of stealing WETH as a reward for battles won.",
"imageUrl": "/images/partners/newthrone.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Add3",
"url": "https://add3.io",
"description": "EVM smart contract creation and management for web3 projects - Use Add3 to deploy customizable & compliant web3 smart contract products, dapp & analytics in minutes. Code or no-code options available!",
"imageUrl": "/images/partners/add3.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Timeswap",
"url": "https://timeswap.io/",
"description": "Timeswap is the first fully decentralized lending & borrowing protocol in DeFi. Timeswap enables the permissionless creation of lending & borrowing markets for any ERC-20 token pair using a 3-variable AMM - (x+y)z=k.",
"imageUrl": "/images/partners/timeswap.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "Supra",
"url": "https://supraoracles.com/",
"description": "Supra is a middleware network that connects L1 and L2, Web2 and Web3, which we call an IntraLayer. Supra as an IntraLayer is a powerful framework that brings our solutions together - oracles, VRFs, and a native cross-chain protocol through singular shared-security infrastructure.",
"imageUrl": "/images/partners/supra.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Pheasant Network",
"url": "https://pheasant.network/",
"description": "Pheasant Network is an optimistic bridge specialized for Layer 2. Cheap gas fees and strong security improve scalability and interoperability of Ethereum.",
"imageUrl": "/images/partners/pnetwork.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Based Nouns",
"url": "https://nouns.build/dao/base/0x10a5676EC8aE3D6b1F36a6F1A1526136BA7938BF/67",
"description": "Empowering web3 innovation through community-driven incubation on the Base network: Welcome to Based Nouns.",
"imageUrl": "/images/partners/nouns.webp",
"category": "consumer",
"subcategory": "dao"
},
{
"name": "SimpleHash",
"url": "https://simplehash.com/",
"description": "The SimpleHash API provides access to all NFT data across 40+ chains, including media, floor prices, sales, listings and more. Get started today!",
"imageUrl": "/images/partners/simplehash.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Cymbal",
"url": "https://cymbal.xyz/",
"description": "Cymbal's mission is to take the world's blockchain data — all the billions of events and activities stored onchain — and make it understandable. We are building the “human readable” blockchain explorer!",
"imageUrl": "/images/partners/cymbal.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Banxa",
"url": "https://www.banxa.com/",
"description": "Banxa is the leading compliant fiat-to-crypto payments infrastructure provider that allows users to seamlessly on and off-ramp to your app using a huge variety of global and local payment methods.",
"imageUrl": "/images/partners/banxa.webp",
"category": "onramp",
"subcategory": "fiat on-ramp"
},
{
"name": "Omniscia",
"url": "https://omniscia.io/",
"description": "Omniscia is a smart contract auditing firm. Our team of experienced smart contract auditors & developers have been building and auditing complex decentralized networks and applications since. 2017.",
"imageUrl": "/images/partners/omniscia.webp",
"category": "infra",
"subcategory": "security"
},
{
"name": "Hexens Cybersecurity",
"url": "https://hexens.io/",
"description": "Leading cybersecurity provider and novel cryptography experts, including zk, liquid staking and more.",
"imageUrl": "/images/partners/hexens.ong.webp",
"category": "infra",
"subcategory": "security"
},
{
"name": "Toaster Finance",
"url": "https://www.toaster.finance/",
"description": "All-in-one DeFi platform focusing on a UX solution to enable users easy usage to multiple DeFi protocols by abstracting complicated hurdles and unifying the UI to a friendly, user-oriented interface.",
"imageUrl": "/images/partners/toaster2.webp",
"category": "defi",
"subcategory": "portfolio"
},
{
"name": "IntentX",
"url": "https://intentx.io/",
"description": "Decentralized derivatives exchange using intent based architecture to provide the best trading experience possible.",
"imageUrl": "/images/partners/intentx.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Overtime",
"url": "https://overtimemarkets.xyz/#/?lang=en",
"description": "Overtime, the premier onchain sportsbook, offers seamless trading via our sports AMM in a fully decentralized manner. Rooted in Thales, we merge DeFi and real-world sports.",
"imageUrl": "/images/partners/overtime.webp",
"category": "consumer",
"subcategory": "real world"
},
{
"name": "Chainstack",
"url": "https://chainstack.com/",
"description": "The limitless Web3 development stack to build applications for every scale, in DeFi, NFT, gaming, analytics, and everything in between.",
"imageUrl": "/images/partners/chainstack.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "Halliday",
"url": "https://www.halliday.xyz/",
"description": "Halliday enables game developers to build their next breakout hit on the blockchain. Our programmable ERC-4337 Smart Accounts are fully non-custodial, built to scale, and most importantly, designed specifically for games! With seamless onboarding, easy monetization and next-gen growth tooling, developers can fully immerse players in the world they have created, all while leveraging the full potential of the blockchain and offering their game’s own UI.",
"imageUrl": "/images/partners/Halliday.webp",
"category": "consumer",
"subcategory": "payments"
},
{
"name": "QuestN",
"url": "https://questn.com/",
"description": "QuestN is a one-stop tool offering comprehensive solutions for Marketing, Growth, and Analysis in Web3. QuestN's range of services enables Projects to effectively engage in the entire cycle of user attraction, acquisition, and analysis.",
"imageUrl": "/images/partners/questn.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "PitchTalk",
"url": "https://pitchtalk.com/",
"description": "PitchTalk is a platform for communication between projects, investors, and communities. We help you overcome hurdles and reach the pinnacles of success through open and effective communication. ",
"imageUrl": "/images/partners/appicon.webp",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Swan",
"description": "Swan is a protocol where people try to convince AI agents to buy their artifacts, and profit from them. Each agent has its own budget and the world simulation evolves with each artifact.",
"url": "https://swan.my/",
"imageUrl": "/images/partners/swan-logo.png",
"category": "ai",
"subcategory": "ai"
},
{
"name": "Bitget Wallet",
"url": "https://web3.bitget.com/",
"description": "Ultimate Web3 Portal to the Crypto Universe with integrated Cross-Chain Swap, Nft Marketplace, Onramp, Dapp store, Defi, and Staking solution catering 12 million+ users across 168 countries.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/bitget.webp"
},
{
"name": "imToken",
"url": "https://token.im/",
"description": "imToken, a reliable non-custodial mobile wallet for tokens you own - cryptocurrencies, stable coins, NFTs, and more. We are inspired to make digital life equally accessible to everyone.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/imtoken.webp"
},
{
"name": "Furrend",
"url": "http://furrend.xyz/",
"description": "Furrend is a web3 pet video-sharing social network that provides the tools, resources, and infrastructure for content creators to monetize their work and engage with their community through digital assets.",
"imageUrl": "/images/partners/furrend.webp",
"category": "consumer",
"subcategory": "social"