This repository was archived by the owner on Mar 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathecosystem.json
More file actions
4786 lines (4786 loc) · 219 KB
/
ecosystem.json
File metadata and controls
4786 lines (4786 loc) · 219 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": "growthepie",
"description": "The open analytics platform for the Ethereum ecosystem. We empower Base Chain builders with open and actionable metrics on usage, growth, and adoption.",
"url": "https://www.growthepie.com/chains/base",
"imageUrl": "/images/partners/growthepie.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Coinrule",
"description": "Launch fully self-custodial onchain automated trading strategies at lightning speed and with one-click UX. Team is backed by Y Combinator",
"url": "https://coinrule.com",
"imageUrl": "/images/partners/coinrule.png",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"name": "0x",
"url": "https://0x.org/",
"description": "Your one stop shop to build financial products on crypto rails. Enable faster trading, better prices and superior UX in your app.",
"imageUrl": "/images/partners/0x.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "0xPPL",
"description": "0xPPL is a web3 social platform enabling you to follow or interact with onchain activities of your peers & discover trends in a human-readable feed. Access your multi-chain portfolio across EVMs, Solana, Cosmos, and TON.",
"url": "https://0xppl.com",
"imageUrl": "/images/partners/poorvisachar.jpeg",
"category": "consumer",
"subcategory": "social"
},
{
"name": "0xSplits",
"url": "https://www.0xsplits.xyz/",
"description": "Splits is a set of simple, modular smart contracts for safe and efficient onchain payments. You can split revenue from NFT sales, recoup expenses, diversify an income stream, withhold taxes, and much more.",
"imageUrl": "/images/partners/0xSplits.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "1rpc",
"url": "https://1rpc.io",
"description": "1RPC is a private RPC relay that eradicates metadata exposure and leakage, allowing users to gain control of their interactions with the blockchain with a one-click user experience.",
"imageUrl": "/images/partners/1rpc.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "20lab",
"description": "20lab.app is a customizable ERC-20, SPL (Solana) & Sui token generator with over 17 extendable features. Test our generator for free and manage functions via token owner dashboard.",
"url": "https://20lab.app/generate/erc20-token/base/",
"imageUrl": "/images/partners/20lab.png",
"category": "infra",
"subcategory": "developer tool"
},
{
"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": "A0x",
"description": "Agentic no-code platform to build tokenized social media ai-agents in Farcaster, X, Telegram and more",
"url": "https://a0x.co",
"imageUrl": "/images/partners/a0x.png",
"category": "ai",
"subcategory": "ai"
},
{
"name": "Aave",
"url": "https://app.aave.com",
"description": "Aave Protocol is a non-custodial liquidity protocol. Users can participate as suppliers, borrowers, or liquidators, earning interest on supplied assets and borrowing in an overcollateralized manner.",
"imageUrl": "/images/partners/aave.webp",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "Across Protocol",
"url": "https://across.to/",
"description": "Across Protocol is a leading cross-chain token bridge that is secured by UMA's optimistic oracle. It is optimized for capital efficiency with a single liquidity pool, a competitive relayer landscape, and a no-slippage fee model. You can expect secure, fast and affordable cross-chain token transfers with Across.",
"imageUrl": "/images/partners/across_protocol.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"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": "Aerodrome Finance",
"url": "http://aerodrome.finance",
"description": "The central trading and liquidity marketplace on Base.",
"imageUrl": "/images/partners/aerodrome.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "AgentiPy",
"description": "AgentiPy is an open-source framework for connecting AI agents to any onchain app on Solana and Base - in Python. Instead of coding separately for each protocol, developers can access 41 protocols and 218+ actions (and growing) directly using our toolkit.",
"url": "https://agentipy.fun/",
"imageUrl": "/images/partners/agentipy.png",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "AI Agent Arena",
"description": "Enter the arena where your custom AI agents engage in electrifying prompt battles! Two agents duel in a dynamic conversation, while a third, impartial AI judges the exchange and transfers tokens on-chain to the victorious contender. Create and deploy your own AI fighters and watch as strategy and wit decide the outcome in this revolutionary competitive platform.",
"url": "https://play.agent-arena.xyz/",
"imageUrl": "/images/partners/aiagentarena.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "AIBased",
"description": "AIBased integrates AI image generation, dynamic NFTs, and analytics on Base. Partnering with Base, we offer a fast, cost-effective, and user-friendly platform for NFT creators and collectors.",
"url": "https://aibased.app",
"imageUrl": "/images/partners/aibased.png",
"category": "ai",
"subcategory": "ai"
},
{
"name": "AITV",
"description": "AITV is a 24/7 livestream of intelligent and autonomous agents across topics that adjust to what you care about most! News, finance, music, gaming, and more.",
"url": "https://aitv.gg",
"imageUrl": "/images/partners/aitv.png",
"category": "ai",
"subcategory": "ai"
},
{
"name": "Alchemy",
"url": "https://www.alchemy.com/",
"description": "Alchemy is the leading web3 developer platform. Alchemy's Account Abstraction APIs and SDK make it easy to offer seamless transactions and simple, secure accounts. Build anything on Base with Alchemy!",
"imageUrl": "/images/partners/alchemy.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Aleph.im",
"description": "Open source and agnostic Decentralized Physical Infrastructure Network providing Confidential VMs, Indexing, Web hosting, Storage, Databases, Compute, AI and VRF.",
"url": "https://aleph.im",
"imageUrl": "/images/partners/aleph.png",
"category": "infra",
"subcategory": "depin"
},
{
"name": "AlfaFrens",
"description": "AlfaFrens is a SocialFi app on Farcaster for gated alfa chat subscriptions powered by Superfluid. Subscribe to creators with $DEGEN, earn $ALFA and stake it on creators for a share of their revenue.",
"url": "https://alfafrens.com",
"imageUrl": "/images/partners/alfafrens.png",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Algebra",
"description": "Algebra is an AMM providing modular concentrated liquidity (V4) with dynamic fees and hooks to DEXes on Base",
"url": "https://algebra.finance/",
"imageUrl": "/images/partners/algebra.jpg",
"category": "defi",
"subcategory": "liquidity management"
},
{
"name": "Alien Base",
"url": "https://alienbase.xyz/",
"description": "Alien Base is building a Base trading hub for efficiently trading tokens and memecoins onchain. Offering aggregated liquidity, limit orders, yield farming and more, Alien technology helps you use Base.",
"category": "defi",
"subcategory": "dex",
"imageUrl": "/images/partners/alienbase.webp"
},
{
"name": "All That Node",
"description": "All That Node is the most comprehensive multi-chain development suite, designed to support multiple networks from a single platform.",
"url": "https://www.allthatnode.com/",
"imageUrl": "/images/partners/allthatnode.png",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "Amberdata",
"url": "https://amberdata.io",
"description": "Amberdata delivers comprehensive digital asset data and insights into blockchain networks, crypto markets, and decentralized finance, empowering financial institutions with critical data for research, trading, risk, analytics, reporting, and compliance.",
"imageUrl": "/images/partners/amberdata.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Ambire Wallet",
"url": "https://www.ambire.com/",
"description": "Ambire Wallet is an open-source self-custodial smart wallet that utilizes account abstraction, acting as a gateway to Web3 applications and providing users with secure and effortless management of their digital assets.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/ambire.webp"
},
{
"name": "Angle Protocol",
"url": "https://www.angle.money/",
"description": "Angle is a decentralized and community governed protocol. Everyone is welcome to take part in the governance of the protocol to collectively start shaping its future.",
"imageUrl": "/images/partners/angle.webp",
"category": "defi",
"subcategory": "dex"
},
{
"name": "anglez.xyz",
"description": "Abstract, generative NFT art that is customisable, fully on-chain and 100% generated by Solidity code. Created by volstrate, customised by you!",
"url": "https://www.anglez.xyz",
"imageUrl": "/images/partners/anglez.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Animoca Brands",
"url": "https://www.animocabrands.com/",
"description": "Animoca Brands and its various subsidiaries develop and publish a broad portfolio of blockchain games, traditional games, and other products",
"imageUrl": "/images/partners/animoca_brands.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Ankr",
"url": "https://www.ankr.com/",
"description": "Build on Web3 with a fast, reliable and distributed network of blockchain nodes",
"imageUrl": "/images/partners/ankr.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "Anotherblock",
"url": "https://anotherblock.io/",
"description": "anotherblock is empowering the emotional and financial connection between creators and consumers. Collectors own future streaming royalties of high-end tracks and earn royalties when they stream.",
"imageUrl": "/images/partners/anotherblock.webp",
"category": "consumer",
"subcategory": "music"
},
{
"name": "AnyCampus",
"description": "AnyCampus is a Web3 “learn-to-earn” platform that enables you to earn tokens while you learn.",
"url": "https://anycampus.io/",
"imageUrl": "/images/partners/anycampus.png",
"category": "consumer",
"subcategory": "social"
},
{
"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": "Api3",
"url": "https://api3.org/",
"description": "Api3 delivers first-party oracles that pay you — connecting real-world data directly to smart contracts while reclaiming lost value through Oracle Extractable Value (OEV).",
"imageUrl": "/images/partners/Api3.png",
"category": "infra",
"subcategory": "data"
},
{
"name": "AppliedPrimate",
"url": "https://appliedprimate.com/",
"description": "AppliedPrimate Megaforce Sentinel Collectible Card Game is an onchain PVP game featuring AppliedPrimate Sentinel NFTs that was designed under advisement from Richard Garfield, creator of MAGIC: THE GATHERING.",
"imageUrl": "/images/partners/appliedprimate.webp",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Aragon Project",
"url": "https://aragon.org/",
"description": "Aragon builds secure and flexible tools that enable anyone to launch and manage DAOs. Aragon built the first DAO framework, which secures the governance of over 15B in TVL, and recently launched the no-code Aragon App and modular Aragon OSx protocol.",
"imageUrl": "/images/partners/aragon_project.webp",
"category": "consumer",
"subcategory": "dao"
},
{
"name": "Arcadia Finance",
"description": "Arcadia built an intent-centric application where users can deposit their assets into sophisticated strategies that beat staking APRs and will dynamically suggest rebalancing actions into the highest-yielding opportunities available according to each individual’s preferences and constraints. Arcadia takes advantage of the composability of DeFi to combine different protocols in interesting ways to maximize yields while providing best-in-class execution that streamline the way users interface with underlying protocols.",
"url": "https://arcadia.finance/",
"imageUrl": "/images/partners/arcadiafinance.png",
"category": "defi",
"subcategory": "yield vault"
},
{
"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": "Arkham",
"url": "https://www.arkhamintelligence.com/",
"description": "Arkham is a crypto intelligence platform that systematically analyzes and deanonymizes blockchain transactions, showing users the people and companies behind blockchain activity, along with data and analytics about their behavior.",
"imageUrl": "/images/partners/arkham.webp",
"category": "infra",
"subcategory": "data"
},
{
"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": "ArtGridz",
"description": "Onboard anyone to crypto with ArtGridz. Own pixels forever with a groundbreaking onchain storage approach. Create, Curate, trade, and even sell custom art on our integrated marketplace. Fee's are on us!",
"url": "https://gridz.art",
"imageUrl": "/images/partners/artgridz.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Ascii Cast",
"description": "Convert webcam feeds or any videos into ASCII art Animation and Mint to Base Network",
"url": "https://asciicast.com",
"imageUrl": "/images/partners/ascii-cast.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Astaria",
"description": "Astaria is an oracle-less, intent-based, fixed-rate lending protocol supporting unlimited loan durations for ERC-20 and ERC-72. Mission: instant liquidity for any on-chain asset.",
"url": "https://www.astaria.xyz",
"imageUrl": "/images/partners/astaria.jpg",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "AuditOne & Insura",
"description": "AuditOne is an all-in-one audit platform, that offers security services, tools & risk coverage to ensure the safety and reliability of smart contracts and AI-systems. We redefine blockchain auditing by perfectly balancing quality, speed, affordability, and reliability.\nOur unique approach is tailored to the dynamic nature of the blockchain industry, ensuring we deliver excellence without compromise.\n",
"url": "https://www.auditone.io",
"imageUrl": "/images/partners/audit.png",
"category": "infra",
"subcategory": "security"
},
{
"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": "Aviator Arcade",
"description": "Aviator Arcade is a gaming platform that brings the classic arcade experience to Web3. Players can enjoy games while developers can publish their games to earn rewards.",
"url": "https://arcade.aviator.ac",
"imageUrl": "https://aviator.ac/assets/aviator_arcade.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "AWE Network",
"description": "AWE Network opens the portal to autonomous worlds",
"url": "https://awenetwork.ai",
"imageUrl": "/images/partners/awe-network.png",
"category": "ai",
"subcategory": "ai"
},
{
"name": "Axelar",
"url": "https://axelar.network",
"description": "Axelar delivers secure interchain communication. That means dApp users can interact with any asset, any application, on any chain, with one click. You can think of it as Stripe for Web3.\n\nDevelopers interact with a simple API atop a permissionless network that routes messages and ensures network security via proof-of-stake consensus.",
"imageUrl": "/images/partners/axelar.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Aylab",
"description": "Aylab is a cutting-edge Web3 traffic acquisition platform revolutionizing how web3 projects acquire traffic at scale.\n",
"url": "https://aylab.io/",
"imageUrl": "/images/partners/aylab.png",
"category": "infra",
"subcategory": "data"
},
{
"name": "B3",
"description": "B3 is a layer 3 gaming ecosystem. We believe the future of gaming is open, connected, and shaped by the players themselves.",
"url": "https://www.b3.fun/",
"imageUrl": "/images/partners/b3.svg",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Balancer",
"url": "https://balancer.fi/",
"description": "Balancer is a decentralized automated market maker (AMM) protocol built on Ethereum that represents a flexible building block for programmable liquidity.\n\nBy separating the AMM curve logic and math from the core swapping functionality, Balancer becomes an extensible AMM that can incorporate any number of swap curves and pool types.",
"category": "defi",
"subcategory": "dex",
"imageUrl": "/images/partners/balancer.webp"
},
{
"name": "Bankless Academy",
"description": "Kickstart your Web3 journey with free interactive lessons. Learn crypto fundamentals and earn onchain badges on Base as you go.",
"url": "https://app.banklessacademy.com",
"imageUrl": "/images/partners/bankless-academy.png",
"category": "consumer",
"subcategory": "social"
},
{
"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": "Bario Entertainment System",
"category": "consumer",
"subcategory": "gaming",
"description": "Bario Entertainment System (Baes) is your gateway to onchain gaming. Mint games, and play. Baes is redefining what it means to own, play, and win on Base. No limits, just pure gaming excitement.",
"url": "https://baes.so/",
"imageUrl": "/images/partners/bario.png"
},
{
"name": "Base Colors",
"description": "Base Colors is the NFT collection for every color on the internet. Own Colors. Name Colors. Base Colors.",
"url": "https://basecolors.com",
"imageUrl": "/images/partners/basecolors.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Base Token Creator",
"description": "Easily Create your own Base ERC-20 Token in just 3+1 steps without Coding.",
"url": "https://tools.smithii.io/token-creator/base",
"imageUrl": "/images/partners/smithii.png",
"category": "infra",
"subcategory": "developer tools"
},
{
"name": "Based Associates DAO",
"description": "A Nounish DAO building collective projects on Base with art, story, culture, commerce, social impact and media. Home of MoBA - The Museum of Based ARTFKTS\n",
"url": "https://www.based.associates",
"imageUrl": "/images/partners/basedassociates.png",
"category": "consumer",
"subcategory": "dao"
},
{
"name": "based.gift",
"description": "Send beautiful onchain gift cards on Base. Simple and an easy customizable way to give the gift of crypto for any occasion.",
"url": "https://based.gift",
"imageUrl": "/images/partners/basedgift.png",
"category": "consumer",
"subcategory": "nft"
},
{
"name": "Based Nebula",
"description": "Procedurally generated NFTs utilize the minter's wallet address as a seed to deterministically produce nebulae from perlin noise.",
"url": "https://nebula.foundnone.xyz",
"imageUrl": "/images/partners/based-nebulas.png",
"category": "consumer",
"subcategory": "nft"
},
{
"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": "Basenji",
"description": "Meet Basenji, the oldest dog breed in history, with Base in its name. ",
"url": "https://basenjibase.com",
"imageUrl": "/images/partners/basenji.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "BasePaint",
"url": "https://basepaint.xyz/",
"description": "BasePaint is a collaborative pixel art app. Artists come together daily to paint on a shared pixel-art canvas. The next day, the canvas is turned into a 24-hour open edition NFT mint. Once the mint concludes, that day’s artists receive a share of ETH from the mint.",
"imageUrl": "/images/partners/basepaint.webp",
"category": "consumer",
"subcategory": "creator"
},
{
"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": "Beefy",
"url": "https://beefy.com/",
"description": "Beefy automates yield farming to make DeFi easy, safe and efficient for all. By autocompounding your tokens, Beefy unlocks higher returns so you earn more of what you love.",
"imageUrl": "/images/partners/beefy.webp",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"name": "Bend",
"description": "A free payments app that allows anyone to easily send money worldwide-no bank account required.",
"category": "wallet",
"subcategory": "self-custody",
"url": "https://bend.eco",
"imageUrl": "/images/partners/bend.jpg"
},
{
"name": "Biconomy",
"url": "https://www.biconomy.io/",
"description": "Biconomy brings blockchain-agnostic, web2-like experiences to dApps in a non-custodial manner with our comprehensive software development kit which is built on top of ERC4337 and designed specifically for decentralized applications (dApps).",
"category": "wallet",
"subcategory": "account abstraction",
"imageUrl": "/images/partners/biconomy.webp"
},
{
"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": "Birdeye.so",
"description": "Birdeye is an on-chain crypto trading data aggregator that provides fair access to investment opportunities for all traders. We integrate with 200+ DEXes & AMMs on Solana, Sui, Ethereum, and other EVM chains, providing users with the most precise token and trading data they need.",
"url": "https://birdeye.so/",
"imageUrl": "/images/partners/birdeye.png",
"category": "defi",
"subcategory": "dex aggregator"
},
{
"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": "Bitbond Token Tool",
"description": "Bitbond Token Tool is a web3 app that enables users to effortlessly create, manage and multisend ERC20 / ERC1400 tokens and NFTs across leading EVM chains. Users can rely on Token Tool’s configurable smart contract templates that have been audited by CertiK instead of having to program their own smart contracts. Token Tool offers a convenient user interface as well as an API in its enterprise version.",
"url": "https://tokentool.bitbond.com/",
"imageUrl": "/images/partners/tokentool.png",
"category": "infra",
"subcategory": "developer tool"
},
{
"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": "Bitoro Network",
"description": "Bitoro is a leveraged trading protocol and aggregator for the perpetual futures market. Our goal is to unify the fragmented market under one platform with optimal prices, fees, liquidity, incentives, and unparalleled ease of use.",
"url": "https://bitoro.network/",
"imageUrl": "/images/partners/bitoro.png",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Bitte Protocol",
"description": "Bitte Protocol powers embeddable AI agents, enabling your community to seamlessly chat and transact with any smart contract.",
"url": "https://bitte.ai/",
"imageUrl": "/images/partners/bitte-protocol.png",
"category": "ai",
"subcategory": "ai"
},
{
"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": "BOB Gateway",
"description": "Bring native Bitcoin to Base with BOB Gateway: an intents-based protocol powering frictionless, programmable BTC movement into DeFi for builders and users.",
"url": "https://app.gobob.xyz/en/gateway?input-asset=BTC&output-asset=0x0555E30da8f98308EdB960aa94C0Db47230d2B9c&output-chain=8453",
"imageUrl": "/images/partners/bob.png",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Blackbird",
"url": "https://www.blackbird.xyz/",
"description": "Blackbird is a loyalty and membership platform built for the world's most exciting restaurants",
"imageUrl": "/images/partners/blackbird.webp",
"category": "consumer",
"subcategory": "real world"
},
{
"name": "Blast by Bware Labs",
"url": "https://blastapi.io/",
"description": "Blast is a decentralized API platform with best-in-class response times and availability. It leverages the power of hundreds of node providers and advanced routing algorithms for unmatched service quality!",
"imageUrl": "/images/partners/blast.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "BlockAI",
"category": "ai",
"subcategory": "ai",
"description": "BlockAI combines blockchain and AI to offer decentralized access to innovative tools like Text and image generation, video summarization, games, etc.",
"url": "https://base.blockai.dev",
"imageUrl": "/images/partners/blockai.png"
},
{
"name": "BlockClock",
"description": "BlockClock is a decentralized, community-powered timekeeping network that uses user-verified device timestamps to establish a trustless, on-chain standard of time.",
"url": "https://demo.stxn.io/",
"imageUrl": "/images/partners/blockclock.svg",
"category": "consumer",
"subcategory": "real world"
},
{
"name": "Blockdaemon",
"url": "https://blockdaemon.com",
"description": "The institutional-grade blockchain infrastructure for Web3. Blockdaemon provides an end-to-end suite of blockchain tools, including dedicated nodes, APIs, staking, liquid staking, MPC tech, and more.",
"imageUrl": "/images/partners/blockdaemon.webp",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "BLOCKLORDS",
"description": "BLOCKLORDS is a player-driven MMO medieval grand strategy game where your decisions and skills shape the world and narrative. Choose from several playstyles, including farming, fighting, resource management, and ruling, and forge your own destiny as your Hero.",
"url": "https://blocklords.com/",
"imageUrl": "/images/partners/blocklords.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"name": "Blocknative",
"url": "https://onboard.blocknative.com",
"description": "Blocknative's Web3 Onboard is an open-source library that enables dapps to easily connect 40+ wallets, preview transactions, deliver real-time notifications, and more through a great developer UX.",
"imageUrl": "/images/partners/blocknative.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Blockops Network",
"url": "https://www.blockops.network/",
"description": "BlockOps simplifies Web3 infrastructure with scalable RPCs, streamlined node deployment, and real-time observability. Through tools like Mission Control and Telescope, it accelerates blockchain operations for developers and node operators across Ethereum, Base, and emerging appchains.",
"imageUrl": "/images/partners/blockops.png",
"category": "infra",
"subcategory": "developer tool,node provider"
},
{
"name": "BlockPI Network",
"description": "BlockPI is a top infra provider in APAC. With 6+ years of experience, BlockPI currently offers one-stop high performance infra services including but not limited to RPC service, validator service, relayer service, account abstraction services across 50+ networks and helps in building the infras for more than 10 public blockchains (Berachain, Blast, Merlin Chain, Taiko, ZetaChain, etc) as their official infra partner. BlockPI also closely partners with over 300+ well-known projects and developers communities. With millions of public users and over 35,000 registered users, BlockPI stably processes 60B+ monthly requests.",
"url": "https://blockpi.io/",
"imageUrl": "/images/partners/blockpi.png",
"category": "infra",
"subcategory": "node provider"
},
{
"name": "Blockscout",
"url": "https://www.blockscout.com/",
"description": "Blockscout is a comprehensive open-source tool for viewing blockchain data, including transactions, addresses, and contracts. Plus, it offers easy-to-use APIs.",
"imageUrl": "/images/partners/blockscout.webp",
"category": "infra",
"subcategory": "data"
},
{
"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": "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": "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": "Bondi Finance",
"description": "Bondi tokenizes publicly traded bonds to lift the barriers in fixed-income investing and deliver stable yields that are uncorrelated with crypto markets.",
"url": "https://www.bondifinance.io",
"imageUrl": "/images/partners/BondiFinance.png",
"category": "defi",
"subcategory": "yield vault"
},
{
"name": "Bonfire",
"url": "https://www.bonfire.xyz/",
"description": "Bonfire is a no-code website builder and community platform for web3 creators. Bonfire’s toolkit lets creators design custom drops, and offer fans exclusive content and gated experiences on their own branded website.",
"imageUrl": "/images/partners/bonfire.webp",
"category": "consumer",
"subcategory": "creator"
},
{
"name": "Bountycaster",
"description": "Easily post and discover bounties and jobs on Farcaster. Build onchain reputation for work completed with attestations issued via EAS on Base",
"url": "https://bountycaster.xyz/",
"imageUrl": "/images/partners/bountycaster.png",
"category": "consumer",
"subcategory": "social"
},
{
"name": "Brave",
"url": "https://brave.com",
"description": "Brave is on a mission to protect your privacy online. We make a suite of internet privacy tools—including our browser and search engine—that shield you from the ads, trackers, and other creepy stuff trying to follow you across the web.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/brave.webp"
},
{
"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": "Bridge",
"url": "https://bridge.xyz",
"description": "APIs to move into, out of, and between any form of a dollar.",
"imageUrl": "/images/partners/bridge.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"name": "Bright Moments",
"description": "Bright Moments is a digital art gallery that works with generative and AI artists to help them produce iconic real world experiences of their art.",
"url": "https://app.brightmoments.io",
"imageUrl": "/images/partners/brightmoments.png",
"category": "consumer",
"subcategory": "creator"
},
{
"name": "BSX",
"description": "BSX is developing the fastest, simplest, and most secure perpetuals DEX on the market. Backed by Coinbase Ventures, Blockchain Capital, and other prominent crypto VC investors.",
"url": "https://www.bsx.exchange",
"imageUrl": "/images/partners/bsx.png",
"category": "defi",
"subcategory": "dex"
},
{
"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": "Bungee",
"url": "https://Bungee.Exchange",
"description": "Bungee integrates bridges & DEXs to help you find the best route across 13+ chains.",
"imageUrl": "/images/partners/bungee.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Bunni",
"url": "https://bunni.xyz/?chain=base",
"description": "Bunni is the most advanced DEX ever built. Bunni maximizes LP profits in all market conditions using its first-of-its-kind Shapeshifting Liquidity and features like rehypothecation & dynamic swap fee.",
"imageUrl": "/images/partners/bunni.png",
"category": "defi",
"subcategory": "dex"
},
{
"name": "Burner",
"description": "Burner is a low cost hardware wallet designed for gifting crypto. It works entirely through your mobile web browser and NFC, no app needed.",
"url": "https://burner.pro/",
"imageUrl": "/images/partners/burner.png",
"category": "wallet",
"subcategory": "self-custody"
},
{
"name": "Burve Protocol",
"description": "Burve Protocol is a next-generation AMM and Launchpad, designed to revolutionize DeFi with innovative liquidity, launch, and lending solutions for various crypto use cases.",
"url": "https://app.burve.io/",
"imageUrl": "/images/partners/burve.png",
"category": "defi",
"subcategory": "lending/borrowing"
},
{
"name": "Cat Town",
"description": "Cat Town is an idle economy game where you can collect cats, earn rewards and embark on adventures! Discover tradable items and unlock soulbound NFTs and achievements!",
"url": "https://www.cat.town",
"imageUrl": "/images/partners/cattown.png",
"category": "consumer",
"subcategory": "gaming"
},
{
"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": "CBomber",
"category": "consumer",
"subcategory": "gaming",
"description": "Classic Bomb Game with AI Agents & Web3. Join PVP & PVE battles, team up with CBomber Girl AI Agent, your smart companion who plays, supports, and rewards you. Level up your game with AI-powered fun.",
"url": "https://cbomber.io/",
"imageUrl": "/images/partners/cbomber.png"
},
{
"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": "Celer Network",
"url": "https://celer.network/",
"description": "Celer Network is a blockchain interoperability protocol that allows users to seamlessly access a diverse range of tokens, DeFi protocols, GameFi applications, NFT marketplaces, and more across multiple blockchains with just one click.",
"imageUrl": "/images/partners/celer_network.webp",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Center",
"description": "Real-time blockchain data, delivered instantly",
"url": "https://center.app/",
"imageUrl": "/images/partners/center-logo.png",
"category": "infra",
"subcategory": "data"
},
{
"name": "Chainbase Network",
"description": "Chainbase is the first omnichain data network powering the machine economy. It operates as a modular layer enabling interoperability and programmability between cross-chain data. It is designed to provide a trustless, permissionless, and permanent data access environment for Crypto and AI by building a global supercluster.",
"url": "https://chainbase.com/",
"imageUrl": "/images/partners/chainbase.png",
"category": "infra",
"subcategory": "data"
},
{
"name": "Chainge",
"description": "One marketplace. All Crypto.",
"url": "https://dapp.chainge.finance",
"imageUrl": "/images/partners/chainge.png",
"category": "infra",
"subcategory": "bridge"
},
{
"name": "Chainlink",
"url": "https://chain.link/",
"description": "Chainlink is the industry-standard Web3 services platform connecting the people, businesses, and data of today with the Web3 world of tomorrow.",
"imageUrl": "/images/partners/chainlink.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "ChainSafe Gaming",
"url": "https://gaming.chainsafe.io/",
"description": "We empower creators. From digital collectibles to in-game assets, incentive mechanisms, and everything in between, change how your players own, create, and get rewarded with ChainSafe Gaming.",
"imageUrl": "/images/partners/chainsafe_gaming.webp",
"category": "infra",
"subcategory": "developer tool"
},
{
"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": "Cielo",
"url": "https://app.cielo.finance",
"description": "The most powerful onchain wallet tracking platform. Retail, degens, investors, and onchain researchers all use Cielo to better understand the blockchain. Track up to 250 wallets for free.",
"imageUrl": "/images/partners/cielo.webp",
"category": "infra",
"subcategory": "data"
},
{
"name": "Civic",
"description": "Civic is a tokenized identity solution for the verifiable web, empowering people to privately manage their identities across chains with an on-chain representation of their reusable identity. ",
"url": "https://www.civic.com/",
"imageUrl": "/images/partners/civic.png",
"category": "infra",
"subcategory": "identity"
},
{
"name": "CleanApp",
"description": "Global, distributed and verifiable tracing/mapping networks for reporting an issue and finding resolvers",
"url": "https://www.cleanapp.io/",
"imageUrl": "/images/partners/cleanapp.png",
"category": "consumer",
"subcategory": "ai"
},
{
"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": "Codeslaw",
"description": "Codeslaw is a code search engine for verified smart contracts on Base, Ethereum and beyond to help developers find and learn from verified and live smart contracts",
"url": "https://codeslaw.app",
"imageUrl": "/images/partners/codeslaw.png",
"category": "infra",
"subcategory": "security"
},
{
"name": "Coin Wallet",
"url": "https://coin.space",
"description": "Coin Wallet is a self-custodial multicurrency wallet for multiple platforms. Easy way to manage your Base assets.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/coinwallet.png"
},
{
"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": "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": "Coinbase Commerce",
"url": "https://www.coinbase.com/commerce",
"description": "Learn how to securely accept Bitcoin, Litecoin, Ethereum, and other cryptocurrencies with Coinbase Commerce. Get started in minutes.",
"imageUrl": "/images/partners/commerce.webp",
"category": "consumer",
"subcategory": "payments"
},
{
"name": "Coinbase Onramp",
"url": "https://www.coinbase.com/developer-platform/products/onramp",
"description": "Let your users buy or transfer digital assets with the most trusted name in crypto.",
"imageUrl": "/images/partners/pay.webp",
"category": "onramp",
"subcategory": "centralized exchange"
},
{
"name": "Coinbase Prime",
"url": "https://www.coinbase.com/prime",
"description": "Coinbase Prime is a full-service prime brokerage platform with everything that institutions need to execute trades and custody assets at scale.",
"imageUrl": "/images/partners/prime.webp",
"category": "onramp",
"subcategory": "centralized exchange"
},
{
"name": "Coinbase Wallet",
"url": "https://www.coinbase.com/wallet",
"description": "The easiest and most secure crypto wallet and dapp browser. Your gateway to the decentralized web.",
"category": "wallet",
"subcategory": "self-custody",
"imageUrl": "/images/partners/wallet.webp"
},
{
"name": "CoindPay",
"description": "CoindPay is a decentralized payments and compound finance infrastructure.",
"url": "https://coindpay.xyz",
"imageUrl": "/images/partners/coindpay.png",
"category": "consumer",
"subcategory": "payments"