forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
showcase.json
2548 lines (2422 loc) · 99.7 KB
/
showcase.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
[
{
"id": "dscvr",
"name": "DSCVR",
"oneLiner": "Social portals, community airdrops, crypto tipping on chain",
"website": "https://dscvr.one/",
"tags": [
"SocialFi"
],
"twitter": "https://twitter.com/DSCVR1?s=20&t=qrUKGHeyFLGiBQjpj3iI9A",
"description": "DSCVR is an end-to-end decentralized Web3 social media platform that allows communities to form into groups called Portals. These Portals can be NFT gated, airdrop fungible and non-fungible tokens to their members and much more. DSCVR also allows for tipping posts in a growing number of cryptos, supporting ckBTC, a Bitcoin twin living on the Internet Computer.",
"usesInternetIdentity": true,
"stats": "200,000+ users",
"display": "Large",
"logo": "/img/showcase/dscvr_logo.webp",
"screenshots": [
"/img/showcase/dscvr_screenshot.webp"
]
},
{
"id": "openchat",
"name": "OpenChat",
"oneLiner": "Decentralized alternative to WhatsApp",
"website": "https://oc.app/",
"tags": [
"SocialFi",
"Bitcoin",
"DAO"
],
"description": "OpenChat is a fully decentralized real-time messaging service that is indistinguishable from Web2 chat apps, while living 100% on the blockchain. This allows users to send crypto to each other - including Bitcoin - and own a part of OpenChat through CHAT tokens.",
"usesInternetIdentity": true,
"display": "Large",
"stats": "80,000+ users",
"logo": "/img/showcase/openchat_logo.webp",
"screenshots": [
"/img/showcase/openchat-screenshot.webp"
]
},
{
"id": "icpswap",
"name": "ICPSwap",
"website": "https://icpswap.com",
"tags": [
"DeFi",
"Wallet",
"Bitcoin"
],
"description": "ICPSwap is DEX built completely end-to-end on-chain. By building the ability for anyone to swap tokens through ICPSwap leveraging the Internet Computer blockchain as the high-speed, scalable, low-cost infrastructure makes ICPSwap a first-to-market in the growing Internet Computer DeFi ecosystem.",
"usesInternetIdentity": true,
"logo": "/img/showcase/icpswap_logo.webp",
"screenshots": [
"/img/showcase/icpswap_screenshot_0.webp"
]
},
{
"id": "funded",
"name": "Funded",
"oneLiner": "Fund your favorite projects and get NFT rewards",
"website": "https://funded.app/",
"tags": [
"SocialFi",
"DeFi",
"Bitcoin"
],
"twitter": "https://twitter.com/funded_app",
"description": "Web3 crowdfunding! Thanks to ICP's low transaction fees and advanced smart contract technology, you can participate in crowdfunding with ICP, BTC and ETH without worrying about losing money on gas fees.",
"usesInternetIdentity": true,
"stats": "83,000+ ICP funded",
"display": "Normal",
"logo": "/img/showcase/funded_logo.webp",
"screenshots": []
},
{
"id": "dmail",
"name": "Dmail",
"oneLiner": "Web3 Decentralized Email Client",
"website": "https://dmail.ai/",
"tags": [
"NFT",
"SocialFi"
],
"description": "Dmail is the Web3 replacement for e-mail. Hosted completely on-chain and built on the Internet Computer, this dapp enables users to send and receive blockchain-backed, encrypted messages. In addition, Dmail addresses are owned by users as NFT assets - there is a natively built marketplace. Dmail was the winner of the 2021 Warpspeed ICP Hackathon in China, and saw an immediate round of funding netting a $10M valuation. ",
"usesInternetIdentity": true,
"github": "https://github.com/dmailofficial",
"display": "Normal",
"logo": "/img/showcase/dmail_logo.webp",
"screenshots": [
"/img/showcase/dmail_screenshot_0.webp"
]
},
{
"id": "icdex",
"name": "ICDex",
"website": "https://avjzx-pyaaa-aaaaj-aadmq-cai.raw.ic0.app/ICDex",
"tags": [
"DeFi",
"Bitcoin"
],
"description": "ICDex is flagship product by ICLighthouse, an orderbook based DEX that runs 100% on-chain. The world's first orderbook DEX - made possible by advanced ICP smart contracts",
"usesInternetIdentity": true,
"stats": "Supports ckBTC",
"twitter": "https://twitter.com/ICLighthouse",
"display": "Normal",
"logo": "/img/showcase/icdex_logo.webp",
"screenshots": []
},
{
"id": "distrikt",
"name": "distrikt",
"oneLiner": "Censorship-resistant fully on-chain social media platform",
"website": "https://distrikt.app",
"tags": [
"SocialFi"
],
"twitter": "https://twitter.com/DistriktApp?s=20&t=FIuSJzaUxndtjKLTpwmCEw",
"description": "Distrikt is a completely decentralized, community-owned Web3 social media platform. Users of the platform will soon be able vote on upgrades, and no user data will ever be mined or sold. Create your account, secured by Internet Identity today.",
"usesInternetIdentity": true,
"authOrigins": ["https://distrikt.app", "https://az5sd-cqaaa-aaaae-aaarq-cai.ic0.app/"],
"display": "Large",
"stats": "110,000+ users",
"logo": "/img/showcase/distrikt_logo.webp",
"screenshots": [
"/img/showcase/distrikt_screenshot.webp"
]
},
{
"id": "hot-or-not",
"name": "Hot or Not",
"oneLiner": "Token rewards for both content creators and lurkers",
"website": "https://hotornot.wtf/",
"tags": [
"SocialFi", "DAO"
],
"description": "Hot or Not is a decentralized short-form video based social media platform, which integrates prediction markets for content. In addition to sharing their own videos, users can also speculate on videos of other users by staking tokens and voting whether a video will become 'Hot' or 'Not' to earn rewards.",
"usesInternetIdentity": true,
"stats": "55,000+ users",
"logo": "/img/showcase/hot_or_not_logo.svg",
"screenshots": [
"/img/showcase/hot_or_not_screenshot_0.jpg"
],
"videoContentType": "video/mp4",
"video": "/img/showcase/hot_or_not_video.mp4"
},
{
"id": "bitfinity-evm",
"name": "Bitfinity EVM",
"website": "https://bitfinity.network/",
"tags": [
"DeFi",
"Tools / Infrastructure",
"Ethereum"
],
"twitter": "https://twitter.com/bitfinitynet",
"description": "Bitfinity is the EVM compatibility layer for the IC. Using Bitfinity, you can deploy your Solidity smart contracts to the Internet Computer, taking advantage of is many advantageous DeFi capabilities: HTTP Outcalls, the BTC integration and more.",
"usesInternetIdentity": true,
"stats": "1000+ TPS",
"display": "Large",
"logo": "/img/showcase/bitfinity_evm.png",
"screenshots": [
"/img/showcase/bitfinity_showcase.png"
]
},
{
"id": "iclighthouse",
"name": "ICLightHouse",
"description": "Incubating true web3 DeFi infrastructure on the Internet Computer. Defi development framework and Defi ecosystem on IC blockchain.",
"tags": [
"DeFi",
"Tools / Infrastructure",
"Bitcoin"
],
"website": "https://iclight.house/",
"twitter": "https://twitter.com/ICLighthouse?s=20&t=hL-7QAUfiWo75L8pZzJ7fw",
"discord": "https://discord.com/invite/FQZFGGq7zv",
"logo": "/img/showcase/iclighthouse_logo.webp"
},
{
"id": "astrox",
"name": "AstroX ME",
"oneLiner": "A powerful multichain wallet",
"website": "https://astrox.me/#/",
"tags": [
"Tools / Infrastructure",
"Wallet",
"Bitcoin",
"NFT",
"Ethereum"
],
"description": "ME wallet securing your assets without seed phrase across any devices.",
"github": "https://github.com/AstroxNetwork",
"twitter": "https://twitter.com/astrox_network",
"logo": "/img/showcase/astroxme_logo.webp",
"display": "Large",
"screenshots": [
"/img/showcase/astrox_me_screenshot.webp"
]
},
{
"id": "yumi",
"name": "Yumi",
"oneLiner": "NFT marketplace for digital and physical assets",
"website": "https://tppkg-ziaaa-aaaal-qatrq-cai.raw.ic0.app/",
"tags": [
"NFT"
],
"twitter": "https://twitter.com/YumiMarketplace",
"description": "Yumi is a high-speed, low-cost, and fully decentralized NFT marketplace built on the Internet Computer. All digital collectibles available on Yumi are hosted fully on-chain. The minting of NFTs is completely free for creators (no gas fees).",
"usesInternetIdentity": true,
"stats": "130,000+ ICP volume",
"display": "Large",
"logo": "/img/showcase/yumi_logo.webp",
"screenshots": [
"/img/showcase/yumi-screenshot.webp"
]
},
{
"id": "entrepot",
"name": "Entrepot",
"oneLiner": "ICP's most popular NFT marketplace",
"website": "https://entrepot.app/",
"tags": [
"NFT"
],
"twitter": "https://twitter.com/toniqlabs",
"description": "Entrepot is a decentralized NFT marketplace developed by ToniqLabs, the creators behind Rise of the Magni, Stoic Wallet, Cronic NFTs, and Exponent. Entrepot provides users with tools and on-chain services to design, deploy, and manage NFTs and traditional tokens. ",
"usesInternetIdentity": false,
"stats": "1,000,000+ ICP volume",
"display": "Large",
"logo": "/img/showcase/entrepot_logo.webp",
"screenshots": [
"/img/showcase/entrepot_screenshot.webp"
]
},
{
"id": "sonic",
"name": "Sonic",
"oneLiner": "Swap-built end-to-end DeFi platform",
"website": "https://sonic.ooo/",
"tags": [
"DeFi",
"Wallet",
"Bitcoin"
],
"description": "Sonic is a DEX built end-to-end on-chain, on the Internet Computer. Sonic, built by PsychedelicDAO, currently run by Meme Cake enables users to swap tokens, earn fees as a liquidity provider, & build on the Internet Computer's AMM. Sonic takes advantage of the ICP blockchain's low fees, high-scalability, and reverse-gas model to deliver a seamless Web3 experience.",
"github": "https://github.com/psychedelic",
"stats": "$360,000+ TVL",
"display": "Normal",
"logo": "/img/showcase/sonic_logo.webp",
"screenshots": [
"/img/showcase/sonic_screenshot_0.webp"
]
},
{
"id": "omnic",
"name": "Omnic",
"oneLiner": "Crosschain Messaging Protocol & Token Bridge Between the Internet Computer and EVM Chains",
"website": "https://omnic.network",
"tags": [
"Tools / Infrastructure",
"DeFi",
"Ethereum"
],
"description": "Omnic is a Crosschain messaging protocol built on the Internet Computer, Omnic Token Bridge helps bring liquidity on EVM networks to the Internet Computer",
"usesInternetIdentity": false,
"logo": "/img/showcase/omnic_logo.webp",
"screenshots": [
"/img/showcase/omnic_screenshot_0.webp"
],
"videoContentType": "video/mp4",
"video": "/img/showcase/omnic_video.mp4"
},
{
"id": "origyn",
"name": "Origyn",
"oneLiner": "NFT-Based Authentication for Luxury Goods ",
"website": "https://www.origyn.ch/",
"tags": [
"NFT", "Tools / Infrastructure"
],
"twitter": "https://twitter.com/ORIGYNTech",
"description": "The Origyn Foundation is blending luxury goods with NFTs by providing digital verifications for physical objects. Only possible on the Internet Computer. ",
"github": "https://github.com/origyn-sa",
"logo": "/img/showcase/origyn_logo.webp",
"screenshots": [
"/img/showcase/origyn_screenshot_0.webp"
]
},
{
"id": "finterest",
"name": "Finterest",
"website": "https://tyhcm-sqaaa-aaaah-abjya-cai.raw.ic0.app/#/",
"tags": [
"DeFi",
"Bitcoin"
],
"twitter": "https://twitter.com/finterestICP",
"description": "Lend and borrow against your crypto without bridging it across chains. Yes, even Bitcoin",
"stats": "$1.5M+ Raised",
"logo": "/img/showcase/finterest_logo.webp",
"screenshots": [
"/img/showcase/finterest_screenshot_0.webp"
]
},
{
"id": "boom-dao",
"name": "Boom DAO",
"oneLiner": "Powering the next generation of fully on-chain games, and providing a collaborative hub for all things web3 gaming.",
"website": "https://boomdao.xyz/",
"tags": ["Games", "DAO", "Tools / Infrastructure", "NFT", "Metaverse"],
"description": "BOOM DAO is an all-in-one web3 game platform and protocol running 100% on-chain on the Internet Computer. We are on a mission to build the gaming vertical of the Internet Computer blockchain, power the next generation of fully on-chain games on ICP, and provide a collaborative hub for all things web3 gaming.",
"stats": "+23000 DAO Members",
"logo": "/img/showcase/boom-dao-logo.webp",
"display": "Large",
"usesInternetIdentity": true,
"github": "https://github.com/BoomDAO/",
"youtube": "https://www.youtube.com/watch?v=LHVVi4pN6CI",
"twitter": "https://twitter.com/boomdaosns",
"screenshots": ["/img/showcase/boom-dao-screenshot0.webp"],
"video": "/img/showcase/boom-dao-video.mp4",
"videoContentType": "video/mp4",
"submittableId": ""
},
{
"id": "plethora",
"name": "Plethora",
"website": "https://plethora.game/",
"tags": [
"Games",
"Metaverse",
"NFT"
],
"twitter": "https://twitter.com/PlethoraGame",
"description": "Plethora is a Web3 platformer with the goal of rewarding users both with fun gameplay and NFTs. Plethora empowers NFT projects to launch their collections with immersive experiences customized for you. Play now to compete, have fun, and earn rewards.",
"oneLiner": "3D platformer meets Web3 with NFT rewards",
"display": "Large",
"stats": "10,000+ users",
"logo": "/img/showcase/plethora_logo.webp",
"screenshots": [
"/img/showcase/plethora_screenshot.webp"
]
},
{
"id": "kinic",
"name": "Kinic",
"oneLiner": "The world's first Web3 search engine",
"website": "https://74iy7-xqaaa-aaaaf-qagra-cai.ic0.app/",
"tags": [
"Tools / Infrastructure", "DAO"
],
"twitter": "https://twitter.com/kinic_app?s=20&t=PVKALcCRCdZIgr0U4sDWeg",
"description": "The world’s first Web3 search engine indexing all Internet Computer based dapps.",
"stats": "3,000,000+ searches",
"display": "Large",
"usesInternetIdentity": true,
"logo": "/img/showcase/kinic_logo.webp",
"screenshots": [
"/img/showcase/kinic_screenshot.webp"
]
},
{
"id": "modclub",
"name": "MODCLUB",
"website": "https://ljyte-qiaaa-aaaah-qaiva-cai.raw.ic0.app/",
"tags": [
"SocialFi", "Tools / Infrastructure"
],
"description": "MODCLUB is a decentralized moderation tool based hosted fully on-chain. Built on the Internet Computer, MODCLUB rewards users for effectively moderating content. Currently in beta stages of their solution, users will be rewarded in tokens for moderating their favorite communities.",
"usesInternetIdentity": true,
"logo": "/img/showcase/modclub_logo.webp",
"screenshots": [
"/img/showcase/modclub_screenshot_0.webp"
]
},
{
"id": "cubetopia",
"name": "Cubetopia",
"oneLiner": "Build and own an NFT World on the blockchain",
"website": "https://e5owu-aaaaa-aaaah-abs5a-cai.raw.ic0.app/",
"tags": [
"Games"
],
"twitter": "https://twitter.com/TheCubetopia",
"description": "Cubetopia is a Web3 world building game where players can create anything on unique voxel islands also called “worlds”. Each world is a mutable NFT stored on the Internet Computer blockchain. Anyone can visit these islands on chain, while the owner of the NFT can update it by building.",
"stats": "32,500+ ICP volume",
"display": "Large",
"logo": "/img/showcase/cubetopia_logo.webp",
"screenshots": [
"/img/showcase/cubetopia_screenshot.webp"
]
},
{
"id": "itoka",
"name": "ITOKA",
"oneLiner": "A Leading Infrastructure for Music3.0",
"website": "https://www.itoka.xyz/",
"tags": [
"NFT",
"SocialFi"
],
"description": "The ITOKA project seeks to disrupt the centralized music industry by offering a complete infrastructure solution for the web3 music industry. This includes creation tools, data storage, and music streaming services. The goal of ITOKA is to transform the music industry into a decentralized ecosystem, empowering creators with greater control over their content and a fairer share of revenue.",
"usesInternetIdentity": false,
"github": "https://github.com/Itoka-DAO",
"twitter": "https://twitter.com/itokamusic",
"stats": "3M+ minutes on-chain streaming",
"logo": "/img/showcase/itoka_logo.svg",
"video": "/img/showcase/itoka_video.mp4",
"videoContentType": "video/mp4",
"display": "Large",
"screenshots": [
"/img/showcase/itoka_screanshot.svg"
]
},
{
"id": "portal",
"name": "Portal",
"oneLiner": "Onchain Video Streaming Infrastructure",
"website": "https://app.portal.one",
"tags": [
"Tools / Infrastructure",
"NFT"
],
"description": "Portal is a web3 video infrastructure platform built entirely on the Internet Computer blockchain. Portal enables developers to easily replace their current web2 video solutions with a native web3 video service at a fraction of the cost. Portal Channels give creators ownership and control over their video environment whilst offering fans great viewing experiences and real rewards like automatically generated digital collectibles that grant access to private video content.",
"github": "https://github.com/NFT-Portal",
"logo": "/img/showcase/portal_logo.webp",
"video": "/img/showcase/portal_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "taggr",
"name": "TAGGR",
"website": "https://taggr.link",
"tags": [
"SocialFi", "Tools / Infrastructure"
],
"twitter": "https://twitter.com/TaggrNetwork",
"description": "Fully on-chain and fully autonomous SocialFi network. A simple way to publish content on a public compute infrastructure. No Ponzinomics - TAGGR has a sustainable tokenomics model that rewards quality posts and removes incentive to spam.",
"usesInternetIdentity": true,
"authOrigins": ["https://taggr.link", "https://6qfxa-ryaaa-aaaai-qbhsq-cai.ic0.app"],
"display": "Normal",
"stats": "24,000+ posts",
"logo": "/img/showcase/taggr_logo.webp",
"oneLiner": "Blending forums and blogs - controlled by a DAO",
"screenshots": [
"/img/showcase/taggr_screenshot_0.webp"
]
},
{
"id": "azle",
"name": "Azle",
"oneLiner": "TypeScript CDK for the Internet Computer",
"website": "https://demergent-labs.github.io/azle/azle.html",
"tags": [
"Tools / Infrastructure"
],
"description": "Azle is a TypeScript Canister Development Kit (CDK) for the Internet Computer. In other words, it's a TypeScript/JavaScript runtime for building applications on the IC.",
"usesInternetIdentity": false,
"logo": "/img/showcase/azle_logo.svg",
"github": "https://github.com/demergent-labs/azle",
"screenshots": [
"/img/showcase/azle_screenshot_0.jpg"
]
},
{
"id": "orally-network",
"name": "Orally",
"oneLiner": "The fully on-chain oracles for secure and reliable decentralized data feeding and automation across multiple chains.",
"tags": ["Tools / Infrastructure", "DeFi", "Ethereum"],
"description": "The fully on-chain oracles for secure and reliable decentralized data feeding and automation across multiple chains. Experience seamless real-world data integration across various blockchains, powering dynamic, secure and efficient dApps. Elevate your blockchain journey with us!",
"usesInternetIdentity": false,
"website": "https://orally.network",
"github": "https://github.com/orally-network",
"youtube": "https://youtu.be/1ZDEyllqUcA",
"twitter": "https://twitter.com/orally_network",
"display": "Large",
"logo": "/img/showcase/orally-network_logo.png",
"screenshots": [
"/img/showcase/orally-network_screenshot_0.jpg"
],
"submittableId": "35782696"
},
{
"id": "catalyze",
"name": "Catalyze",
"website": "https://aqs24-xaaaa-aaaal-qbbea-cai.ic0.app/",
"tags": [
"SocialFi"
],
"description": "Catalyze is a decentralized social and community-building platform designed to host engaged and thriving Web3 communities. With a unique and customized engagement economy, Catalyze communities and their members will be rewarded for their participation and contribution. Main features include: direct communication, event & task management, integrated Web3 wallets, NFT Gating, NFT airdrop & sales management.",
"usesInternetIdentity": true,
"oneLiner": "Manage your Web3 communities and events",
"display": "Large",
"stats": "275+ groups",
"logo": "/img/showcase/catalyze_logo.webp",
"screenshots": [
"/img/showcase/catalyze_screenshot.webp"
]
},
{
"id": "juno",
"name": "Juno",
"oneLiner": "Build Web3 Apps Like It's Web2",
"website": "https://juno.build",
"tags": [
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/junobuild",
"github": "https://github.com/buildwithjuno/juno",
"description": "Juno is an open-source platform that combines the power of Web3 with the ease and simplicity of Web2 development, enabling programmers to build decentralized apps faster and easier than ever before.",
"display": "Large",
"usesInternetIdentity": true,
"authOrigins": ["https://console.juno.build"],
"logo": "/img/showcase/juno_logo.svg",
"screenshots": [
"/img/showcase/juno_social_image.png"
]
},
{
"id": "internetidentity",
"name": "Internet Identity",
"oneLiner": "Decentralized Anonymous Blockchain Authentication",
"website": "https://identity.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "Internet Identity is a privacy-enhancing authentication framework for applications on the Internet Computer. It provides users with a easy-to-use and secure anonymizing login to Web3 services running on ICP without being tracked across dapps.",
"github": "https://github.com/dfinity/internet-identity",
"usesInternetIdentity": true,
"stats": "1 000 000+ ",
"logo": "/img/showcase/internetidentity_logo.webp",
"screenshots": [
"/img/showcase/internetidentity_screenshot_0.gif"
]
},
{
"id": "Arth",
"name": "Arth",
"oneLiner": "Arth ckBTC wallet and swap btc<>ckBtc",
"tags": [
"DeFi",
"Wallet", "Bitcoin"
],
"description": "Introducing Arth - the mobile payments app that combines the power of Bitcoin with the convenience of mobile payments. With ckBTC, you can easily swap ckBTC from Bitcoin, view balances, and seamlessly make payments using QR codes. more features coming soon",
"usesInternetIdentity": true,
"website": "https://arth.foo",
"github": "https://github.com/s1dc0des/arth_app",
"twitter": "https://twitter.com/arth_foo",
"display": "Large",
"logo": "/img/showcase/arth_logo.png",
"screenshots": [
"/img/showcase/arth_ss.png"
],
"submittableId": "36143434"
},
{
"name": "Signals",
"description": "Signals is a location based chat app for making connections, creating communities and discovering events. ",
"website": "https://signalsicp.com/",
"logo": "/img/showcase/signals_logo.webp",
"screenshots": [
"/img/showcase/signals_screenshot.webp"
],
"display": "Normal",
"id": "signals",
"oneLiner": "A location based app for empowering local communities",
"stats": "5,000+",
"tags": [
"SocialFi"
],
"usesInternetIdentity": true,
"twitter": "https://twitter.com/signalsicp",
"submittableId": "35639473"
},
{
"id": "plug",
"name": "Plug",
"oneLiner": "Decentralized Wallet for the Internet Computer",
"website": "https://plugwallet.ooo/",
"tags": [
"Wallet",
"NFT",
"Tools / Infrastructure",
"Bitcoin"
],
"description": "Plug Wallet, built and open sourced by Fleek, is a browser extension that allows you to access your ICP, Cycles and other tokens - as well as log into Internet Computer dapps with one click.",
"github": "https://github.com/Psychedelic/plug",
"stats": "100 000 users",
"display": "Normal",
"logo": "/img/showcase/plug_logo.webp",
"video": "/img/showcase/plug_video.mp4",
"videoContentType": "video/mp4",
"screenshots": [
"/img/showcase/plug_screenshot_0.webp"
]
},
{
"id": "canscale",
"name": "CanScale",
"description": "Worried about data being persisted or how your data structure will scale across canisters? CanScale can help you focus more on building out your vision, and spend less time thinking about how to scale out your multi canister architecture on the IC.",
"tags": [
"Tools / Infrastructure"
],
"website": "https://www.canscale.dev",
"twitter": "https://twitter.com/can_scale",
"logo": "/img/showcase/canscale_logo.webp",
"submittableId": "34140445"
},
{
"id": "canistergeek",
"name": "Canistergeek",
"oneLiner": "IC canister management tool",
"description": "Top up your canisters, monitor cycles, memory, logs and get your monthly reports in one place.",
"tags": [
"Tools / Infrastructure"
],
"usesInternetIdentity": true,
"website": "https://canistergeek.app/",
"github": "https://github.com/usergeek/canistergeek_ic_rust",
"twitter": "https://twitter.com/theUSERGEEK",
"discord": "https://discord.gg/CvTpv2TeKs",
"logo": "/img/showcase/canistergeek_logo.webp",
"submittableId": "33310242"
},
{
"name": "Mops",
"description": "On-chain package manager for Motoko. Mops makes it easy to discover, install and publish Motoko packages.",
"website": "https://mops.one",
"logo": "/img/showcase/mops_logo.webp",
"screenshots": [],
"video": "",
"display": "Normal",
"id": "mops",
"oneLiner": "On-chain package manager for Motoko",
"stats": "15,000+ downloads",
"tags": [
"Tools / Infrastructure"
],
"usesInternetIdentity": false,
"github": "https://github.com/ZenVoich/mops",
"twitter": "https://twitter.com/mops_one",
"youtube": "",
"submittableId": ""
},
{
"id": "beamfi",
"name": "BeamFi",
"oneLiner": "Real Time Micro Payments solution for creators",
"website": "https://beamfi.app",
"tags": [
"DeFi"
],
"description": "BeamFi is an open source DeFi protocol, bringing Autonomous Stream Payment solution to Internet Computer, allowing users to send or receive a constant stream of ICP or XTC in BeamFi DApp or BeamFi Meeting App in Zoom while a meeting is in progress",
"usesInternetIdentity": false,
"logo": "/img/showcase/beamfi_logo.webp",
"github": "https://github.com/BeamFi/BeamFiProtocol",
"youtube": "https://youtu.be/85TWP4QHHBg",
"twitter": "https://twitter.com/BeamFiApp",
"screenshots": [
"/img/showcase/beamfi_screenshot_0.webp"
],
"submittableId": "33086681"
},
{
"id": "infinityswap",
"name": "InfinitySwap",
"website": "https://infinityswap.one/",
"tags": [
"DeFi",
"Wallet"
],
"twitter": "https://twitter.com/infinity_swap",
"description": "InfinitySwap is a platform to create, stake, and swap tokens on the Internet Computer. Backed by Polychain Capital and 9YardsCapital (amongst others) - InfinitySwap offers users the ability to swap tokens cheaply with their novel technology, built on the ICP blockchain.",
"stats": "$1.5M Invested PolyChain Capital + a16z",
"logo": "/img/showcase/infinityswap_logo.webp",
"screenshots": [
"/img/showcase/infinityswap_screenshot_0.webp"
]
},
{
"id": "eimolad",
"name": "Eimolad",
"description": "This is an amazing world inhabited by humans, dwarves, orcs, elves and other fantastic creatures. This is a world of magic and valor. This world is full of mysteries, dangers and incredible adventures. ",
"tags": [
"Games"
],
"website": "https://eimolad.com/",
"twitter": "https://twitter.com/eimolad",
"discord": "https://discord.gg/qD3R5nDXDZ",
"logo": "/img/showcase/eimolad_logo.webp",
"submittableId": "28118212"
},
{
"id": "mora",
"name": "MORA",
"oneLiner": "A Web3 space for writers to express autonomy of thought ",
"website": "https://mora.app",
"tags": [
"SocialFi"
],
"description": "Mora allows users to create a unique Web3 space where they can have independent content data, subscription relationships, financial information, and even complex algorithms. From its inception, a planet will be monitored by Launch Trail to ensure compliance with the protocol and establish trust. The Launch Trail will be controlled by the Mora Dao Canister.",
"usesInternetIdentity": true,
"stats": "2000+ articles",
"logo": "/img/showcase/mora_logo.png",
"screenshots": [
"/img/showcase/mora_banner.jpg"
],
"youtube": "https://www.youtube.com/watch?v=rQIGanE7WxA",
"twitter": "https://twitter.com/Mora_App"
},
{
"id": "dsocial",
"name": "DSocial",
"website": "https://DSocial.app ",
"tags": [
"SocialFi"
],
"description": "DSocial is a decentralized version of YouTube -- enabling content creators to be fairly rewarded for their work, and engagement. This Web3 media platform is hosted end-to-end on the Internet Computer interoperating with Arweave for decentralized video content.",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/dsocial_logo.webp",
"video": "/img/showcase/dsocial_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "unfoldvr",
"name": "UnfoldVR",
"oneLiner": "Decentralizing asset Creation and Discovery for the Metaverse",
"website": "https://jmorc-qiaaa-aaaam-aaeda-cai.ic0.app/",
"tags": [
"Metaverse",
"NFT",
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/unfold_vr",
"description": "UnfoldVR empowers creators to author 3D NFTs using easy-to-use tools both on the Web and in Virtual Reality.",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/unfoldvr_logo.webp",
"video": "/img/showcase/unfoldvr_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "airgap",
"name": "AirGap",
"oneLiner": "Self custody made simple and secure. Turn a spare smartphone into a cold wallet.",
"description": "Self custody made simple and secure. Turn a spare smartphone into a cold wallet that can store a plethora of tokens including ICP and ckBTC. Using AirGap, you can stake ICP directly on the NNS and participate in governance.",
"website": "https://airgap.it/",
"tags": [
"Wallet"
],
"usesInternetIdentity": false,
"logo": "/img/showcase/airgap_logo.webp"
},
{
"id": "kawak",
"name": "KawaK",
"description": "A forum for critical thinkers, builders and writers. Earn by providing human to human feedback. ",
"website": "https://3ysab-rqaaa-aaaan-qaewq-cai.ic0.app/",
"logo": "/img/showcase/kawak_logo.webp",
"screenshots": [
"/img/showcase/kawak_screenshot.webp"
],
"video": "/img/showcase/kawak_video.mp4",
"videoContentType": "video/mp4",
"display": "Normal",
"oneLiner": "Acess real human feedback. Earn while helping others",
"stats": "100+ Topics ",
"tags": [
"Tools / Infrastructure"
],
"usesInternetIdentity": false,
"github": "https://github.com/kawak-org/Kawak-2.0",
"twitter": "https://twitter.com/KawaK_ICP",
"youtube": "",
"submittableId": "35943161"
},
{
"id": "seers",
"name": "Seers",
"website": "https://seers.social/",
"tags": [
"SocialFi"
],
"description": "What if there was decentralized Twitter that included prediction markets? Seers is Web3 social media platform hosted 100% on-chain combining social media features with prediction markets.",
"usesInternetIdentity": true,
"stats": "10,000 users + TVL",
"display": "Normal",
"logo": "/img/showcase/seers_logo.webp",
"screenshots": []
},
{
"id": "pokedstudiobots",
"name": "PokedStudio Bots",
"website": "https://entrepot.app/marketplace/poked",
"tags": [
"NFT"
],
"description": "PokedStudio Bots are a collection of 10,000 unique bots designed by acclaimed digital artist, Jonathan Ball. The Ultimate Master Bot which sold for 3,000 ICP (~$172,140), marks the largest single NFT purchase on the Internet Computer, and is one of the largest across all blockchain projects to date. The NFT Bots are all unique and possess differing rarities and attributes that will transfer into a future metaverse gaming experience in beautiful technicolor.",
"oneLiner": "Record Highest Selling NFT",
"display": "Large",
"logo": "/img/showcase/pokedstudiobots_logo.webp",
"screenshots": [
"/img/showcase/pokedstudio-bots.webp"
]
},
{
"id": "Caniplay",
"name": "Caniplay",
"oneLiner": "The world's First NFT Broadcast Station",
"tags": [
"NFT",
"SocialFi" ],
"description": "Introducing CaniPlay (Can I Play), the pioneering NFT broadcast station that operates fully on-chain, eliminating the need for intermediaries who control content broadcasting within the community. Submit your audio or video content and reach a global audience without relying on any third party. As a creator, receive recognition and rewards from your listeners. As a listener, enjoy airdrops and actively participate by voting for your favourite content in the playlist, influencing its position and prominence. Join CaniPlay today and redefine the way content is shared, appreciated, and rewarded!",
"usesInternetIdentity": false,
"website": "https://es7e3-taaaa-aaaan-qakqq-cai.icp0.io",
"github": "https://github.com/orgs/Canistore",
"twitter": "https://twitter.com/canistore",
"display": "Large",
"logo": "/img/showcase/CaniPlay_logo.png",
"screenshots": [
"/img/showcase/CaniPlay_SS.png"
],
"submittableId": "34838526"
},
{
"id": "nuance",
"name": "Nuance",
"website": "https://exwqn-uaaaa-aaaaf-qaeaa-cai.ic0.app/",
"tags": [
"SocialFi"
],
"description": "Nuance is a Web3.0 blogging platform that is hosted on-chain end-to-end on the Internet Computer. Developed by Aikin Dapps, the alpha of the world's first blogging platform to be hosted entirely on a blockchain has now launched. Nuance aims to bring NFTs into the world of editorial content ownership.",
"usesInternetIdentity": true,
"logo": "/img/showcase/nuance_logo.webp",
"screenshots": [
"/img/showcase/nuance_screenshot_0.webp"
]
},
{
"id": "spinnercash",
"name": "Spinner.Cash",
"description": "Private transactions for ICP and BTC",
"tags": [
"DeFi",
"Tools / Infrastructure",
"Bitcoin"
],
"website": "https://spinner.cash/",
"github": "https://github.com/spinner-cash/launch-trail",
"twitter": "https://twitter.com/spnrapp",
"logo": "/img/showcase/spinnercash_logo.webp"
},
{
"id": "bitfinitywallet",
"name": "Bitfinity Wallet",
"oneLiner": "A wallet to store and manage NFTs, Tokens, and connect to dapps on the Internet Computer.",
"website": "https://wallet.infinityswap.one/",
"tags": [
"Wallet",
"Bitcoin", "Ethereum"
],
"description": "The Bitfinity Wallet is a multi-chain wallet built and open sourced by InfinitySwap. It is a browser extension that allows you to store and transfer your BTC, ICP, SNS-1, NFT and other tokens - as well as log into Internet Computer dapps with a single click. The InfinitySwap Wallet also supports Internet Identity, the powerful authentication framework provided by the Internet Computer.",
"display": "Large",
"logo": "/img/showcase/bitfinitywallet_logo.webp",
"videoContentType": "video/mp4",
"screenshots": [
"/img/showcase/bitfinitywallet_screenshot.webp"
]
},
{
"id": "rubaru",
"name": "RuBaRu",
"oneLiner": "Building On-Chain Regenerative Creator-Consumer Economy",
"website": "https://rubaru.app/",
"tags": ["SocialFi"],
"description": "RuBaRu aims to create a vibrant 100% On-Chain DAO-based tokenized economy owned & governed by the community, where creators, influencers, consumers, and brands coexist harmoniously. By doing so, we unlock new opportunities, reshape digital creativity, drive economic growth, and foster a thriving ecosystem of shared prosperity.",
"stats": "100% On-Chain Data Storage",
"logo": "/img/showcase/rubaru_logo.png",
"display": "Large",
"usesInternetIdentity": true,
"youtube": "https://youtu.be/CBumSMJRV08",
"twitter": "https://twitter.com/RuBaRu_app",
"screenshots": ["/img/showcase/rubaru_dapp_screenshots.png"],
"video": "/img/showcase/rubaru_video.mp4",
"videoContentType": "video/mp4",
"submittableId": "39223821"
},
{
"id": "ntagle",
"name": "ntagle",
"oneLiner": "Proof of Physical Ownership Platform",
"tags": [
"Tools / Infrastructure",
"Wallet",
"Bitcoin"
],
"description": "ntagle connects inexpensive physical NFC tags to canisters, giving IC dapp developers the ability to create transferrable HW wallets, Physical NFTs, etc. Any tag can use any integration, meaning dapps can make web3 phygital experiences available to all ntagle owners with a single deploy.",
"usesInternetIdentity": false,
"stats": "Working MVP",
"logo": "/img/showcase/ntagle_icon.webp",
"github": "https://github.com/InternetComputerOG/ntagle-core",
"twitter": "https://twitter.com/ntagled",
"website": "https://github.com/InternetComputerOG/ntagle-core",
"screenshots": []
},
{
"id": "cosmicrafts",
"name": "Cosmicrafts",
"oneLiner": "Blast through the metaverse with Cosmicrafts, where interstellar mayhem meets epic battles for the ultimate cosmic showdown!",
"website": "https://cosmicrafts.com/",
"tags": [
"Games",
"Metaverse"
],
"twitter": "https://twitter.com/cosmicrafts",
"description": "Unleash your inner commander and dominate the metaverse in the action-packed universe of Cosmicrafts. Engage in thrilling interstellar battles, strategize with allies, and conquer the cosmos. Are you ready to claim your place among the stars?",
"usesInternetIdentity": true,
"stats": "10,000+ users",
"logo": "/img/showcase/cosmicrafts_logo.webp",
"video": "/img/showcase/cosmicrafts_video.mp4",
"videoContentType": "video/mp4",
"screenshots": [
"/img/showcase/cosmicrafts_screenshot1.jpg"
]
},
{
"id": "kontribute",
"name": "Kontribute",
"oneLiner": "Web3 storytelling",
"website": "https://kontribute.app",
"tags": [
"SocialFi",
"NFT"
],
"twitter": "https://twitter.com/TeamBonsai_ICP",
"description": "Kontribute is a web3 creators platform that brings story writing and digital art collectibles together. Features include: decentralized story storage, likes, tipping, polls, NFT marketplace and NFT minting.",
"github": "https://github.com/teambonsai/bonsai_dapp",
"usesInternetIdentity": true,
"stats": "1000+ users",
"display": "Normal",
"logo": "/img/showcase/kontribute_logo.webp",
"screenshots": [
"/img/showcase/kontribute_screenshot_0.webp"
]
},