forked from ava-labs/ecosystem-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecosystem.json
5937 lines (5937 loc) · 206 KB
/
ecosystem.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"projects": [
{
"name": "1inch",
"slug": "1inch",
"date": "2022-02-16",
"highlight": "A distributed network for various protocols, enabling the most protected operations in DeFi",
"logo": "/img/1inch.png",
"tags": [
"defi"
],
"status": "live",
"website": "https://app.1inch.io/#/43114/swap/AVAX/USDT.e",
"twitter": "https://twitter.com/1inch",
"summary": "",
"telegram": "https://t.me/OneInchNetworkNews",
"discord": "https://discord.com/invite/1inch",
"docs": "",
"github": "https://github.com/1inch",
"token": "",
"cmc": ""
},
{
"name": "Aave",
"slug": "aave",
"tags": [
"defi"
],
"status": "",
"highlight": "Open source and non-custodial liquidity protocol for earning interest on deposits and borrowing assets.",
"logo": "/img/aave.svg",
"website": "https://aave.com/",
"twitter": "https://twitter.com/aaveaave",
"telegram": "https://t.me/Aavesome",
"github": "https://github.com/aave/aave-protocol",
"discord": "https://discord.com/invite/CvKUrqM",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Aboard Exchange",
"slug": "aboard-exchange",
"date": "2022-03-01",
"highlight": "Avalanche's exchange, providing the most number of perpetual trading pairs and hedging trading strategies.",
"logo": "/img/aboard-exchange.png",
"tags": [
"api",
"exchange",
"multi-chain"
],
"status": "live",
"website": "https://aboard.exchange/trade",
"twitter": "https://twitter.com/AboardExchange",
"summary": "Aboard is an order book decentralized derivatives exchange that will bring centralized trading experience into the DeFi world. We offer the most number of perpetual trading pairs on Avalanche and Arbitrum. Traders can enjoy 0 gas fee and an ultra-smooth trading experience.",
"telegram": "https://t.me/avalancheavax",
"discord": "https://discord.com/invite/n7r73ehJtf",
"docs": "https://docs.aboard.exchange/",
"github": "https://github.com/Aboard-Exchange"
},
{
"name": "AIKON",
"slug": "aikon",
"date": "2017-07-14",
"highlight": "AIKON's ORE ID is a multi-chain Web3 auth and wallet creation solution that supports familiar social logins, SMS and email.",
"logo": "/img/aikon.svg",
"tags": [
"wallet",
"multi-chain",
"tools",
"enterprise"
],
"status": "live",
"website": "https://developer.oreid.io/",
"twitter": "https://twitter.com/TeamAIKON",
"summary": "AIKON’s ORE ID is a multi-chain Web3 auth and wallet creation solution that is compatible with Avalanche. ORE ID enables developers to provide dApp users with a simple auth and transaction signing experience using familiar logins like GMail, Facebook, SMS and more. ORE ID supports all NFT smart contracts allowing users to mint, transfer, sell and buy NFTs. AIKON is also launching ORE Vault, a B2B cryptocurrency and NFT wallet with multi-signature features. Blizzard Fund, managed by Avalanche, is AIKON’s lead Series A investor.",
"telegram": "https://t.me/orecommunity",
"discord": "https://discord.ore.network",
"docs": "https://docs.oreid.io/ore-id/",
"github": "https://github.com/TeamAikon/oreid",
"token": "$ORE",
"cmc": "https://coinmarketcap.com/currencies/ore-network/"
},
{
"name": "Aleph.Im",
"slug": "aleph-im",
"tags": [
"tools"
],
"status": "",
"highlight": "A cross-blockchain layer-2 network.",
"logo": "/img/aleph-im.svg",
"website": "https://aleph.im/#/",
"twitter": "https://twitter.com/aleph_im",
"telegram": "https://t.me/alephim",
"github": "https://github.com/aleph-im",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Alliance Block",
"slug": "alliance-block",
"tags": [
"defi"
],
"status": "",
"highlight": "A decentralized blockchain-agnostic layer 2 that converts any digital asset to a bankable product.",
"logo": "/img/alliance-block.svg",
"website": "https://allianceblock.io/",
"twitter": "https://twitter.com/allianceblock",
"telegram": "https://t.me/allianceblock",
"github": "",
"discord": "https://discord.com/invite/fB4tkF52H5",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Allnodes",
"slug": "allnodes",
"tags": [
"nodes"
],
"status": "",
"highlight": "A non-custodial platform for hosting masternodes and full nodes, as well as full staking services.",
"logo": "/img/allnodes.svg",
"website": "https://www.allnodes.com/",
"twitter": "https://twitter.com/allnodes",
"telegram": "https://t.me/allnodes",
"github": "",
"discord": "https://discord.com/invite/TAvg3PS",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Ankr",
"slug": "ankr",
"tags": [
"nodes"
],
"status": "",
"highlight": "Makes participating in, building on, and using blockchains and protocols easy and accessible.",
"logo": "/img/ankr.svg",
"website": "https://www.ankr.com/",
"twitter": "https://twitter.com/ankr",
"telegram": "https://t.me/ankrnetwork",
"github": "",
"discord": "https://discord.com/invite/uYaNu23Ww7",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Anyswap",
"slug": "anyswap",
"tags": [
"infrastructure"
],
"status": "",
"highlight": "A unified ecosystem for full circulation of digital assets, bringing more liquidity to the market.",
"logo": "/img/anyswap.svg",
"website": "https://anyswap.exchange/dashboard#/router",
"twitter": "https://twitter.com/AnyswapNetwork",
"telegram": "https://t.me/anyswap",
"github": "https://github.com/anyswap",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Ape Board",
"slug": "ape-board",
"tags": [
"defi"
],
"status": "",
"highlight": "Cross-chain DeFi Dashboard. Built by apes, for apes.",
"logo": "/img/ape-board.png",
"website": "https://apeboard.finance/dashboard",
"twitter": "https://twitter.com/ape_board",
"telegram": "https://t.me/joinchat/IgrzTnHKm-A0RwSP",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Arcade Galaxy",
"slug": "arcadegalaxy",
"tags": [
"gaming",
"arcade",
"casual"
],
"status": "In development",
"highlight": "Social game where users can host and visit eachother's created world with their customizable charachters",
"logo": "/img/arcadegalaxy.png",
"website": "https://www.arcadegalaxy.space/",
"twitter": "https://twitter.com/arcadegalaxy_?s=21",
"telegram": "",
"github": "",
"discord": "https://discord.gg/arcadegalaxy",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": "$RCADE, $LFG"
},
{
"name": "Arrow DFMs",
"slug": "arrow-dfms",
"tags": [
"defi"
],
"status": "",
"highlight": "A low-level protocol for creating and settling options on publicly available asset prices.",
"logo": "/img/arrow-dfms.svg",
"website": "https://www.arrow.markets/",
"twitter": "https://twitter.com/ArrowMarkets",
"telegram": "https://t.me/joinchat/SreZ_R2sb1zmfUlmH6FnFQ",
"github": "",
"discord": "https://discord.com/invite/QCtw7Y6Fhn",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Arweave",
"slug": "arweave",
"date": "2021-01-01",
"highlight": "With the Arweave-Avalanche integration, you can now pay for Arweave storage in AVAX.",
"logo": "/img/arweave.svg",
"tags": [
"bridge",
"multi-chain",
"nft",
"art"
],
"status": "live",
"website": "https://arweave.org/",
"twitter": "https://twitter.com/arweaveteam",
"summary": "Arweave storage is now natively available on Avalanche. Users can now pay for permanent storage using Avalanche wallets and AVAX tokens. This opens a new design space for building truly decentralized applications on Avalanche, where everything from the UI to the smart contracts to the database is decentralized. Happy building!",
"telegram": "https://t.me/arweave",
"discord": "https://discord.gg/bWPEgSAc",
"docs": "https://www.arweave.org/build",
"github": "https://github.com/ArweaveTeam/arweave",
"token": "AR",
"cmc": "https://coinmarketcap.com/currencies/arweave/"
},
{
"name": "Ascenders",
"slug": "ascenders",
"date": "2021-10-01",
"highlight": "Ascenders is the first Triple A open world Action RPG with a fully decentralized, player driven economy deployed on Avalanche.",
"logo": "/img/ascenders.png",
"tags": [
"ava-labs",
"gaming",
"play-to-earn"
],
"status": "coming soon",
"website": "https://www.ascenders.gg/",
"twitter": "https://twitter.com/PlayAscenders",
"summary": "Ascenders is an original multiplayer open-world Action RPG that brings forward influences from Zelda: Breath of the Wild and Eve Online, forging them into a fresh and stunning immersive experience and catapults them into the dynamic crypto gaming scene. The result is a new multi-platform science-fantasy world filled with danger, adventure, and exotic horizons - all to be explored and mastered. Ascenders will feature a revolutionary game economy that reimagines what a multiplayer RPG would look like if fully decentralized, and built entirely around DeFi concepts. Players would be able to trade resources in a global marketplace, creating a user-driven, self-sustaining economy.",
"telegram": "",
"discord": "http://discord.gg/ascenders",
"docs": "",
"github": "",
"token": "AGC",
"cmc": ""
},
{
"name": "Atlantis Loans",
"slug": "atlantis-loans",
"tags": [
"defi",
"lending",
"dapp",
"governance"
],
"status": "",
"highlight": "Open source and non-custodial cross-chain liquidity protocol for earning interest on deposits and borrowing assets.",
"logo": "/img/atlantis-loans.svg",
"website": "https://atlantis.loans/",
"twitter": "https://twitter.com/atlantis_loans",
"telegram": "https://t.me/AtlantisLoans",
"github": "https://github.com/atlantis-loans",
"discord": "https://discord.gg/YZJtpRw4ty",
"summary": "",
"docs": "",
"cmc": "https://coinmarketcap.com/currencies/atlantis-loans/",
"date": "",
"token": ""
},
{
"name": "Atlantis World",
"slug": "atlantisworld",
"date": "2022-02-04",
"highlight": "Building the Web3 social metaverse by connecting Web3 with social, gaming and education in one lightweight virtual world that's accessible to everybody.",
"logo": "/img/atlantisworld.png",
"tags": [
"culture",
"gaming"
],
"status": "live",
"website": "http://atlantis.world",
"twitter": "https://twitter.com/atlantis0x",
"summary": "",
"telegram": "https://t.me/atlwrld",
"discord": "https://discord.gg/atlantisworld",
"docs": "",
"github": "",
"token": "",
"cmc": ""
},
{
"name": "Atlas DEX",
"slug": "atlas-dex",
"date": "2021-09-01",
"highlight": "Atlas DEX provides a seamless trading experience for anyone looking to make native cross-chain swaps across leading blockchains.",
"logo": "/img/atlas-dex.svg",
"tags": [
"bridge",
"defi",
"dex",
"multi-chain"
],
"status": "live",
"website": "https://app.atlasdex.finance/",
"twitter": "https://twitter.com/atlas_dex",
"summary": "Atlas DEX is a cross-chain liquidity aggregator. Users can seamlessly swap over 1,500 native tokens to and from Avalanche, Solana, Ethereum, BNB Chain, Polygon and Fantom. The platform splits trades across different liquidity pools to access the best price and minimize slippage. The platform will further integrate leading blockchains and develop new products. Atlas DEX is building to improve cross-chain interoperability, making it a go-to platform for DeFi users.",
"telegram": "https://t.me/atlasdex_official",
"discord": "https://discord.gg/atlasdex",
"docs": "https://docs.atlasdex.finance/",
"github": "https://github.com/atlasdex",
"cmc": "https://coinmarketcap.com/currencies/atlas-dex/"
},
{
"name": "Avado",
"slug": "avado",
"tags": [
"nodes"
],
"status": "",
"highlight": "Plug-and-play hardware nodes for Avalanche.",
"logo": "/img/avado.svg",
"website": "https://ava.do/",
"twitter": "https://twitter.com/avadocloud",
"telegram": "https://t.me/joinchat/F_LlkBLEoDrFioPNviEpsQ",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Avalanche Bridge",
"slug": "avalanche-bridge",
"date": "2021-07-29",
"highlight": "The Avalanche Bridge, providing a fast, low cost, and secure means to move assets between chains.",
"logo": "/img/avalanche-bridge.png",
"tags": [
"ava labs",
"bridge",
"multi-chain"
],
"status": "live",
"website": "https://bridge.avax.network/login",
"twitter": "https://twitter.com/avalancheavax",
"summary": "The Avalanche Bridge (AB) is a low cost, low latency, and secure way to transfer assets from one blockchain to another. Leveraging Intel SGX and built on the back of Avalanche’s low energy and high TPS consensus algorithm, the AB provides users a smooth, quick, and inexpensive experience. Currently supporting the movement of ERC20’s from Ethereum onto the Avalanche C-Chain and back, Ava Labs has plans to advance the bridge further and increase the number of connected chains. Ava Labs designed the Avalanche Bridge on the principles that transactions across the bridge will be secure and finality will be swift. This makes Avalanche’s official bridge one of the best options to move assets onto the Avalanche C-Chain. Good Bridging.",
"telegram": "https://t.me/avalancheavax",
"discord": "https://discord.com/invite/RwXY7P6",
"docs": "https://docs.avax.network/learn/avalanche-bridge-faq",
"github": "https://github.com/ava-labs",
"token": "AVAX",
"cmc": "https://coinmarketcap.com/currencies/avalanche/"
},
{
"name": "Avalanche Explorer",
"slug": "avalanche-explorer",
"tags": [
"explorer"
],
"status": "",
"highlight": "An analytics tool that enables people to search the Avalanche blockchain.",
"logo": "/img/avalanche-explorer.svg",
"website": "https://explorer.avax.network/",
"twitter": "https://twitter.com/avalancheavax",
"telegram": "https://t.me/avalancheavax",
"github": "https://github.com/ava-labs",
"discord": "https://discord.com/invite/RwXY7P6",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Avalaunch",
"slug": "avalaunch",
"tags": [
"defi",
"ecosystem",
"tools"
],
"status": "",
"highlight": "A launchpad for new and innovative projects to prepare for launch with fair and broad distribution.",
"logo": "/img/avalaunch.svg",
"website": "https://avalaunch.app/",
"twitter": "https://twitter.com/AvalaunchApp",
"telegram": "https://medium.com/avalaunch",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Avascan",
"slug": "avascan",
"tags": [
"explorer",
"tools"
],
"status": "",
"highlight": "An independent blockchain explorer for Avalanche.",
"logo": "/img/avascan.svg",
"website": "https://avascan.info/",
"twitter": "https://twitter.com/AvascanExplorer",
"telegram": "https://t.me/AvascanExplorer",
"github": "",
"discord": "https://discord.com/invite/CQJGs5B",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Avaware",
"slug": "avaware",
"tags": [
"defi",
"nft"
],
"status": "",
"highlight": "Farming, Launchpad, and NFT Staking.",
"logo": "/img/avaware.png",
"website": "https://avaware.network/",
"twitter": "https://twitter.com/AvawareAVE",
"telegram": "https://t.me/avavaware",
"github": "",
"discord": "https://discord.com/invite/B8RTbe4yur",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Avaxtars",
"slug": "avaxtars",
"tags": [
"nft"
],
"status": "",
"highlight": "A P2E blockchain game using NFTs as gaming assets and has its own Tokenomics.",
"logo": "/img/avaxtars.png",
"website": "https://avaxtars.com/",
"twitter": "https://avaxtars.com/",
"telegram": "https://avaxtars.com/",
"github": "",
"discord": "https://avaxtars.com/",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "AVME",
"slug": "avme",
"tags": [
"nft",
"wallet"
],
"status": "",
"highlight": "Desktop Wallet for Avalanche, built in C++. Decentralized and Trustless security suite.",
"logo": "/img/avme.png",
"website": "https://avme.io/",
"twitter": "https://twitter.com/AVME_IO",
"telegram": "https://t.me/avmeio",
"github": "https://github.com/avme",
"discord": "https://discord.com/invite/avme",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Axelar",
"slug": "axelar",
"date": "2022-09-27",
"highlight": "A cross-chain communication network that connects Avalanche with other leading platforms",
"logo": "/img/axelar.png",
"tags": [
"bridge",
"multi-chain"
],
"status": "live",
"website": "https://axelar.network/",
"twitter": "https://twitter.com/axelarcore",
"summary": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.",
"telegram": "https://t.me/axelarcommunity",
"discord": "https://discord.com/invite/aRZ3Ra6f7D",
"docs": "https://docs.axelar.dev",
"github": "https://github.com/axelarnetwork",
"token": "AXL",
"cmc": "https://coinmarketcap.com/currencies/axelar/"
},
{
"name": "Baguette",
"slug": "baguette",
"tags": [
"defi"
],
"status": "",
"highlight": "A decentralized exchange on the Avalanche network.",
"logo": "/img/baguette.png",
"website": "https://baguette.exchange/",
"twitter": "https://twitter.com/Baguette_avax",
"telegram": "https://t.me/baguette_AVAX",
"github": "",
"discord": "https://github.com/baguette-exchange",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Barnbridge",
"slug": "barnbridge",
"tags": [
"defi"
],
"status": "",
"highlight": "A risk tokenizing protocol that lets you leverage or hedge your DeFi positions.",
"logo": "/img/barnbridge.svg",
"website": "https://barnbridge.com/",
"twitter": "https://twitter.com/barn_bridge",
"telegram": "",
"github": "",
"discord": "https://discord.com/invite/FfEhsVk",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Battle for Giostone",
"slug": "battleforgiostone",
"tags": [
"gaming",
"moba"
],
"status": "In development",
"highlight": "Battle For Giostone is the first authentic P2E MOBA game developed by M-Tech entertainment.",
"logo": "/img/battleforgiostone.png",
"website": "https://battleforgiostone.com/",
"twitter": "https://twitter.com/BFGiostone",
"telegram": "",
"github": "",
"discord": "https://t.co/oqqSdXp2rV",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "BENQI",
"slug": "benqi",
"tags": [
"defi"
],
"status": "",
"highlight": "A non-custodial algorithmic liquidity market protocol.",
"logo": "/img/benqi.svg",
"website": "https://benqi.fi/",
"twitter": "https://twitter.com/BenqiFinance",
"telegram": "https://t.me/BENQIFinance",
"github": "https://github.com/Benqi-fi",
"discord": "https://discord.gg/kNfnqcgj2H",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "BiFrost",
"slug": "bifrost",
"tags": [
"defi"
],
"status": "",
"highlight": "The universal multichain middleware.",
"logo": "/img/bifrost.svg",
"website": "https://thebifrost.io/",
"twitter": "https://twitter.com/bifrostio",
"telegram": "https://t.me/Bifrostnotice",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "BiLira",
"slug": "bilira",
"tags": [
"stablecoin"
],
"status": "",
"highlight": "A Turkish Lira stablecoin on Avalanche.",
"logo": "/img/bilira.svg",
"website": "https://www.bilira.co/",
"twitter": "https://twitter.com/BiLira_Official",
"telegram": "https://t.me/BiLira_Official",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Binance",
"slug": "binance",
"tags": [
"exchange"
],
"status": "",
"highlight": "The worlds biggest crypto exchange in the world by volume.",
"logo": "/img/binance.svg",
"website": "https://www.binance.com/en",
"twitter": "https://twitter.com/binanceus",
"telegram": "https://t.me/BinanceUSAnnouncements",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Bitfinex",
"slug": "bitfinex",
"tags": [
"exchange"
],
"status": "",
"highlight": "A digital asset trading platform offering services for traders and global liquidity providers.",
"logo": "/img/bitfinex.svg",
"website": "https://www.bitfinex.com/",
"twitter": "https://twitter.com/bitfinex",
"telegram": "https://t.co/8ttseB5N6M",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Bitgo",
"slug": "bitgo",
"tags": [
"custody",
"portfolio",
"institutional"
],
"status": "live",
"highlight": "Enables our clients to navigate the complex landscape of digital assets with a connected, compliant, and secure suite of solutions.",
"logo": "/img/bitgo.webp",
"website": "https://allianceblock.io/",
"twitter": "https://twitter.com/allianceblock",
"telegram": "https://t.me/allianceblock",
"github": "",
"discord": "",
"summary": "BitGo is the leader in digital asset financial services, providing institutional investors with liquidity, custody, and security solutions with over $64B in assets under custody. Founded in 2013, BitGo pioneered the multi-signature wallet and is the first digital asset company to focus exclusively on serving institutional clients. Active in both centralized and decentralized finance, BitGo offers market leading trading, lending, and borrowing services through its prime brokerage services and acts as the custodian for WBTC, with more than $19 billion in custody and circulation. In 2020, BitGo launched BitGo Portfolio and Tax, providing clients with a full-stack solution for digital assets. In 2018, it launched BitGo Trust Company, the first qualified custodian purpose-built for storing digital assets. BitGo processes approximately 20% of all global Bitcoin transactions, and supports over 400 coins and tokens. BitGo provides the security and operational backbone for more than 700 institutional clients in 50 countries, including many regulated entities and the world’s top cryptocurrency exchanges and platforms. BitGo is backed by Goldman Sachs, Craft Ventures, Digital Currency Group, DRW, Redpoint Ventures, and Valor Equity Partners.",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "BitKeep Wallet",
"slug": "bitkeepwallet",
"tags": [
"wallet"
],
"status": "",
"highlight": "BitKeep Wallet is an digital currency wallet and can send and receive SOL/SPL tokens.",
"logo": "/img/bitkeep.svg",
"website": "https://bitkeep.org/",
"twitter": "https://twitter.com/BitKeepOS",
"telegram": "",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "BitMart",
"slug": "bitmart",
"tags": [
"exchange"
],
"status": "",
"highlight": "A crypto exchange with secure crypto products and services.",
"logo": "/img/bitmart.png",
"website": "https://www.bitmart.com/",
"twitter": "https://twitter.com/BitMartExchange",
"telegram": "https://t.me/BitmartExchange",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Bitpanda",
"slug": "bitpanda",
"tags": [
"exchange"
],
"status": "",
"highlight": "Gives new users easy access to digital assets and regular users control over their portfolio.",
"logo": "/img/bitpanda.svg",
"website": "https://www.bitpanda.com/en",
"twitter": "https://twitter.com/bitpanda",
"telegram": "https://support.bitpanda.com/hc/en-us/articles/360000262720",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Blockchain Academy Chile",
"slug": "blockchain-academy-chile",
"tags": [
"ecosystem"
],
"status": "",
"highlight": "A blockchain training and education platform for LATAM.",
"logo": "/img/blockchain-academy-chile.svg",
"website": "https://www.blockchainacademy.cl/",
"twitter": "https://twitter.com/blockacademycl",
"telegram": "",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Blockchain Game Alliance",
"slug": "blockchain-game-alliance",
"tags": [
"ecosystem"
],
"status": "",
"highlight": "Committed to promoting blockchain within the game industry.",
"logo": "/img/blockchain-game-alliance.svg",
"website": "https://www.blockchaingamealliance.org/",
"twitter": "https://twitter.com/BGameAlliance",
"telegram": "",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Blockchain Research Institute",
"slug": "blockchain-research-institute",
"tags": [
"ecosystem"
],
"status": "",
"highlight": "Researching the impact of blockchain technology.",
"logo": "/img/blockchain-research-institute.svg",
"website": "https://www.blockchainresearchinstitute.org/",
"twitter": "https://twitter.com/blockchainRI",
"telegram": "",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Blocknet",
"slug": "blocknet",
"tags": [
"infrastructure"
],
"status": "",
"highlight": "Infrastructure and cross-chain dApps to interact with Avalanche subnets and smart contracts.",
"logo": "/img/blocknet.svg",
"website": "https://blocknet.co/",
"twitter": "https://twitter.com/The_Blocknet",
"telegram": "https://t.me/Blocknet",
"github": "https://github.com/blocknetdx/",
"discord": "https://discord.com/invite/mZ6pTneMx3",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "BlockVision",
"slug": "BlockVision",
"date": "2022-05-30",
"highlight": "BlockVision is a one-stop development platform and on-chain data retrieval portal for developers",
"logo": "/img/blockvision.svg",
"tags": [
"api",
"infrastructure",
"nodes",
"tools"
],
"status": "live",
"website": "https://blockvision.org/",
"twitter": "https://twitter.com/blockvisionhq",
"summary": "BlockVision is a one-stop development platform and on-chain data retrieval portal for developers that boasts impressively low-latencies and high availability due to it's distributed multi-node architecture. With our powerful HTAP engine and Data Cloud, BlockVision is able to provide a suite of enhanced FT & NFT APIs, development toolkits, high-performance node services and smart alerts to make your web 3.0 experience better and smoother.",
"telegram": "https://t.me/blockvision",
"discord": "https://discord.com/invite/Re6prK86Tr",
"docs": "https://docs.blockvision.org/blockvision/chain-apis/avalanche-api"
},
{
"name": "Bloodloop",
"slug": "bloodloop",
"tags": [
"gaming",
"fps",
"mmorpg"
],
"status": "",
"highlight": "BloodLoop is an MMO-FPS game, with a decentralized economy, inspired by the mechanics of the world's leading competitive video games.",
"logo": "/img/bloodloop.png",
"website": "https://www.bloodloop.org/",
"twitter": "https://twitter.com/BloodLoopGAME",
"telegram": "https://t.me/BloodLoopEngOfficial",
"github": "",
"discord": "https://discord.gg/8P9fQ8qtgp",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Bloq",
"slug": "bloq",
"tags": [
"nodes"
],
"status": "",
"highlight": "A suite of multi-blockchain infrastructure services built to grow as your business grows.",
"logo": "/img/bloq.svg",
"website": "https://www.bloq.com/",
"twitter": "https://twitter.com/bloqinc",
"telegram": "",
"github": "https://github.com/bloq",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Boring DAO",
"slug": "boring-dao",
"tags": [
"infrastructure"
],
"status": "",
"highlight": "A decentralized bridge that connects all blockchain assets.",
"logo": "/img/boring-dao.svg",
"website": "https://www.boringdao.com/",
"twitter": "https://twitter.com/TheBoringDAO",
"telegram": "https://t.me/boringDAO",
"github": "https://github.com/BoringDAO",
"discord": "https://discord.com/invite/zCQ2ddp",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Bridge Wallet",
"slug": "bridge-wallet",
"date": "2020-01-01",
"highlight": "The ultimate mobile wallet for Avalanche",
"logo": "/img/bridge-wallet.svg",
"tags": [
"wallet"
],
"status": "live",
"website": "https://www.mtpelerin.com/bridge-wallet/avalanche-wallet",
"twitter": "https://twitter.com/mtpelerin",
"summary": "Bridge Wallet is the ultimate self-custodial mobile app to explore and manage Avalanche assets on your phone. Buy AVAX and USDC directly on Avalanche C-Chain, exchange tokens on ParaSwap and withdraw funds in 20+ currencies back on your bank account in 171 countries.",
"telegram": "https://t.me/mtpelerinchat"
},
{
"name": "BtcTurk",
"slug": "btcturk",
"tags": [
"exchange"
],
"status": "",
"highlight": "Turkey's first and the world’s fourth cryptocurrency exchange platform.",
"logo": "/img/btcturk.svg",
"website": "https://www.btcturk.com/",
"twitter": "https://twitter.com/btcturk",
"telegram": "",
"github": "",
"discord": "",
"summary": "",
"docs": "",
"cmc": "",
"date": "",
"token": ""
},
{
"name": "Bware Labs",
"slug": "bware-labs",
"tags": [
"infrastructure"
],
"status": "",
"highlight": "An interface for Blockchain APIs consumers and node providers.",
"logo": "/img/bware-labs.jpeg",
"website": "https://bwarelabs.com/",
"twitter": "https://twitter.com/BwareLabs",
"telegram": "https://t.me/bwareLabs",
"github": "https://github.com/bwarelabs",
"discord": "https://discord.com/invite/VPkWESgtvV",