forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshowcase.json
3606 lines (3605 loc) · 171 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": "helix",
"name": "Helix Markets",
"oneLiner": "Bringing true ownership and full transparency to crypto trading",
"website": "https://www.helixmarkets.io/",
"tags": ["Ethereum", "Bitcoin", "DeFi", "Chainfusion"],
"display": "Large",
"stats": "2,000+ users",
"twitter": "https://twitter.com/HelixMarkets",
"description": "Helix Markets is a decentralized exchange that aims to bring true ownership and full transparency to crypto trading.",
"usesInternetIdentity": true,
"logo": "/img/showcase/helix_logo.webp",
"screenshots": ["/img/showcase/helix_screenshot.png"]
},
{
"id": "bioniq",
"name": "Bioniq",
"oneLiner": "The fastest Ordinals marketplace",
"website": "https://bioniq.io/",
"tags": ["Bitcoin", "Enterprise", "NFT", "Chainfusion"],
"description": "Bioniq is the fastest Ordinals marketplace. Buy, sell, and trade with no gas fees, near-instant finality, and decentralized secure token bridging..",
"display": "Large",
"stats": "45,000+ users",
"logo": "/img/showcase/bioniq-logo.jpeg",
"screenshots": ["/img/showcase/bioniq-screenshot-min.png"]
},
{
"id": "openchat",
"name": "OpenChat",
"oneLiner": "Decentralized alternative to WhatsApp",
"website": "https://oc.app/",
"tags": ["SocialFi", "Bitcoin", "DAO", "Chainfusion"],
"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", "Ethereum", "DAO", "Chainfusion"],
"description": "ICPSwap is an AMM DEX built completely on-chain that is the premier hub for full-stack financial and DAO services on ICP",
"usesInternetIdentity": true,
"logo": "/img/showcase/icpswap_logo.webp",
"screenshots": ["/img/showcase/icpswap_screenshot_0.webp"]
},
{
"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"],
"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.webp"],
"submittableId": "35782696"
},
{
"id": "funded",
"name": "Funded",
"oneLiner": "Fund your favorite projects and get NFT rewards",
"website": "https://funded.app/",
"tags": ["SocialFi", "DeFi", "Bitcoin", "Ethereum", "Chainfusion"],
"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": "100,000+ ICP funded",
"display": "Normal",
"logo": "/img/showcase/funded_logo.webp",
"screenshots": []
},
{
"id": "nfid",
"name": "NFID",
"oneLiner": "Your digital identity for the modern world.",
"website": "https://nfid.one/",
"tags": ["Wallet", "Ethereum", "Chainfusion"],
"twitter": "https://twitter.com/IdentityMaxis",
"description": "Embrace the new era of personal empowerment with NFID, the most advanced digital identity to keep your personal information private and digital assets secure.",
"usesInternetIdentity": true,
"logo": "/img/showcase/nfid_logo.webp"
},
{
"id": "yuku",
"name": "Yuku",
"oneLiner": "Yuku, your gateway to NFTs, Metaverse, and GameFi!",
"website": "https://yuku.app/",
"tags": ["NFT", "Games", "DAO", "Metaverse"],
"display": "Normal",
"stats": "35,222+ users",
"twitter": "https://twitter.com/yukuapp",
"description": "Unlock Limitless Potential: Yuku, Your Gateway to NFTs,Metaverse, and GameFi!",
"usesInternetIdentity": true,
"logo": "/img/showcase/yuku_logo.png",
"screenshots": ["/img/showcase/yuku_screenshot.webp"]
},
{
"id": "golddao",
"name": "Gold DAO",
"oneLiner": "Gold DAO governs Gold Token (GLDT), a fungible token allowing fractional gold ownership; and a USD-pegged stablecoin (USDG), backed by gold (GLDT).",
"website": "https://www.gold-dao.org/",
"tags": ["DeFi", "DAO"],
"twitter": "https://twitter.com/gldrwa",
"description": "Gold DAO governs Gold Token (GLDT), a fungible token allowing fractional gold ownership; and a USD-pegged stablecoin (USDG), backed by gold (GLDT).",
"logo": "/img/showcase/golddao_logo.png"
},
{
"id": "dragginz",
"name": "dragginz",
"oneLiner": "Dragginz is a virtual pets game from the creators of Neopets. Hatch and raise Dragginz to accompany you on your adventures.",
"website": "https://dragginz.io/",
"tags": ["SocialFi", "Games", "DAO"],
"twitter": "https://twitter.com/dragginzgame",
"description": "Dragginz is a virtual pets game from the creators of Neopets. Hatch and raise Dragginz to accompany you on your adventures..",
"logo": "/img/showcase/dragginz_logo.png"
},
{
"id": "icdex",
"name": "ICDex",
"website": "https://avjzx-pyaaa-aaaaj-aadmq-cai.raw.ic0.app/ICDex",
"tags": ["DeFi", "Bitcoin", "Chainfusion"],
"description": "ICDex is the flagship product by ICLighthouse, an orderbook-based DEX that runs 100% on-chain. The world's first order book DEX - made possible by advanced ICP smart contracts",
"usesInternetIdentity": true,
"twitter": "https://twitter.com/ICLighthouse",
"display": "Normal",
"logo": "/img/showcase/icdex_logo.webp",
"screenshots": []
},
{
"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.png",
"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", "Chainfusion"],
"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 its many advantageous DeFi capabilities: HTTPS Outcalls, the BTC integration, and more.",
"usesInternetIdentity": true,
"stats": "1,000+ TPS",
"display": "Large",
"logo": "/img/showcase/bitfinity_evm.png",
"screenshots": ["/img/showcase/bitfinity_showcase.webp"]
},
{
"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",
"Ethereum",
"DAO",
"Chainfusion"
],
"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": "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-dex",
"name": "Sonic DEX",
"oneLiner": "Sonic DEX is an AMM and Perpetual trading platform",
"website": "https://sonic.ooo/",
"tags": ["Ethereum", "DeFi", "DAO", "Chainfusion"],
"description": "Sonic DEX, a multichain decentralized exchange built on the Internet Computer Protocol (ICP), offers a wide range of DeFi services. Users can easily trade tokens and perpetuals, provide liquidity, and participate in the LBP token sale. Users can engage in DAO governance, stake for rewards, and vote on platform decisions.",
"usesInternetIdentity": true,
"github": "https://github.com/sonicdex/sonic-v1",
"twitter": "https://twitter.com/sonic_ooo",
"stats": "$10M+ Trade Volume",
"display": "Normal",
"logo": "/img/showcase/sonic-dex_logo.webp",
"screenshots": ["/img/showcase/sonic-dex_screenshot.webp"]
},
{
"id": "plug",
"name": "Plug Wallet",
"oneLiner": "Decentralized Wallet for the Internet Computer",
"website": "https://plugwallet.ooo/",
"tags": [
"Wallet",
"NFT",
"Tools / Infrastructure",
"Bitcoin",
"Ethereum",
"Chainfusion"
],
"description": "Your Plug into the #InternetComputer Identity + Wallet in one Principal ID Hold, send, swap, deposit cycles, ICP, NFTs and log into IC apps in a click! Available on mobile IOS & Android, and as a browser extension on Chrome & Firefox.",
"github": "https://github.com/Psychedelic/plug",
"stats": "150,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": "catalyze",
"name": "Catalyze",
"website": "https://aqs24-xaaaa-aaaal-qbbea-cai.ic0.app/",
"tags": ["SocialFi", "DAO"],
"description": "Catalyze is an innovative social dapp that serves as a community organizing tool where users can build groups, interact with other members of your community, create/run events, and transact using their Web3 identity and wallet.",
"usesInternetIdentity": true,
"oneLiner": "Manage your Web3 communities and events",
"display": "Large",
"stats": "360+ Communities",
"logo": "/img/showcase/catalyze_logo.webp",
"screenshots": ["/img/showcase/catalyze_screenshot.webp"]
},
{
"id": "juno",
"name": "Juno",
"oneLiner": "Build Web3 at Lightning Speed",
"website": "https://juno.build",
"tags": ["Tools / Infrastructure"],
"twitter": "https://twitter.com/junobuild",
"github": "https://github.com/junobuild/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.jpg"],
"youtube": "https://www.youtube.com/watch?v=mr_9XArcG9Y"
},
{
"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", "Chainfusion"],
"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": "taggr",
"name": "TAGGR",
"website": "https://taggr.link",
"tags": ["SocialFi", "Tools / Infrastructure", "DAO"],
"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 the 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": "stoicwallet",
"name": "Stoic Wallet",
"website": "https://www.stoicwallet.com/",
"tags": ["Wallet", "Ethereum", "Chainfusion"],
"description": "Stoic Wallet by Toniq Labs allows anyone to create a digital wallet, authenticating users through a variety of methods, one of those being Internet Identity. Create accounts, keep an address book, and more. ",
"usesInternetIdentity": true,
"logo": "/img/showcase/stoicwallet_logo.webp",
"screenshots": ["/img/showcase/stoicwallet_screenshot_0.webp"]
},
{
"id": "kleverio",
"name": "Klever.io",
"website": "https://klever.io/",
"tags": ["Wallet", "DeFi", "Ethereum", "Chainfusion"],
"description": "Klever.io is a non-custodial mobile wallet that supports dozens of protocols and is tying them all together with the Internet Computer blockchain. Manage, store, stake, transfer, and in the future, swap ICP right within Klever.io. Klever has integrated with the Internet Computer's Network Nervous System in order to support staking with voting rewards. ",
"logo": "/img/showcase/kleverio_logo.webp",
"screenshots": ["/img/showcase/kleverio_screenshot_0.webp"]
},
{
"id": "nnsfront-enddapp",
"name": "NNS Dapp",
"oneLiner": "Dapp for Staking Neurons + Voting On-Chain",
"website": "https://nns.ic0.app",
"github": "https://github.com/dfinity/nns-dapp",
"tags": [
"Wallet",
"Tools / Infrastructure",
"Bitcoin",
"Ethereum",
"Chainfusion"
],
"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"
},
{
"id": "oisy",
"name": "Oisy Wallet",
"oneLiner": "A novel Ethereum wallet hosted on the Internet Computer",
"website": "https://oisy.com",
"github": "https://github.com/dfinity/oisy-wallet",
"tags": ["Ethereum", "DeFi", "Wallet", "Chainfusion"],
"description": "Crafted for the Internet Computer, Oisy is a unique Ethereum wallet that operates directly within your browser. It is entirely on-chain and secured by chain-key cryptography and Internet Identity.",
"usesInternetIdentity": true,
"logo": "/img/showcase/oisy_logo.svg"
},
{
"id": "trax",
"name": "Trax",
"tags": ["SocialFi", "DAO"],
"twitter": "https://twitter.com/onlyontrax",
"description": "Trax is a content aggregator and social marketplace, catering specifically to music artists and their die-hard fans, often referred to as “superfans”. By facilitating exclusive content drops and events, TRAX aims to help artists cultivate closer relationships with their superfans and generate higher revenue. ",
"website": "https://trax.so/",
"usesInternetIdentity": true,
"logo": "/img/showcase/trax_logo.jpeg"
},
{
"id": "w3ns",
"name": "W3NS - Multichain",
"oneLiner": "An omnichannel notification service on the Internet Computer for any IC, EVM or off-chain application",
"website": "https://www.argonstudios.xyz",
"tags": ["Tools / Infrastructure", "Ethereum", "Chainfusion"],
"description": "A service to support sending of email, SMS and push notifications (both mobile and web) via Internet Computer for IC, EVM (currently supports Polygon, more to come) and off-chain applications wanting to use a distributed and open source sending mechanism. Simply integrate our Polygon contract, or our IC canister, to use it today...",
"stats": "3 early launch partners sending notifications from Polygon",
"logo": "/img/showcase/w3ns_logo.png",
"usesInternetIdentity": false,
"github": "https://github.com/miguelToscano/w3ns",
"youtube": "https://www.youtube.com/@argonstudios",
"twitter": "https://twitter.com/ArgonStudiosXYZ"
},
{
"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.",
"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": "ethereum-canister",
"name": "Ethereum Canister",
"website": "https://www.eiger.co/",
"oneLiner": "A fully trustless access to the Ethereum blockchain data.",
"tags": ["Ethereum", "Tools / Infrastructure", "Chainfusion"],
"description": "The Ethereum canister offers a secure and trustless way to access Ethereum blockchain data within the ICP ecosystem. Behind the scenes, it leverages the helios light Ethereum client which is equipped with the capability to validate the authenticity of fetched data.",
"stats": "17M+ blocks",
"usesInternetIdentity": false,
"github": "https://github.com/eigerco/ethereum-canister",
"logo": "/img/ethereum.svg",
"screenshots": [],
"video": "",
"videoContentType": "video/mp4",
"submittableId": "40732752"
},
{
"id": "origyn",
"name": "Origyn",
"oneLiner": "NFT-Based Authentication for Luxury Goods ",
"website": "https://www.origyn.com/",
"tags": ["NFT", "Tools / Infrastructure", "DAO"],
"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": "Finny",
"website": "https://tyhcm-sqaaa-aaaah-abjya-cai.raw.ic0.app/#/",
"tags": ["DeFi", "Bitcoin", "Chainfusion"],
"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": "23,000+ 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": "decideai",
"name": "DecideAI",
"oneLiner": "A fullstack decentralized AI platform",
"website": "https://decideai.xyz",
"twitter": "https://twitter.com/DecideAI_",
"tags": ["AI", "Tools / Infrastructure"],
"stats": "50,000+ inference requests",
"description": "DecideAI is an ecosystem that consists of three products, Decide Protocol, Decide ID, and Decide Cortex, designed to meet the needs of the high-end, specialized LLM market.",
"usesInternetIdentity": true,
"logo": "/img/showcase/decideai_logo.png",
"screenshots": ["/img/showcase/decideai_screenshot_0.png"],
"github": "https://github.com/modclub-app"
},
{
"id": "querio",
"name": "Querio",
"website": "https://querio.io/",
"tags": ["Tools / Infrastructure"],
"description": "Querio is the most advanced web3.0 search engine of exceptional speed and accuracy, that empowers its users to search over the Internet Computer.",
"logo": "/img/showcase/Querio_Logo.webp",
"screenshots": []
},
{
"id": "cubetopia",
"name": "Cubetopia",
"oneLiner": "Build and own an NFT World on the blockchain",
"website": "https://kqwp7-2yaaa-aaaah-abyna-cai.raw.ic0.app/",
"tags": ["Games", "Metaverse"],
"twitter": "https://twitter.com/TheCubetopia",
"description": "Cubetopia is a Web3 building game where players can create anything on unique blocky islands. Each island is a mutable NFT stored on the Internet Computer blockchain. Anyone can visit these islands on-chain, while the owner of the NFT ownership handles building permissions.",
"stats": "32,500+ ICP volume",
"display": "Large",
"logo": "/img/showcase/cubetopia_logo.webp",
"screenshots": ["/img/showcase/cubetopia_screenshot.webp"]
},
{
"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"
},
{
"name": "Taurus",
"description": "A platform that offers banking-grade custody and everything needed for managing any digital asset.",
"website": "https://www.taurushq.com/",
"logo": "/img/showcase/taurus_logo.png",
"screenshots": [],
"video": "",
"display": "Normal",
"id": "taurus",
"oneLiner": "Banking-grade custody for digital asset management.",
"stats": "Powering 15+ banks",
"tags": ["Wallet", "Tools / Infrastructure", "Enterprise"],
"usesInternetIdentity": false,
"github": "",
"twitter": "",
"youtube": "",
"submittableId": ""
},
{
"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": "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+ users",
"logo": "/img/showcase/internetidentity_logo.webp",
"screenshots": ["/img/showcase/internetidentity_screenshot_0.gif"]
},
{
"id": "Arth",
"name": "Arth",
"tags": ["DeFi", "Wallet", "Bitcoin", "Chainfusion"],
"description": "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.",
"usesInternetIdentity": true,
"website": "https://play.google.com/store/apps/details?id=com.foo.arth&pli=1",
"display": "Normal",
"logo": "/img/showcase/arth_logo.png",
"screenshots": ["/img/showcase/arth_ss.webp"],
"submittableId": "36143434"
},
{
"id": "astrox",
"name": "AstroX ME",
"oneLiner": "A powerful multichain wallet",
"website": "https://astrox.me/#/",
"tags": [
"Tools / Infrastructure",
"Wallet",
"Bitcoin",
"NFT",
"Ethereum",
"Chainfusion"
],
"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": "Normal",
"screenshots": ["/img/showcase/astrox_me_screenshot.webp"]
},
{
"id": "autoroyale",
"name": "AutoRoyale",
"website": "https://cm6iy-sqaaa-aaaam-abmxq-cai.icp0.io/",
"tags": ["Games"],
"twitter": "",
"description": "Jump into this proof of concept battle royale 2D shooter on ICP. Grab gear, outplay the competition, and stay alive as the battleground shrinks. It's all about thinking a few steps ahead. Upgrade weapons, toss grenades, and pull off sneaky ambushes. Invite your pals for a quick match and make sure you play the tutorial to get used to the mechanics.",
"usesInternetIdentity": true,
"display": "Normal",
"stats": "",
"logo": "/img/showcase/autoroyale_logo.png",
"oneLiner": "A fast-paced 2D multiplayer shooter game",
"screenshots": [],
"video": "/img/showcase/autoroyale_video.mp4",
"videoContentType": "video/mp4"
},
{
"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+ users",
"tags": ["SocialFi"],
"usesInternetIdentity": true,
"twitter": "https://twitter.com/signalsicp",
"submittableId": "35639473"
},
{
"id": "stakedicp",
"name": "StakedICP",
"oneLiner": "Non-custodial liquid staking for ICP",
"tags": ["DeFi"],
"description": "StakedICP is the liquid-staking protocol revolutionizing staking on the Internet Computer, putting control in investors' hands. ICP is staked in the NNS DAO, and stakers receive rewards just by holding the stICP token. The stICP token is DeFi-compatible, to support protocols building on the Internet Computer, and always fully-backed by ICP staked in the NNS.",
"usesInternetIdentity": false,
"website": "https://stakedicp.com",
"github": "https://github.com/AegirFinance/StakedICP",
"twitter": "https://twitter.com/StakedICP",
"display": "Normal",
"logo": "/img/showcase/stakedicp_logo.webp",
"screenshots": []
},
{
"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": "cycleops",
"name": "CycleOps",
"description": "Proactive, automated, no-code canister management for the Internet Computer.",
"tags": ["Tools / Infrastructure"],
"website": "https://cycleops.dev",
"twitter": "https://twitter.com/CycleOps",
"logo": "/img/showcase/cycleops_logo.png",
"submittableId": "36320431"
},
{
"id": "dscvr",
"name": "DSCVR",
"oneLiner": "Social portals, community airdrops, crypto tipping on-chain",
"website": "https://dscvr.one/",
"tags": ["SocialFi", "Ethereum", "Chainfusion"],
"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": "Normal",
"logo": "/img/showcase/dscvr_logo.webp",
"screenshots": ["/img/showcase/dscvr_screenshot.webp"]
},
{
"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": "100,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": "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": "2,000+ 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": "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,
"twitter": "https://twitter.com/KawaK_ICP",
"youtube": "",
"submittableId": "35943161"
},
{
"id": "seers",
"name": "Seers",
"website": "https://seers.social/",
"tags": ["SocialFi", "DAO"],
"description": "What if there was decentralized Twitter that included prediction markets? Seers is a 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 is 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, fully on-chain NFT broadcast station. Submit your audio or video content, reach a global audience, and receive recognition and rewards from your listeners. As a listener, enjoy airdrops for actively participating in curating content",
"usesInternetIdentity": true,
"github": "https://github.com/orgs/Canistore",
"twitter": "https://twitter.com/canistore",
"display": "Large",
"logo": "/img/showcase/CaniPlay_logo.png",
"screenshots": ["/img/showcase/CaniPlay_SS.webp"],
"submittableId": "41319392"
},
{
"id": "nuance",
"name": "Nuance",
"website": "https://exwqn-uaaaa-aaaaf-qaeaa-cai.ic0.app/",
"tags": ["SocialFi", "DAO", "Bitcoin", "Chainfusion"],
"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": "ntagle",
"name": "ntagle",
"oneLiner": "Proof of Physical Ownership Platform",
"tags": ["Tools / Infrastructure", "Wallet", "Bitcoin", "Chainfusion"],
"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,
"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": "1,000+ users",
"display": "Normal",
"logo": "/img/showcase/kontribute_logo.webp",
"screenshots": ["/img/showcase/kontribute_screenshot_0.webp"]
},
{
"id": "dstar",
"name": "Dstar",
"website": "https://yunqk-aqaaa-aaaai-qawva-cai.ic0.app/",
"tags": ["NFT"],
"description": "Dstar is an Internet Identity (II) trading marketplace. Since each II is unique, the ICP blockchain treats them as NFTs. Users can trade, purchase, or sell their anonymous blockchain-based authentication accounts on this community-built marketplace. Integrated with Plug wallet, users can search for and purchase any coveted Internet Identity numbers which may be up for auction.",
"oneLiner": "Internet Identity Marketplace",
"display": "Normal",
"logo": "/img/showcase/dstar_logo.webp",
"screenshots": ["/img/showcase/dstar_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": "dwitter",
"name": "Dwitter",
"oneLiner": "AI-powered social network",
"tags": ["SocialFi"],
"description": "Explore Dwitter! Decentralized social network like Twitter, integrated with OpenAI bots. View a shared global feed featuring user-chatbot interactions from around the world.",
"usesInternetIdentity": false,
"logo": "/img/showcase/dwitter_logo.png",
"github": "https://github.com/azhuravel/Dwitter-Dfinity",
"twitter": "https://twitter.com/DwitterWeb3",
"screenshots": [],
"submittableId": 21958145
},
{
"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": "Normal",
"screenshots": ["/img/showcase/itoka_screanshot.svg"]
},
{
"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": "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": "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": "scinet",
"name": "SCINET",
"description": "A licensing application for life-sciences companies. Easily monetize your intellectual property using NFTs.",
"tags": ["NFT", "Tools / Infrastructure"],
"usesInternetIdentity": false,
"website": "https://www.scinet.one/",
"twitter": "https://twitter.com/scinet_inc",
"discord": "https://discord.com/invite/5uH6vpJjeB",
"logo": "/img/showcase/scinet_logo.png",
"submittableId": "33285268"
},
{
"id": "faefolk",
"name": "FaeFolk",
"description": "FaeFolk is a multiplayer, slice of life, NFT role-playing game where you use your NFTs to craft tools, and equipment, and train your skills",
"tags": ["Games", "NFT"],
"website": "https://medium.com/faefolk",
"github": "https://github.com/ICCards/faefolk",
"twitter": "https://twitter.com/_faefolk",
"discord": "https://discord.gg/Fe5qYRZrGp",
"logo": "/img/showcase/faefolk_logo.webp",
"submittableId": "32841408"
},
{
"id": "factland",
"name": "Factland DAO",
"oneLiner": "A Web3 community building decentralized trust in the age of misinformation",
"website": "https://factland.org",
"tags": ["Tools / Infrastructure"],
"description": "Factland is a Web3 DAO with a mission to slow the spread of misinformation online. Factland makes it easy for anyone to flag untrustworthy claims and have them promptly adjudicated by a decentralized community of fact-checkers rewarded in crypto.",
"usesInternetIdentity": true,
"stats": "50+ claims adjudicated",
"logo": "/img/showcase/factland_logo.png",
"github": "https://github.com/Factland",
"youtube": "https://www.youtube.com/channel/UCriPbgLAQ6x5C2Hugfho37Q",
"twitter": "https://twitter.com/factlanddao",
"screenshots": [],
"video": "/img/showcase/factland_video.mp4",
"videoContentType": "video/mp4",
"submittableId": 32780428
},
{
"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",