-
Notifications
You must be signed in to change notification settings - Fork 434
/
showcase.json
4930 lines (4930 loc) · 188 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": "bitfinity-evm",
"name": "Bitfinity EVM",
"website": "https://bitfinity.network/",
"tags": [
"DeFi",
"Tools / Infrastructure",
"Ethereum",
"Chain Fusion"
],
"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": "openchat",
"name": "OpenChat",
"oneLiner": "Decentralized alternative to WhatsApp",
"website": "https://oc.app/",
"tags": [
"SocialFi",
"Bitcoin",
"DAO",
"Chain Fusion"
],
"twitter": "https://x.com/OpenChat",
"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",
"Chain Fusion"
],
"twitter": "https://x.com/ICPSwap",
"description": "ICPSwap is an AMM DEX built completely onchain 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 onchain oracles for secure and reliable decentralized data feeding and automation across multiple chains.",
"tags": [
"Tools / Infrastructure",
"DeFi"
],
"description": "The fully onchain 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",
"Chain Fusion"
],
"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",
"Chain Fusion"
],
"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": "Your Gateway to NFTs, Metaverse, and an AI Agent.",
"website": "https://yuku.app/",
"tags": [
"NFT",
"Games",
"DAO",
"Metaverse",
"AI"
],
"display": "Normal",
"stats": "35,222+ users",
"twitter": "https://twitter.com/yukuapp",
"description": "Your Gateway to NFTs, Metaverse, and an AI Agent.",
"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"
],
"usesInternetIdentity": true,
"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.svg"
},
{
"id": "icdex",
"name": "ICDex",
"website": "https://avjzx-pyaaa-aaaaj-aadmq-cai.raw.ic0.app/ICDex",
"tags": [
"DeFi",
"Bitcoin",
"Chain Fusion"
],
"description": "ICDex is the flagship product by ICLighthouse, an orderbook-based DEX that runs 100% onchain. 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": "yral",
"name": "Yral",
"oneLiner": "Token rewards for both content creators and lurkers",
"website": "https://yral.com",
"tags": [
"SocialFi",
"Games",
"DAO"
],
"description": "Yral is a decentralized short-form video-based social media platform, which integrates gamification on 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": false,
"stats": "200,000+ users",
"logo": "/img/showcase/yral_logo.png",
"github": "https://github.com/yral-dapp",
"twitter": "https://x.com/Yral_app",
"screenshots": [
"/img/showcase/yral_screenshot_0.webp"
],
"videoContentType": "video/mp4",
"video": "/img/showcase/yral_video.mp4"
},
{
"id": "bioniq",
"name": "Bioniq",
"oneLiner": "The fastest Ordinals marketplace",
"website": "https://bioniq.io/",
"tags": [
"Bitcoin",
"Enterprise",
"NFT",
"Chain Fusion"
],
"twitter": "https://x.com/bioniqMarket",
"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": "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",
"Chain Fusion"
],
"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": "omnitynetwork",
"name": "Omnity Network",
"oneLiner": "1st 100% trustless omnichain interoperability protocol that connects Bitcoin, Ethereum, Appchains, L1s/L2s/L3s within Omnity Network.",
"tags": [
"Bitcoin",
"Ethereum",
"Tools / Infrastructure",
"Chain Fusion",
"AI"
],
"twitter": "https://x.com/OmnityNetwork",
"description": "A turbo engine for the Bitcoin Token Boom. Includes the first 100% trustless omnichain interoperability protocol that extends all Runes primitives and AI agent for dynamic token distribution.",
"usesInternetIdentity": false,
"website": "https://www.omnity.network/",
"twiter": "https://twitter.com/OmnityNetwork",
"display": "Normal",
"logo": "/img/showcase/omnitynetwork_logo.jpeg",
"screenshots": [
"/img/showcase/omnity_screenshot.png"
]
},
{
"id": "sonic-dex",
"name": "Sonic DEX",
"oneLiner": "Sonic DEX is an AMM and Perpetual trading platform",
"website": "https://sonic.ooo/",
"tags": [
"Ethereum",
"DeFi",
"DAO",
"Chain Fusion"
],
"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",
"Chain Fusion"
],
"twitter": "https://x.com/plug_wallet",
"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": "helix",
"name": "Helix Markets",
"oneLiner": "Bringing true ownership and full transparency to crypto trading",
"website": "https://www.helixmarkets.io/",
"tags": [
"Ethereum",
"Bitcoin",
"DeFi",
"Chain Fusion"
],
"display": "Normal",
"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": "catalyze",
"name": "Catalyze",
"website": "https://aqs24-xaaaa-aaaal-qbbea-cai.ic0.app/",
"tags": [
"SocialFi",
"DAO"
],
"twitter": "https://x.com/catalyze_one",
"description": "Catalyze is building the new Web3 social learning hub: Communities, Events & Seamless Token Transfer. Now onboarding KOLs.",
"usesInternetIdentity": true,
"oneLiner": "Manage your Web3 communities and events",
"display": "Large",
"stats": "360+ Communities",
"logo": "/img/showcase/catalyze_logo.png",
"screenshots": [
"/img/showcase/catalyze_screenshot.png"
]
},
{
"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": "kinic",
"name": "Kinic",
"oneLiner": "The world's first Web3 search engine",
"website": "https://74iy7-xqaaa-aaaaf-qagra-cai.ic0.app/",
"tags": [
"Tools / Infrastructure",
"DAO",
"AI"
],
"twitter": "https://twitter.com/kinic_app?s=20&t=PVKALcCRCdZIgr0U4sDWeg",
"description": "Kinic provides artificial intelligence tooling for the new web. Deploy vector databases, machine learning instances, and much more leveraging web3.",
"stats": "3,000,000+ searches",
"display": "Large",
"usesInternetIdentity": true,
"logo": "/img/showcase/kinic_logo.webp",
"screenshots": [
"/img/showcase/kinic_screenshot.webp"
]
},
{
"id": "taggr",
"name": "TAGGR",
"website": "https://taggr.link",
"tags": [
"SocialFi",
"Tools / Infrastructure",
"DAO"
],
"twitter": "https://twitter.com/TaggrNetwork",
"description": "Fully onchain 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",
"Chain Fusion"
],
"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",
"Chain Fusion"
],
"twitter": "https://x.com/klever_io",
"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 Onchain",
"website": "https://nns.ic0.app",
"github": "https://github.com/dfinity/nns-dapp",
"tags": [
"Wallet",
"Tools / Infrastructure",
"Bitcoin",
"Ethereum",
"Chain Fusion"
],
"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": "Browser-based multi-chain wallet",
"website": "https://oisy.com",
"github": "https://github.com/dfinity/oisy-wallet",
"tags": [
"Ethereum",
"DeFi",
"Wallet",
"Chain Fusion"
],
"twitter": "https://x.com/OISY_Wallet",
"description": "Oisy is a new browser-based, self-custodial and multi-chain wallet powered by Internet Computer's chain fusion technology.",
"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",
"Chain Fusion"
],
"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 Onchain Regenerative Creator-Consumer Economy",
"website": "https://rubaru.app/",
"tags": [
"SocialFi"
],
"description": "RuBaRu aims to create a vibrant 100% Onchain 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",
"Chain Fusion"
],
"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": "boom-dao",
"name": "Boom DAO",
"oneLiner": "Powering the next generation of fully onchain 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% onchain 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 onchain 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": "Normal",
"stats": "10,000+ users",
"logo": "/img/showcase/plethora_logo.webp",
"screenshots": [
"/img/showcase/plethora_screenshot.webp"
]
},
{
"id": "decideai",
"name": "DecideAI",
"display": "Large",
"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"
],
"twitter": "https://x.com/querio_io",
"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 onchain, 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",
"Chain Fusion"
],
"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",
"Chain Fusion"
],
"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"
],
"stats": "450 canisters monitored",
"github": "https://github.com/CycleOperators/CycleOps/",
"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 onchain",
"website": "https://dscvr.one/",
"tags": [
"SocialFi",
"Ethereum",
"Chain Fusion"
],
"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": "Onchain 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": "Onchain 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"
],
"twitter": "https://x.com/DSocialApp",
"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": []
},
{