forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
showcase.json
1798 lines (1798 loc) · 72.6 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",
"Bitcoin"
],
"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": "distrikt",
"name": "distrikt",
"oneLiner": "Censorship-resistant fully on-chain social media platform",
"website": "https://az5sd-cqaaa-aaaae-aaarq-cai.ic0.app/",
"tags": [
"SocialFi",
"Bitcoin"
],
"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,
"display": "Large",
"stats": "110,000+ users",
"logo": "/img/showcase/distrikt_logo.webp",
"screenshots": [
"/img/showcase/distrikt_screenshot.webp"
]
},
{
"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"
]
},
{
"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,
"logo": "/img/showcase/juno_logo.svg",
"screenshots": [
"/img/showcase/juno_social_image.png"
]
},
{
"id": "kinic",
"name": "Kinic",
"oneLiner": "The world's first Web3 search engine",
"website": "https://74iy7-xqaaa-aaaaf-qagra-cai.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/kinic_app?s=20&t=PVKALcCRCdZIgr0U4sDWeg",
"description": "The world’s first Web3 search engine",
"stats": "3,000,000+ searches",
"display": "Large",
"usesInternetIdentity": true,
"logo": "/img/showcase/kinic_logo.webp",
"screenshots": [
"/img/showcase/kinic_screenshot.webp"
]
},
{
"id": "infinityswap",
"name": "Infinity Swap",
"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 build on the ICP blockchain. They are also planning to release their own token standard IS20 to support these initiatives. ",
"stats": "$1.5M Invested PolyChain Capital + a16z",
"logo": "/img/showcase/infinityswap_logo.webp",
"screenshots": [
"/img/showcase/infinityswap_screenshot_0.webp"
]
},
{
"id": "openchat",
"name": "OpenChat",
"oneLiner": "Decentralized alternative to WhatsApp",
"website": "https://oc.app/",
"tags": [
"SocialFi",
"Bitcoin"
],
"description": "What if you could own a piece of WhatsApp and vote on what features get added? 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 soon to 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": "icpcoins",
"name": "ICP Coins",
"oneLiner": "DEX stats aggregator",
"website": "https://icpcoins.com",
"tags": [
"DeFi",
"Bitcoin"
],
"description": "IC coins by market cap. Aggregates stats from all IC DEXes. Price, Volume & Liquidity score charts.",
"usesInternetIdentity": false,
"stats": "1000 users",
"logo": "/img/showcase/icpcoins_logo.png",
"github": "https://github.com/vvv-interactive/icpcoins",
"screenshots": [
"/img/showcase/icpcoins_screenshot_0.jpg"
]
},
{
"id": "internetcomputerorgwebsite",
"name": "ICP website",
"oneLiner": "Educational website for the Internet Computer",
"website": "https://internetcomputer.org",
"github": "https://github.com/dfinity/portal",
"tags": [
"SocialFi"
],
"description": "The website you're scrolling now, internetcomputer.org is itself a dapp hosted 100% on the Internet Computer - including images and videos.",
"display": "Normal",
"logo": "/img/showcase/internetcomputerorgwebsite_logo.webp",
"screenshots": [
"/img/showcase/internetcomputerorgwebsite_screenshot_0.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"
],
"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": "uniswapfrontendontheic",
"name": "Uniswap Front End on the IC",
"website": "https://yrog5-xqaaa-aaaap-qa5za-cai.ic0.app/#/swap",
"github": "https://github.com/domwoe/uniswap_ui_on_ic",
"tags": [
"DeFi"
],
"description": "Uniswap's frontend hosted on the Internet Computer with canister-based wallet integration. Thanks to the Internet Computer, traditional DeFi solutions can now be completely decentralized, having their frontend hosted on ICP. There is no longer a need to include centralized cloud providers in a decentralized application.",
"usesInternetIdentity": true,
"oneLiner": "Front-End On-Chain",
"display": "Normal",
"logo": "/img/showcase/uniswapfrontendontheic_logo.webp",
"video": "/img/showcase/uniswapfrontendontheic_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "ntagle",
"name": "ntagle",
"oneLiner": "Proof of Physical Ownership Platform",
"tags": [
"NFT",
"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": "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": "taggr",
"name": "TAGGR",
"website": "https://6qfxa-ryaaa-aaaai-qbhsq-cai.ic0.app/#/",
"tags": [
"SocialFi"
],
"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,
"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": "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": "contentfly",
"name": "Content Fly",
"website": "https://contentfly.app/",
"tags": [
"SocialFi"
],
"description": "Content Fly is a Web3 Job Management Tool & Marketplace. It allows content buyers & creators to work together with the security of an escrow payment and DAO based dispute resolution. IP is protected and transferred as an NFT.",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/contentfly_logo.webp",
"screenshots": [
"/img/showcase/contentfly_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": "dank",
"name": "Dank",
"oneLiner": "Decentralized Cycles Bank",
"website": "https://dank.ooo/",
"tags": [
"DeFi",
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/psychedelicDAO",
"description": "Dank is the first Decentralized Bank built on the Internet Computer, developed by Fleek. Through a collection of Open Internet Services for users and developers, Dank makes cycles management seamless.",
"logo": "/img/showcase/dank_logo.webp",
"screenshots": [
"/img/showcase/dank_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"
],
"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": "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": "plethora",
"name": "Plethora",
"website": "https://plethora.game/",
"tags": [
"Games",
"Metaverse",
"NFT"
],
"twitter": "https://twitter.com/PlethoraGame",
"description": "Plethora is all about abundance and making you feel fulfilled. 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": "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": "origyn",
"name": "Origyn",
"oneLiner": "NFT-Based Authentication for Luxury Goods ",
"website": "https://www.origyn.ch/",
"tags": [
"NFT"
],
"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": "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 Minecraft-like Web3 game where players can build 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": "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": "icpulse",
"name": "ICPulse",
"oneLiner": "Visual metrics for IC's software activity data",
"website": "https://icpulse.io/",
"tags": [
"Tools / Infrastructure"
],
"description": " ICPulse increases the transparency in the IC’s developer ecosystem by aggregating the activity data from GitHub and displaying visual metrics in an effective dashboard.",
"usesInternetIdentity": false,
"logo": "/img/showcase/icpulse_logo.svg",
"github": "https://github.com/CrossChainLabs-ICP",
"twitter": "https://twitter.com/CrossChain_Labs/status/1626495037734285312?s=20",
"screenshots": [
"static/img/showcase/ICPulse_screenshot.jpg"
],
"submittableId": "32418389"
},
{
"id": "hot-or-not",
"name": "Hot or Not",
"oneLiner": "Token rewards for both content creators and lurkers",
"website": "https://hotornot.wtf/",
"tags": [
"SocialFi"
],
"description": "Hot or Not is a decentralized short-form video based social media platform which integrates prediction markets for content. In addition to creating and sharing short videos on Hot or Not, users can also speculate on the short videos uploaded by other users on the platform. They can vote whether a video would become 'Hot' or 'Not' and stake blockchain tokens to substantiate their vote. The results are declared every hour and the winners are rewarded with 2x tokens. With Decentralized governance and content moderation, Hot or Not would put the users at the center of the ecosystem",
"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": "sly",
"name": "SLY",
"oneLiner": "Seamless CLI for the Internet Computer",
"website": "https://sly.ooo/",
"tags": [
"Tools / Infrastructure"
],
"twitter": "https://twitter.com/psychedelicDAO",
"description": "SLY, developed by PsychedelicDAO, is a seamless Command Line Interface (CLI) for the Internet Computer. SLY is an open-source, and collaborative CLI - providing abstractions, templates, and tools to kick-start and speed-up Internet Computer development.",
"github": "https://github.com/psychedelic/sly",
"display": "Normal",
"logo": "/img/showcase/sly_logo.svg",
"screenshots": [
"/img/showcase/sly_screenshot_0.webp"
]
},
{
"id": "sudograph",
"name": "Sudograph",
"website": "https://i67uk-hiaaa-aaaae-qaaka-cai.raw.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "Sudograph is a GraphQL database for the Internet Computer. Its goal is to become the simplest way to develop applications for the IC by providing flexibility and out-of-the-box data management.",
"github": "https://github.com/sudograph/sudograph",
"logo": "/img/showcase/sudograph_logo.webp",
"screenshots": [
"/img/showcase/sudograph_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": "canlista",
"name": "Canlista",
"oneLiner": "Internet Computer Canister Registry",
"website": "https://k7gat-daaaa-aaaae-qaahq-cai.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "The Internet Computer community canister registry. Find, publish and extend applications and services built on the Internet Computer. Log in with Internet Identity. ",
"usesInternetIdentity": true,
"logo": "/img/showcase/canlista_logo.webp",
"screenshots": [
"/img/showcase/canlista_screenshot_0.webp"
]
},
{
"id": "sandbless",
"name": "Sand Bless",
"oneLiner": "Sandblasting and serigraphy artworks",
"website": "https://qob3k-7yaaa-aaaao-aahdq-cai.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "Sandblasting and glass serigraphy. Artistic and craftsmen artworks signed with unique verifiable mark numbers and linked imprints using Internet Computer Canisters technology.",
"github": "https://github.com/branciard/SandBlessCanisters",
"usesInternetIdentity": false,
"logo": "/img/showcase/sandbless_logo.webp",
"screenshots": [
"/img/showcase/sandbless_screenshot_0.webp"
]
},
{
"id": "missionispossible",
"name": "Mission Is Possible",
"website": "https://to3ja-iyaaa-aaaai-qapsq-cai.raw.ic0.app/",
"tags": [
"Games"
],
"description": "Mission is Possible - 3rd place winner of the DSCVR Hackathon Season 2 - is a PVP third person shooter hosted on the Internet Computer blockchain. The John Wick inspired game is built using the Unity 3D Game Engine, and hosted on the IC enabling decentralized login with Internet Identity. ",
"usesInternetIdentity": true,
"oneLiner": "3rd Place DSCVR Hackathon",
"display": "Normal",
"logo": "/img/showcase/missionispossible_logo.webp",
"screenshots": [
"/img/showcase/missionispossible_screenshot_0.webp"
]
},
{
"id": "catalyze",
"name": "Catalyze",
"website": "https://aqs24-xaaaa-aaaal-qbbea-cai.ic0.app/",
"tags": [
"SocialFi",
"Bitcoin"
],
"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": "icpexplorer",
"name": "ICP Explorer",
"website": "https://www.icpexplorer.org/#/datacenters",
"tags": [
"Tools / Infrastructure"
],
"description": "ICP Explorer, a project started in 2018, is an open-source, community-built dashboard and explorer for the Internet Computer, providing live information and statistics about the network, governance, and the ICP utility token, including account and transaction information.",
"logo": "/img/showcase/icpexplorer_logo.webp",
"video": "/img/showcase/icpexplorer_video.mp4",
"videoContentType": "video/mp4",
"screenshots": [
"/img/showcase/icpexplorer_screenshot_0.webp"
]
},
{
"id": "icme",
"name": "ICME",
"website": "https://sygsn-caaaa-aaaaf-qaahq-cai.raw.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "ICME is a no-code tool that makes it easy for anyone to build and deploy beautiful websites on the Internet Computer. Launch your blog or business's website on the Internet Computer today.",
"usesInternetIdentity": true,
"logo": "/img/showcase/icme_logo.webp",
"screenshots": [
"/img/showcase/icme_screenshot_0.webp",
"/img/showcase/icme_screenshot_1.webp"
]
},
{
"id": "sagatarot",
"name": "Saga Tarot",
"website": "https://5nl7c-zqaaa-aaaah-qaa7a-cai.raw.ic0.app/",
"tags": [
"Games"
],
"description": "Have your fortune told on the Internet Computer. Saga Tarot gives you a tarot reading in one click. The user-friendly dapp is built completely on the Internet Computer, accessible from any browser. What will the future hold for you?",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/sagatarot_logo.webp",
"video": "/img/showcase/sagatarot_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "jumpymotoko",
"name": "Jumpy Motoko",
"website": "https://65t4u-siaaa-aaaal-qbx4q-cai.ic0.app/",
"tags": [
"Games"
],
"description": "Unity play to earn game on Internet Computer. Comes with code sample so you can deploy your own Unity play to earn game too.",
"github": "https://github.com/therealbryanho/IC-Code-Sample-Unity-Play-to-Earn-Game",
"display": "Normal",
"logo": "/img/showcase/jumpymotoko_logo.webp",
"screenshots": [
"/img/showcase/jumpymotoko_screenshot.webp"
]
},
{
"id": "icdrive",
"name": "IC Drive",
"website": "https://rglue-kyaaa-aaaah-qakca-cai.ic0.app/#/",
"tags": [
"Tools / Infrastructure"
],
"description": "A decentralized private file storage dapp built on the Internet Computer. Store and securely share any type from anywhere in the world with this decentralized version of Box, or Google Drive. ",
"usesInternetIdentity": true,
"logo": "/img/showcase/icdrive_logo.webp",
"screenshots": [
"/img/showcase/icdrive_screenshot_0.webp",
"/img/showcase/icdrive_screenshot_1.webp"
]
},
{
"id": "crowdgovorg",
"name": "CrowdGov.org",
"oneLiner": "The simplified, one stop shop for IC Governance.",
"website": "https://crowdgov.org",
"tags": [
"Tools / Infrastructure"
],
"description": "The crowdgov.org website is dedicated to simplified governance for the internet computer. You will find information about how to participate in governance and how to maximize voting rewards. A variety of research tools are provided to help you learn more about NNS ecosystem participants and the current state of decentralization.",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/crowdgovorg_logo.webp",
"screenshots": [
"/img/showcase/crowdgovorg_screenshot_0.webp"
]
},
{
"id": "difibase",
"name": "Difibase",
"oneLiner": "Difibase - NoSQL database management system on the Internet Computer",
"website": "https://7wwjw-5iaaa-aaaan-qbguq-cai.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "Difibase is a database provider (NoSQL). You can use the system's database or integrate your own!",
"usesInternetIdentity": false,
"display": "Normal",
"logo": "/img/showcase/difibase_logo.webp",
"screenshots": [
"/img/showcase/difibase_screenshot_0.webp"
]
},
{
"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": "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": "kybra",
"name": "Kybra",
"oneLiner": "Python CDK for the Internet Computer",
"website": "https://github.com/demergent-labs/kybra",
"tags": [
"Tools / Infrastructure"
],
"description": "Kybra is a Python Canister Development Kit (CDK) for the Internet Computer. In other words, it's a Python runtime for building applications on the IC.",
"usesInternetIdentity": false,
"logo": "/img/showcase/kybra_logo.svg",
"screenshots": [
"/img/showcase/kybra_screenshot_0.jpg"
]
},
{
"id": "motokoplayground",
"name": "Motoko Playground",
"oneLiner": "Free IDE to Learn Motoko",
"website": "https://m7sm4-2iaaa-aaaab-qabra-cai.raw.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "The Motoko Playground is an IDE for developers to learn Motoko - the native language for the Internet Computer blockchain. Deploy canister smart contracts for free, directly within a browser, without needing to download an SDK or set up a wallet.",
"github": "https://github.com/dfinity/motoko-playground",
"usesInternetIdentity": false,
"display": "Normal",
"logo": "/img/showcase/motokoplayground_logo.webp",
"video": "/img/showcase/motokoplayground_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "windowsic",
"name": "Windows IC",
"website": "https://3ix2y-naaaa-aaaad-qap6a-cai.raw.ic0.app/",
"tags": [
"Tools / Infrastructure"
],
"description": "Windows IC is a React Dapp built on the Internet Computer. Mimicking what a chromebook can do, but for a mimic of the Windows Operating System, this decentralized desktop allows anyone to access some of their favorite programs from any browser.",
"logo": "/img/showcase/windowsic_logo.webp",
"screenshots": [
"/img/showcase/windowsic_screenshot_0.webp"
]
},
{
"id": "nnsfront-enddapp",
"name": "NNS Dapp",
"oneLiner": "Dapp for Staking Neurons + Voting On-Chain",
"website": "https://nns.ic0.app",
"tags": [
"Wallet",
"Tools / Infrastructure",
"Bitcoin"
],
"description": "The NNS front-end dapp allows anyone to interact with the Internet Computer's Network Nervous System with a user-friendly UI. Served completely end-to-end through blockchain, this dapp allows you to manage ICP, stake neurons, participate in voting, and earn governance rewards.",
"usesInternetIdentity": true,
"logo": "/img/showcase/nnsfront-enddapp_logo-dark.webp",
"screenshots": [
"/img/showcase/nnsfront-enddapp_screenshot_0.webp"
]
},
{
"id": "tipjar",
"name": "Tipjar",
"website": "https://tipjar.rocks",
"tags": [
"Tools / Infrastructure"
],
"description": "A tool to donate cycles to canisters as well as keep them monitored.",
"github": "https://github.com/ninegua/tipjar",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/tipjar_logo.webp",
"screenshots": [
"/img/showcase/tipjar_screenshot_0.webp"
]
},
{
"id": "ics",
"name": "ICS",
"website": "https://internetcomputerservices.com/",
"tags": [
"Tools / Infrastructure"
],
"description": "Build scalable DApps on internet computer with ease. Build, manage and ship dApps with just a few clicks",
"usesInternetIdentity": false,
"display": "Normal",
"logo": "/img/showcase/ics_logo.webp",
"screenshots": [
"/img/showcase/ics_screenshot_0.webp"
]
},
{
"id": "aedile",
"name": "aedile",
"website": "https://aedile.io",
"twitter": "https://twitter.com/aedile_ic",
"tags": [
"Tools / Infrastructure"
],
"description": "Build and fund, 100% on chain aedile is the first open and decentralized service offering individuals, teams, and communities, an alternative to their favorite management tools.",
"usesInternetIdentity": true,
"logo": "/img/showcase/aedile_logo.webp",
"screenshots": [
"/img/showcase/aedile_screenshot_0.webp"
]
},
{
"id": "riseofthemagni",
"name": "Rise of the Magni",
"website": "https://riseofthemagni.com/",
"tags": [
"Games"
],
"description": "Rise of the Magni, built by Toniq Labs, winner of the DSCVR hackathon for games on the Internet Computer. Buy, earn, and trade collectibles, compete in tactical battles online to earn in-game tokens, and venture through story mode to experience one of the first games built on the Internet Computer.",
"usesInternetIdentity": true,
"logo": "/img/showcase/riseofthemagni_logo.webp",
"screenshots": [
"/img/showcase/riseofthemagni_screenshot_0.webp"
]
},
{
"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": "welcomeintothemetaverse",
"name": "Welcome Into the Metaverse",
"website": "https://lc7ip-3iaaa-aaaah-aafva-cai.ic0.app/",
"tags": [
"Games"
],
"description": "Prize winner of the DSCVR hackathon for the Internet Computer - this game brings digital community into a unified virtual space. Find anecdotes from founding ecosystem members, and go through a series of quests.",
"logo": "/img/showcase/welcomeintothemetaverse_logo.webp",
"screenshots": [
"/img/showcase/welcomeintothemetaverse_screenshot_0.webp"
]
},
{
"id": "icmojiorigins",
"name": "ICmoji Origins",
"oneLiner": "NFT Based Multiplayer Game On-Chain",
"website": "https://icmojis.com/",
"tags": [
"Games",
"NFT"
],
"description": "ICmoji Origins is an NFT-based multiplayer game built end-to-end on-chain on the Internet Computer. The winner of the DSCVR Hackathon Season 2 features one of the first NFTs on the Internet Computer, ICMojis.",
"usesInternetIdentity": false,
"display": "Normal",
"logo": "/img/showcase/icmojiorigins_logo.webp",
"video": "/img/showcase/icmojiorigins_video.mp4",
"videoContentType": "video/mp4",
"screenshots": []
},
{
"id": "nuance",
"name": "Nuance",
"website": "https://exwqn-uaaaa-aaaaf-qaeaa-cai.ic0.app/",
"tags": [
"NFT"
],
"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": "thewall",
"name": "The Wall",
"website": "https://rivyl-6aaaa-aaaaf-qaapq-cai.raw.ic0.app/",
"tags": [
"SocialFi"
],
"description": "The Wall is a dapp built on the Internet Computer blockchain, which blends Ethereum's MetaMask authentication with the Internet Computer's native Internet Identity blockchain authentication system. This first example of ETH x ICP allows users to leave any message on the wall for all eternity.",
"github": "https://github.com/kristoferlund/ic-wall",
"logo": "/img/showcase/thewall_logo.webp",
"screenshots": [
"/img/showcase/thewall_screenshot_0.webp"
]
},
{
"id": "modclub",
"name": "MODCLUB",
"website": "https://ljyte-qiaaa-aaaah-qaiva-cai.raw.ic0.app/",
"tags": [
"SocialFi"
],
"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": "nftanvil",
"name": "NFTAnvil",
"website": "https://nftanvil.com",
"tags": [
"NFT",
"Metaverse",
"Games"
],
"description": "NFTAnvil is a wallet, mint & marketplace in the Anvil ecosystem. It's built from scratch and has an alternative & genuine approach to NFTs. It uses Anvil's auto-scaling multi-canister token architecture.",
"github": "https://github.com/infu/nftanvil",
"usesInternetIdentity": true,
"display": "Normal",
"logo": "/img/showcase/nftanvil_logo.webp",
"screenshots": [
"/img/showcase/nftanvil_screenshot_0.webp"
]
},
{
"id": "astrox",
"name": "AstroX ME",
"oneLiner": "A powerful multichain wallet",
"website": "https://astrox.me/#/",
"tags": [
"Tools / Infrastructure",
"Wallet",
"Bitcoin"
],
"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": "argonstudio",
"name": "Argon Studio",
"description": "We'll be your end-to-end partner, whether managing your project from ideation to implementation, or filling gaps in your current team.",
"tags": [
"Tools / Infrastructure"
],
"website": "https://argonstudios.xyz/",
"twitter": "https://twitter.com/ArgonStudiosXYZ",
"logo": "/img/showcase/argonstudio_logo.webp",
"submittableId": "34524251"
},
{
"id": "aviatelabs",
"name": "Aviate Labs",
"description": "Stop worrying about system failures and slow performance. Our datacenter standby team is here to keep your nodes running at top speed, with round-the-clock monitoring and troubleshooting. Currently managing 70 nodes in 3 datacenters.",
"tags": [
"Tools / Infrastructure"
],
"website": "https://www.aviatelabs.co/",
"github": "https://github.com/aviate-labs?q=&type=all&language=go&sort=stargazers",
"logo": "/img/showcase/aviatelabs_logo.webp",
"submittableId": "25140378"
},
{
"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.",