-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathecosystem.json
3097 lines (3097 loc) · 108 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
{
"OmniBTC": {
"description": "OmniBTC is a decentralized cross-chain bridge and lending platform, aiming to connect and unify all the on-chain liquidity. ",
"content": "OmniBTC is the ultimate cross-chain bridge and lending platform that unifies all on-chain liquidity using interoperability protocols such as LayerZero, Wormhole, and Celer Network, etc. Allowing users to bridge and lend any token on any chain without interacting with multiple protocols, DEX, and bridges. ",
"url": "https://www.omnibtc.finance/",
"github": "https://github.com/OmniBTC",
"discord": "https://discord.gg/fz8ZkDJgPB",
"telegram": "/",
"twitter": "https://x.com/OmniBTC",
"contact": "https://t.me/affersy",
"slug": "omnibtc",
"keywords": [
"Bridge",
" Lending",
" Omnichain"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"Lending",
"Swap Aggregator"
]
],
"languages": [
"Solidity",
"Sui Move"
],
"tags": [
"Mainnet"
]
},
"LYNC": {
"description": "Modular layer 2 on movement empowering move builders",
"content": "LYNC is modular layer 2 on movement with core developers modules to unlock scalability, accessibility and security in any distributive environment.",
"url": "lync.world",
"github": "https://github.com/LYNC-WORLD/",
"discord": "https://discord.com/invite/lyncworld",
"telegram": "https://t.me/+T9Nb2o5lvK4zYzhl",
"twitter": "https://x.com/Lyncworld",
"contact": "https://t.me/vishNFT",
"slug": "lync",
"keywords": [
"movement l2",
" web3 dev tools",
" l2",
" ecosystem",
" web3 infra"
],
"categories": [
"Other",
"Infrastructure",
"Gaming",
"Analytics",
"Wallet"
],
"subcategories": [
[
"Other"
],
[
"Layer 2"
],
[],
[
"Data",
"Charts"
],
[
"Other"
]
],
"languages": [
"Aptos Move"
],
"tags": [
"Devnet",
" Testnet",
" Mainnet"
]
},
"Razor Wallet": {
"description": "Razor Wallet: Your Sleek Companion on Movement",
"content": "Building Native Solutions for DeFi and Infrastructure on Movementlabsxyz.",
"url": "https://razorwallet.xyz/",
"github": "https://github.com/razorlabsorg",
"discord": "https://discord.gg/wdv9sGTheX",
"telegram": "",
"twitter": "https://twitter.com/RazorDAO",
"contact": "",
"slug": "razor-wallet",
"keywords": [
"Wallet",
"M1",
"M2",
"Native",
"Ecosystem"
],
"categories": [
"Wallet"
],
"subcategories": [
[
"Extension",
"Other"
]
],
"languages": [
"Rust",
"Sui Move",
"Aptos Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Lexer Market": {
"description": "Long, Short, Swap Perpetual Everything ",
"content": "Decentralized perpetual exchange for Forex, Crypto, NFT & more.",
"url": "https://www.lexer.markets/",
"github": "https://github.com/interest-protocol",
"discord": "https://discord.com/invite/QUCRBYD6uc",
"telegram": "",
"twitter": "https://twitter.com/LexerMarkets",
"contact": "",
"slug": "lexer-market",
"keywords": [
"Perpetuals",
"Dex",
"Ecosystem"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"Perpetuals",
"Other"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Curvance": {
"description": "Modular Protocol for Optimized Liquidity Management",
"content": "Curvance is a modular protocol for optimized liquidity management, serving as the interoperability layer of DeFi. With integrations on multiple blockchains, Curvance simplifies the multichain experience through a unified interface, allowing users to identify and capitalize on opportunities across any chain. Secured by a dual oracle model and dynamic liquidation engine, Curvance unlocks the capital efficiency of yield-bearing assets and ERC-20 tokens.",
"url": "https://www.curvance.com",
"github": "https://github.com/curvance",
"discord": "https://discord.gg/curvance",
"telegram": "https://t.me/CurvanceChat",
"twitter": "https://x.com/curvance",
"contact": "https://x.com/0xmai",
"slug": "Curvance",
"keywords": [
"defi",
" lending",
" borrowing",
" yield",
" liquidity"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"Lending",
"Yield Aggregator"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet"
]
},
"Nightly Connect": {
"description": "Wallet Adapter & Set of ready-to-use tools for building mobile dApps",
"content": "Nightly Connect is a permissionless, open-source solution that serves as both a wallet adapter and a set of ready-to-use tools for building dApps, enabling connections through QR codes or deep links. Nightly Connect provides solutions to both wallets and dApps. It not only enables easier connections to extension and mobile dApps, but also integrates wallets into dApps.",
"url": "https://nightly.app/connect",
"github": "https://github.com/nightly-labs/connect",
"discord": "https://discord.com/invite/7nhFHA6yZq",
"telegram": "https://t.me/nightly_app",
"twitter": "https://twitter.com/Nightly_app",
"contact": "https://t.me/KCyrek",
"slug": "nightly-connect",
"keywords": [
"nightly",
"connect",
"QRcode",
"deep-link",
"mobile",
"wallet adapter"
],
"categories": [
"Other"
],
"subcategories": [
[
"Infrastructure",
"Mobile"
]
],
"languages": [
"Rust"
],
"tags": [
"Mainnet"
]
},
"Xebra Trade": {
"description": "Superfast perpetuals trading on-chain",
"content": "",
"url": "https://www.xebra.trade/",
"github": "",
"discord": "",
"telegram": "",
"twitter": "https://twitter.com/xebratrade",
"contact": "",
"slug": "xebra-trade",
"keywords": [
"Dex",
"Perpetual",
"Ecosystem",
"Native"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"Perpetuals",
"Other"
]
],
"languages": [
"Rust",
"Sui Move",
"Aptos Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Hyperlane": {
"description": "Connecting modular expansion with permissionless interop ⏩",
"content": "Hyperlane is the first interoperability layer that enables you to permissionlessly connect any blockchain, out-of-the-box.",
"url": "https://www.hyperlane.xyz/",
"github": "https://github.com/hyperlane-xyz",
"discord": "http://discord.gg/hyperlane",
"telegram": "",
"twitter": "https://twitter.com/Hyperlane_xyz",
"contact": "",
"slug": "hyperlane",
"keywords": [
"interoperability",
"bridge",
"Ecosystem"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Bridges",
"Other"
]
],
"languages": [
"Rust"
],
"tags": [
"Testnet",
"Devnet"
]
},
"IDOswap": {
"description": "DeFi's platform offers personalized commissions, token creation, betting rewards and more.",
"content": "IDOswap is revolutionizing DeFi trading on the Movement Labs blockchain. By seamlessly integrating concentrated liquidity pools into its advanced wallet solution, IDOswap empowers users with personalized fees, token creation capabilities, and rewarding staking opportunities. Explore permissionless pools for superior volume, higher APR and minimal slippage. Choose concentrated liquidity pools for reduced slippage and flexible fees. Participate in staking to earn rewards and increase liquidity. ",
"url": "http://idoswap.io/",
"github": "",
"discord": "",
"telegram": "https://t.me/IDOswap",
"twitter": "https://twitter.com/IDOswapio",
"contact": "https://t.me/valeravlasyuk",
"slug": "idoswap",
"keywords": [],
"categories": [
"DeFi"
],
"subcategories": [
[
"DEX"
]
],
"languages": [
"Aptos Move"
],
"tags": [
"Testnet"
]
},
"Flex Protocol": {
"description": "The First Liquidity DEX in Move Ecosystem, supporting Games and Fully-on-chain Game.",
"content": "Flex offers a unique mechanism for trading NFTs and SFTs via AMM, enabling immediate swaps of diversified portfolios. Its portfolio swap feature allows for efficient trading of gaming assets and characters within the Move ecosystem. Additionally, Flex provides a DEX as a Service (DaaS) via API, allowing for perpetual contracts on various assets, including gaming assets and memes.",
"url": "https://www.flextech.xyz",
"github": "https://github.com/flex-protocol",
"discord": "",
"telegram": "",
"twitter": "https://twitter.com/0xFlexTech",
"slug": "0xFlexTech",
"keywords": [],
"categories": [
"Infrastructure",
"DeFi"
],
"subcategories": [
[
"DEX"
]
],
"languages": [
"Sui Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Desig": {
"description": "The First OmniChain Smart Multisig",
"content": "Experience the first Omnichain Smart Multisig wallet that streamlines treasury ops. Watch your funds flourish with intuitive tracking, smart allocation & insightful cashflow reports. ",
"url": "https://desig.io/",
"github": "https://github.com/Desig-Labs",
"discord": "https://discord.gg/pZDY9mt5YQ",
"telegram": "",
"twitter": "https://twitter.com/DesigLabs",
"contact": "",
"slug": "desig",
"keywords": [
"Wallet",
"Multisig",
"Ecosystem"
],
"categories": [
"Wallet"
],
"subcategories": [
[
"Extension",
"Multisig",
"Other"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Baptswap": {
"description": "Baptswap is a Decentralized Exchange (DEX) bringing support for fee-on-transfer solutions within a MOVE-based blockchain environment.",
"content": "Baptswap is a decentralized exchange (DEX) operating on the Aptos Network, enabling peer-to-peer cryptocurrency exchanges without the need for trusted intermediaries. Baptswap it the first DEX to introduce the fee-on-transfer model to Aptos, enabling teams to apply a fee on each transfer of their token. These fees can be allocated towards various purposes based on each individual team's needs and financial model. Baptswap uses an automated market maker (AMM) model, where users can trade against a liquidity pool of two assets, rather than an order book of buy and sell orders. Liquidity providers can earn fees by depositing their tokens into the pool, and traders can swap any token pair supported by the protocol. Baptswap handles the price calculations and slippage adjustments automatically, making trading fast and simple. Baptswap is leveraging the advantages of the Aptos Network and the MOVE language, through a user-friendly and innovative DEX experience for the DeFi users on Aptos.",
"url": "https://Baptswap.com",
"github": "https://github.com/Baptswap",
"discord": "",
"telegram": "https://t.me/BAPT_Labs",
"twitter": "https://x.com/Baptswap",
"contact": "https://t.me/captainsend",
"slug": "baptswap",
"keywords": [
"dex",
" fee-on-transfer"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"DEX"
]
],
"languages": [
"Aptos Move"
],
"tags": [
"Devnet"
]
},
"MovementSwap": {
"description": "A testnet Aptos and Sui protocol for Movement",
"content": "Movementswap is a decentralized exchange on the Movement Network, designed for trading generic digital assets. It allows users to swap between different types of Coins, provide liquidity to earn rewards, and participate in incentivized liquidity. Movementswap is built to be fast and user-friendly, aiming to provide a smooth trading experience.",
"url": "https://movementlabs.xyz",
"github": "https://github.com/movementlabsxyz/movement-swap-interface",
"discord": "https://discord.gg/movementlabs",
"telegram": "https://t.me/movementlabsxyz",
"twitter": "https://x.com/movementlabsxyz",
"contact": "https://t.me/franciskthomas",
"slug": "movement-swap",
"keywords": [
"movement",
"labs",
"ecosystem",
"blockchain",
"layer 1",
"layer 2"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"DEX"
]
],
"languages": [
"Aptos Move",
"Sui Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Interest Protocol": {
"description": "Concentrated Liquidity Automated Market Maker.",
"content": "Swap, provide liquidity, create coins, airdrop or build on top of Interest Protocol using hooks.",
"url": "https://movement.interestprotocol.com/",
"github": "https://github.com/interest-protocol",
"discord": "https://discord.com/invite/interestprotocol",
"telegram": "https://t.me/interestprotocol",
"twitter": "https://twitter.com/IPXMovement",
"slug": "interest-protocol",
"keywords": [
"CLAMM",
"DEX",
"Liquidity Providers",
"Swap",
"Pools"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"DEX"
]
],
"languages": [
"Sui Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Gilder": {
"description": "Web3 community platform for Gamers, Anime Fans, and more which offer forums, chat,and gaming tools.",
"content": "Gilder is the place to find the latest gaming news, announcements and analysis. Unlock your gaming potential",
"url": "https://gilder.io/",
"github": "",
"discord": "",
"telegram": "https://t.me/+ovzpSXQsYn5mYTlh",
"twitter": "https://x.com/gildersui",
"slug": "gilder",
"keywords": [
"Community",
"Gaming",
"Anime",
"Web3"
],
"categories": [
"Gaming"
],
"subcategories": [
[
"DAO",
"Other"
]
],
"languages": [
"Sui Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Pyth": {
"description": "The Pyth network is a first-party financial oracle network designed to provide low-latency real-world data to multiple blockchains in a secure and transparent manner.",
"content": "Pyth delivers real-time market data for crypto, equities, FX, and commodities. Major financial institutions—including some of the world's biggest exchanges, market makers, and trading firms—publish their data directly to the network. Supercharge your application by accessing the most accurate, lowest-latency, and highest-resolution data directly from these first-party sources on Pyth.",
"url": "https://pyth.network/",
"github": "https://github.com/pyth-network",
"discord": "https://discord.gg/PythNetwork",
"telegram": "https://t.me/Pyth_Network",
"twitter": "https://twitter.com/PythNetwork",
"slug": "pyth-network",
"keywords": [
"Oracle",
"Infrastructure",
"Web3",
"onchain"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Oracle"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Supra Oracles": {
"description": "Supra is a decentralized cross-chain oracle solution.",
"content": "Supercharging Web3 for a better, decentralized future. Web3 needs faster, more secure, more decentralized blockchain infrastructure. That's what we're building. With 5+ years of R&D and a series of technical breakthroughs, we're building native cross-chain solutions to help your smart contracts and blockchain apps work better. We're not bragging. We just build better.",
"url": "https://supra.com/",
"github": "TODO",
"discord": "https://discord.com/invite/supraoracles",
"telegram": "https://t.me/SupraOracles",
"twitter": "https://twitter.com/SUPRA_Labs",
"slug": "supra-oracles",
"keywords": [
"Oracle",
"Infrastructure",
"Web3",
"onchain"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Oracle"
]
],
"languages": [
"Solidity",
"Aptos Move",
"Sui Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"GoGoPool": {
"description": "Subnets Made Easy. Launch a validator node or stake AVAX instantly.",
"content": "Participate in AVAX staking rewards with GoGoPool. Stake your AVAX assets to get ggAVAX, earn rewards, and contribute to the growth of the first decentralized staking protocol on Avalanche. Earn more than validating solo. Stake GGP, get matched with AVAX, and launch your node with a Minipool. Use your GGP rewards to gain AVAX delegations.",
"url": "https://www.gogopool.com/",
"github": "https://github.com/multisig-labs/",
"discord": "https://discord.com/invite/4fNtjkyuNw",
"telegram": "",
"twitter": "https://twitter.com/GoGoPool_",
"slug": "gogopool",
"keywords": [
"Liquid Staking",
"Avalanche",
"Sbunets",
"onchain",
"LST"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"LST"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Gorillaz": {
"description": "The most epic gorilla community on Movement.",
"content": "Gorilla moverz is an epic community of gorillas on Movement, and together WAGMI.",
"url": "https://www.gorillamoverz.xyz/",
"github": "https://github.com/AltayDev",
"discord": "https://discord.gg/yWNEcv8jxf",
"telegram": "",
"twitter": "https://twitter.com/GorillaMoverz",
"slug": "gorillaz",
"keywords": [
"Gorilla",
"Community",
"WAGMI",
"NFT",
"Movement"
],
"categories": [
"NFT"
],
"subcategories": [
[
"Art"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Avalanche": {
"description": "Build anything you want, any way you want on the lightning fast, scalable blockchain that wont let you down.",
"content": "Avalanche is the future-proof blockchain built to scale. Build any thing you want, any way you want on the most developer-friendly Layer 1",
"url": "https://www.avax.network",
"github": "https://github.com/ava-labs",
"discord": "https://discord.com/invite/avax",
"telegram": "https://t.me/avalancheavax",
"twitter": "https://x.com/avax",
"contact": "",
"slug": "avalanche",
"keywords": [
"avalanche",
"Subnet",
"EVM",
"blockchain",
"layer 1",
"layer 2"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Layer 1",
"Layer 2"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Near": {
"description": "Delivering on the promises of Web3, with Chain Abstraction.",
"content": "NEAR is the chain abstraction stack, empowering builders to create apps that scale to billions of users and across all blockchains.",
"url": "https://near.org/",
"github": "https://github.com/near",
"discord": "near.chat",
"telegram": "https://t.me/cryptonear",
"twitter": "https://twitter.com/NEARProtocol",
"contact": "",
"slug": "near",
"keywords": [
"Data availability",
"ecosystem",
"blockchain",
"layer 1",
"near"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Layer 1"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Celestia": {
"description": "The first modular blockchain network",
"content": "Celestia is a modular data availability network that makes it easy for anyone to securely launch their own blockchain.",
"url": "https://celestia.org/",
"github": "https://github.com/celestiaorg",
"discord": "https://discord.com/invite/YsnTPcSfWQ",
"telegram": "https://t.me/CelestiaCommunity",
"twitter": "https://twitter.com/CelestiaOrg",
"contact": "",
"slug": "celestia",
"keywords": [
"celestia",
"Data availability",
"ecosystem",
"blockchain",
"IBC"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Layer 1",
"Data Availability",
"Other"
]
],
"languages": [
"Rust"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Avail": {
"description": "Accelerating the unification of web3",
"content": "Avail is a Web3 infrastructure layer that allows modular execution layers to scale and interoperate in a trust minimized way.",
"url": "https://razorwallet.xyz/",
"github": "https://github.com/availproject",
"discord": "https://discord.gg/availproject",
"telegram": "t.me/AvailCommunity",
"twitter": "https://twitter.com/AvailProject",
"contact": "",
"slug": "avail",
"keywords": [
"avail",
"Data availability",
"ecosystem",
"blockchain",
"layer 1"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Layer 1",
"Data Availability",
"Other"
]
],
"languages": [
"Rust"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Benqi": {
"description": "Seamless staking and lending for Avalanche",
"content": "BENQI is a suite of decentralized finance protocols built on Avalanche. It consists of the BENQI Markets, BENQI Liquid Staking and Ignite.",
"url": "https://benqi.fi/",
"github": "https://github.com/Benqi-fi",
"discord": "https://discord.com/invite/jyPAjZjwk6",
"telegram": "https://t.me/benqifinance_announcements",
"twitter": "https://twitter.com/BenqiFinance",
"contact": "",
"slug": "benqi",
"keywords": [
"Liquid Staking",
"Defi",
"Lending",
"LST",
"Ecosystem"
],
"categories": [
"DeFi"
],
"subcategories": [
[
"Lending",
"LST",
"Other"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"IDOwallet": {
"description": "DeFi on Movement Labs blockchain with replayable transactions, swaps, stakes, portfolio, incentives.",
"content": "IDOwallet is an advanced decentralized finance (DeFi) solution built on the Movement Labs blockchain. It provides users with a range of features including replayable transactions, optimized swaps, token creation capabilities, a staking marketplace, a portfolio management dashboard, an airdrop claim interface, and a built-in incentive program. These features are designed to provide users with a seamless and rewarding experience within the DeFi ecosystem.",
"url": "http://idowallet.xyz/",
"github": "",
"discord": "",
"telegram": "https://t.me/idowallet_co",
"twitter": "https://x.com/idowallet?s=21",
"contact": "https://t.me/valeravlasyuk",
"slug": "idowallet",
"keywords": [],
"categories": [
"Wallet"
],
"subcategories": [
[
"Extension"
]
],
"languages": [
"Aptos Move",
"Sui Move"
],
"tags": [
"Testnet"
]
},
"Seam Money": {
"description": "Concentrated Liquidity AMM on aptos and movementlabsxyz",
"content": "We believe the future of DeFi is composability across pools, protocols, and chains. With Seam Money you can permissionlessly create custom vaults to hedge all your DeFi positions in one place.",
"url": "https://www.seam.money/",
"github": "https://github.com/SeamMoney",
"discord": "http://eee.ar/seam",
"telegram": "",
"twitter": "https://twitter.com/SeamMoney",
"contact": "",
"slug": "seam-money",
"keywords": [
"Defi",
"Infrastructure",
"Ecosystem"
],
"categories": [
"Infrastructure"
],
"subcategories": [
[
"Other"
]
],
"languages": [
"Aptos Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Zokyo": {
"description": "Protect your innovations and investments by partnering with a Web3 cybersecurity leader",
"content": "Web3 cybersecurity demands a multi-pronged approach. We take an adversary-focused approach to identify complex vulnerabilities before you move your blockchain project into production or onto the mainnet.",
"url": "https://www.zokyo.io/",
"github": "",
"discord": "",
"telegram": "",
"twitter": "https://twitter.com/zokyo_io",
"contact": "",
"slug": "zokyo",
"keywords": [
"Security",
"Audit",
"Infrastructure",
"Ecosystem"
],
"categories": [
"Analytics"
],
"subcategories": [
[
"Data",
"Audit",
"Other"
]
],
"languages": [
"Solidity",
"Aptos Move",
"Sui Move"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Mintify": {
"description": "The NFT Orderbook: A Fast Interface and Execution Engine For NFT Trading",
"content": "Pushing the boundaries of Blockchain and NFT tech. We're committed to building innovative products and unique trading experiences for all NFT Economies of the future.",
"url": "https://mintify.xyz/",
"github": "",
"discord": "discord.gg/mintify",
"telegram": "",
"twitter": "https://twitter.com/mintify",
"contact": "",
"slug": "mintify",
"keywords": [
"NFT",
"MarketPlace",
"Art",
"Ecosystem"
],
"categories": [
"NFT"
],
"subcategories": [
[
"Marketplace",
"Other"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Ultiverse": {
"description": "Crafting AI-driven gaming worlds beyond imagination with VR and NFTs",
"content": "Ultiverse is an integrated Web3 platform combining GameFi, NFTs, DeFi, Marketplace, and Liquid Staking. Ultiverse aims at building the next-generation entrance connecting Web3 with players all around the world.",
"url": "https://www.ultiverse.io/home",
"github": "",
"discord": "https://discord.com/invite/ultiverse",
"telegram": "",
"twitter": "https://twitter.com/UltiverseDAO",
"contact": "",
"slug": "ultiverse",
"keywords": [
"Gaming",
"GameFi",
"NFT",
"Ecosystem"
],
"categories": [
"Gaming"
],
"subcategories": [
[
"Gaming Focused",
"Other"
]
],
"languages": [
"Solidity"
],
"tags": [
"Testnet",
"Devnet"
]
},
"Leap Wallet": {
"description": "this wallet is ready for cosmos",
"content": "Leap is the all-in-one super wallet for Cosmos, offering in-wallet transfers, staking, swaps, dApp browser, and more. Supports 50+ Cosmos chains & trusted by 300k+ cosmonauts.",
"url": "https://www.leapwallet.io/",
"github": "https://github.com/leapwallet",
"discord": "",
"telegram": "",
"twitter": "https://twitter.com/leap_cosmos",
"contact": "",
"slug": "leap-wallet",
"keywords": [
"Wallet",
"IBC",
"Cosmos",
"Ecosystem"
],
"categories": [
"Wallet"
],
"subcategories": [
[
"Extension",
"Other"
]
],
"languages": [
""
],
"tags": [
"Testnet",
"Devnet"
]
},
"Crust": {
"description": "Complete Your Web3 Journey with Decentralized Storage",
"content": "Empowering Data Through Decentralization With decentralization at its core Crust Network is a purpose built layer 1 blockchain providing composable cloud storage solutions for developers, builders and end-users of all ecosystems.",
"url": "https://www.crust.network/",
"github": "https://github.com/crustio",
"discord": "https://discord.com/invite/zJtChDk4yW",
"telegram": "https://t.me/CrustNetwork",
"twitter": "https://twitter.com/CrustNetwork",