forked from dfinity/portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
communityProjects.ts
2072 lines (2070 loc) · 79.7 KB
/
communityProjects.ts
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
import { SampleItem } from "@site/src/components/Common/sampleItems";
const communityProjects: SampleItem[] = [
{
index: 0,
title: "Spinner Cash",
body: "Safeguard your financial privacy with zero-knowledge proofs",
links: {
github: "https://github.com/spinner-cash/spinner",
livePreview: "https://spinner.cash",
external: "https://supernova.devpost.com/submissions/327085-spinner-cash",
otherLinks: [],
},
domains: ["Asynchronous DeFi"],
level: "advanced",
languages: ["rust", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/spinner-cash.png",
},
{
index: 1,
title: "Kontribute",
body: "Kontribute brings readers, writers and NFTs together. Write some lore for your NFT collection or support your favourite writer by buying their NFTs - Web 3.0 creative writing with NFTs",
links: {
github: "https://github.com/teambonsai/bonsai_dapp",
livePreview: "https://3ezq7-iqaaa-aaaal-aaacq-cai.raw.ic0.app/",
external: "https://supernova.devpost.com/submissions/326818-kontribute",
otherLinks: ["https://mobile.twitter.com/TeamBonsai_ICP"],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/kontribute.png",
},
{
index: 2,
title: "dSquad",
body: "A new chapter of the Internet is opening. Start by minting your avatar, then take part in the adventure and get rewarded as your explore a new wave of decentralized applications.",
links: {
github: "https://github.com/ICPSquad/Squad",
livePreview: "https://x3ul6-2aaaa-aaaah-abjda-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/328183-dsquad",
otherLinks: [
"https://dsquad.gitbook.io/docs/",
"https://entrepot.app/marketplace/icpsquad2",
"https://twitter.com/dSquadNFT",
],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/dsquad.png",
},
{
index: 3,
title: "ICTC",
body: "IC Transaction Coordinator (ICTC) is a distributed transaction framework for Defi applications on IC network. It supports Motoko language. The core idea of ICTC is inspired by the DTC (Distributed Transaction Coordinator), which is commonly used in the financial sector.",
links: {
github: "https://github.com/iclighthouse/ICTC",
livePreview: "https://cmqwp-uiaaa-aaaaj-aihzq-cai.raw.ic0.app",
external: "https://supernova.devpost.com/submissions/328779-ictc",
otherLinks: ["https://youtu.be/fxG4vunET8s"],
},
languages: ["motoko"],
domains: ["Asynchronous DeFi"],
level: "advanced",
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/ictc.png",
},
{
index: 4,
title: "Proof of Personhood",
body: "a Sybil-proof identity system powered by decentralized AI human detection.",
links: {
github: "https://github.com/AstroxNetwork/Proof-of-Personhood",
livePreview: "http://thehuman.id/",
external:
"https://supernova.devpost.com/submissions/332526-proof-of-personhood",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["rust"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/proof-of-personhood.png",
},
{
index: 5,
title: "Kinic",
body: "A search engine for Web3.",
links: {
github: "https://github.com/wyattbenno777/kinic",
livePreview: "https://kinic.io/",
external: "https://supernova.devpost.com/submissions/327859-kinic",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/kinic.png",
},
{
index: 6,
title: "Signals",
body: "A unique SocialFi space for making connections, discovering events and creating decentralized communities. Signals is a DAO. The more you interact with it, the greater say you have in its governance.",
links: {
github: "https://github.com/bertiespell/Signals",
livePreview: "https://2fydv-iqaaa-aaaak-qap6q-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/327368-signals",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["rust", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/signals.png",
},
{
index: 7,
title: "FaeFolk",
body: "FaeFolk is an NFT-based role-playing game where you use your NFTs to craft tools & equipment, train your skills and ultimately fight your way through dungeons and find treasure.",
links: {
github: "https://github.com/ICCards/faefolk",
livePreview: "https://ge5fs-qyaaa-aaaap-qam6a-cai.raw.ic0.app/",
external: "https://supernova.devpost.com/submissions/326797-faefolk",
otherLinks: ["https://github.com/ICCards/Server"],
},
domains: ["GameFi"],
level: "advanced",
languages: ["rust", "motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/faefolk.png",
},
{
index: 8,
title: "Saga Tarot",
body: "Open source tarot ecosystem on the IC. Nobody owns Tarot. Everybody owns Web3.",
links: {
github: "https://github.com/sagacards/bazaar",
livePreview: "https://l2jyf-nqaaa-aaaah-qadha-cai.raw.ic0.app/",
external: "https://supernova.devpost.com/submissions/334420-saga-tarot",
otherLinks: [
"https://bazaar.saga.cards",
"https://table.saga.cards",
"https://directory.saga.cards",
"https://www.npmjs.com/settings/opentarot/packages",
"https://github.com/sagacards/legends-nft",
],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/saga-tarot.png",
},
{
index: 9,
title: "Enoki DEX",
body: "Completely Async and Scalable DEX: Swap, Earn, and be a Market Maker",
links: {
github: "https://github.com/enoki-dex",
livePreview: "https://5ba5l-caaaa-aaaag-qaoja-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/334178-enoki-dex",
otherLinks: ["https://enoki.ooo"],
},
domains: ["Asynchronous DeFi"],
level: "advanced",
languages: ["rust"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/enoki-dex.png",
},
{
index: 10,
title: "ICMaps",
body: "ICMaps brings maps to the internet computer. With the ICMaps frontend you can install your own map server provided by ICMaps on Canister and integrate maps into Web3, Web2 and even desktop GIS apps.",
links: {
github: "https://github.com/stumpigit/icmaps",
livePreview: "https://discord.gg/PruV4RxD9S",
external: "https://supernova.devpost.com/submissions/326804-icmaps",
otherLinks: ["https://icmaps.org"],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/icmaps.png",
},
{
index: 11,
title: "CanDB",
body: "Meet CanDB, the first flexible and truly horizontally scalable NoSQL database built for the Internet Computer.\n\nhttps://www.canscale.dev",
links: {
github: "https://github.com/canscale/supernova-candb-demo",
livePreview: "https://pliqr-fqaaa-aaaan-qalpq-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/327567-candb",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/candb.jpeg",
},
{
index: 12,
title: "STKRS",
body: "Stkrs is the social identity app for Web 3.0. Users can express themselves, trust others online, and revolutionize our governance, all while being anon and maintaining privacy.",
links: {
github: "https://github.com/arjunpat/stkrs.me",
livePreview: "https://priqv-iqaaa-aaaak-ab4rq-cai.ic0.app/#/",
external: "https://supernova.devpost.com/submissions/333208-stkrs",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/stkrs.png",
},
{
index: 13,
title: "Paws Arena - Multiplayer PVP Play to Earn",
body: "This is the cutest, most fun and competitive turn-based play to earn multiplayer game on the ICP. Players will fight in the arena and earn $PAW Tokens which will be used to buy in-game items.",
links: {
github: "https://github.com/icla692/paws_arena_ickitties",
livePreview: "https://knbkj-fiaaa-aaaan-qaadq-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/333263-paws-arena-multiplayer-pvp-play-to-earn",
otherLinks: [
"https://linktr.ee/ickitties",
"https://twitter.com/ICKitties/status/1469684414359683077?s=20&t=4ES-GxYs0keCC_mjVCGWVA",
],
},
domains: ["GameFi"],
level: "advanced",
languages: ["javascript"],
contentType: ["code samples", "community repo", "live demos"],
image:
"/img/community-projects/paws-arena-multiplayer-pvp-play-to-earn.jpg",
},
{
index: 14,
title: "IC Avatar Creator",
body: "The IC Avatar Creator allows users to create and manage avatars for the open metaverse. The project includes GLB avatars that are minted to the Internet Computer using the DIP721v2 token standard.",
links: {
github: "https://github.com/AtlasFoundation/AvatarCreator-IC-Project",
external:
"https://supernova.devpost.com/submissions/331595-ic-avatar-creator",
otherLinks: ["https://www.npmjs.com/package/avatarcreator"],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["rust", "motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/ic-avatar-creator.jpg",
},
{
index: 15,
title: "metamob",
body: "Create, donate, vote, sign and fund extraordinary mobilizations!",
links: {
github: "https://github.com/av1ctor/metamob",
livePreview: "https://wbpm2-ciaaa-aaaan-qajta-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/327261-metamob",
otherLinks: ["https://github.com/av1ctor/mo-table"],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/metamob.png",
},
{
index: 16,
title: "FoxIC",
body: "A tool allowing MetaMask users to enter IC ecosystem",
links: {
github: "https://github.com/AstroxNetwork/FoxIC",
livePreview: "https://ip5qp-gaaaa-aaaah-ablla-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/334321-foxic",
otherLinks: ["https://github.com/AstroxNetwork/ICSnap"],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["rust"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/foxic.jpg",
},
{
index: 17,
title: "GalacticWar",
body: "GalacticWar is a novel protocol that mixes NFT, Gaming and DEFI .",
links: {
github: "https://github.com/harshu4/GalacticWar",
livePreview: "https://rlx5r-ziaaa-aaaal-qa7qq-cai.raw.ic0.app/",
external: "https://supernova.devpost.com/submissions/334597-galacticwar",
otherLinks: [
"https://uqnba-7yaaa-aaaal-qa7pq-cai.raw.ic0.app/",
"https://a4gq6-oaaaa-aaaab-qaa4q-cai.raw.ic0.app/?id=tdja5-gyaaa-aaaag-aaoeq-cai",
],
},
domains: ["GameFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/galacticwar.png",
},
{
index: 18,
title: "DeTi: Decentralized Time Travel",
body: "Run code on your canister in the future!",
links: {
github: "https://github.com/akshay-rakheja/supernova2022",
livePreview: "https://fl5mh-daaaa-aaaap-qalja-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/332847-deti-decentralized-time-travel",
otherLinks: [
"https://d7hzd-wiaaa-aaaap-qamba-cai.ic0.app/",
"https://npmjs.com/package/@raydeck/useplug",
],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["typescript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/deti-decentralized-time-travel.png",
},
{
index: 19,
title: "NFT Exchange",
body: "The NFT Exchange for Web 3.0",
links: {
github: "https://github.com/IC-Difinity-Project",
livePreview: "https://eytcp-gaaaa-aaaap-aagna-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/333058-nft-exchange",
otherLinks: [
"https://docs.google.com/presentation/d/104xr9WEgrpsZqwqPxQBZA-PNJUYNMei3kbQ7aqJz16I/edit?usp=sharing",
],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/nft-exchange.jpg",
},
{
index: 20,
title: "iLearnX Beyond Web3 (By Yaruhito Project)",
body: "We offer all-in-one Web3developer learning platform: roadmap, course materials, learning community, support system&hackathon opportunity hosted on ICP for aspired Web3 developers/challengers.",
links: {
github: "https://github.com/AcmeGamer/IPEX",
livePreview: "https://aac5l-aiaaa-aaaam-qaqla-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/334237-ilearnx-beyond-web3-by-yaruhito-project",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image:
"/img/community-projects/ilearnx-beyond-web3-(by-yaruhito-project).png",
},
{
index: 21,
title: "Cronacle + Freeos: A cross-chain oracle for a democratic UBI",
body: "Freeos, a democratic UBI—where participants steer the economy through a democratically elected monetary policy each week—connects to a novel type of decentralised, cross-chain oracle called Cronacle",
links: {
github: "https://github.com/orgs/FreeosDAO/repositories",
livePreview: "https://xwqat-7aaaa-aaaad-qafaq-cai.raw.ic0.app",
external:
"https://supernova.devpost.com/submissions/329755-cronacle-freeos-a-cross-chain-oracle-for-a-democratic-ubi",
otherLinks: [
"https://medium.com/freedao/freeos-supernova-guide-2577d747b423",
"https://www.protonscan.io/account/cronacle?loadContract=true&tab=Tables&account=cronacle&scope=cronacle&limit=100&table=prices",
],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image:
"/img/community-projects/cronacle-+-freeos-a-cross-chain-oracle-for-a-democratic-ubi.jpg",
},
{
index: 22,
title: "NnsDAO Protocol",
body: "NnsDAO is a boundaryless autonomous organization, which provides some basic modular programmable services for building the world of DAOn.",
links: {
github: "https://github.com/NnsDao/nnsdao_sdk",
livePreview: "https://h637e-ziaaa-aaaaj-aaeaa-cai.raw.ic0.app/",
external:
"https://supernova.devpost.com/submissions/326858-nnsdao-protocol",
otherLinks: ["https://github.com/NnsDao/nomos-v1"],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["rust", "motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/nnsdao-protocol.png",
},
{
index: 23,
title: "པ་ཀྲ་ཧེ་། Bazahei: The first ICP-XRP cross-chain NFT",
body: "We pioneer a general cross-chain NFT solution from IC to XRP to promote the regional and under-represented culture.",
links: {
github: "https://github.com/Itoka-DAO/IC-XRP",
livePreview: "https://aack7-jaaaa-aaaai-acl6a-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/329724-bazahei-the-first-icp-xrp-cross-chain-nft",
otherLinks: [
"https://github.com/Itoka-DAO/xrp_server",
"https://github.com/Itoka-DAO/icxrp",
],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image:
"/img/community-projects/bazahei-the-first-icp-xrp-cross-chain-nft.png",
},
{
index: 24,
title: "SIGMA DEFI",
body: "SIGMA DEFI is a DeFi service and tool for developers and investors interested in IC,providing services without coding1. Multi sender2. Create DIP 203. Generate NFT and mint4. Fiat Gateways",
links: {
github: "https://github.com/TheVanquiser/SIGMADEFI",
external: "https://supernova.devpost.com/submissions/329753-sigma-defi",
otherLinks: [],
},
domains: ["Asynchronous DeFi"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/sigma-defi.png",
},
{
index: 25,
title: "IC Web3D Engine",
body: "A lightweight game engine fully deployed on the IC.Users can easily create their own decentralized games or other 3D application scenarios on the IC with some simple operations",
links: {
github: "https://github.com/IC-Web3D-Engine",
livePreview: "https://q7vk3-myaaa-aaaak-qarcq-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/334588-ic-web3d-engine",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["javascript", "motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/ic-web3d-engine.png",
},
{
index: 26,
title: "Texas Hold'em",
body: 'There is a famous saying in Texas Hold\'em: "Victory comes not from your opponent making more mistakes, but from you making fewer".',
links: {
github: "https://github.com/NnsDao/ICTexas-UI",
livePreview: "https://lm5fh-ayaaa-aaaah-aafua-cai.raw.ic0.app/#/",
external:
"https://supernova.devpost.com/submissions/334184-texas-hold-em",
otherLinks: [],
},
domains: ["GameFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/texas-hold'em.png",
},
{
index: 27,
title: "MUSALL",
body: "Music ownership is broken! At MUSALL we aim to change ownership to a shared model. Musicians create a contract that is fair and transparent. Fans purchase said contracts. All earn through royalties.",
links: {
github: "https://github.com/fowlerlee/musall",
external: "https://supernova.devpost.com/submissions/334192-musall",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/musall.png",
},
{
index: 28,
title: "News Bias Check",
body: "Decentralised application to help combat fake news and reduce bias in information consumption. Chrome extension that uses backend on IC network shows bias/accuracy info about all news articles online.",
links: {
github: "https://github.com/jayshreeanand/news-bias-check",
livePreview: "https://77oii-eaaaa-aaaal-aaydq-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/334583-news-bias-check",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/news-bias-check.jpeg",
},
{
index: 29,
title: "Questions & Answers",
body: "Ask Questions.. Share Answers.. Earn Coins..",
links: {
github: "https://github.com/7flash/internet-computer-dapp",
livePreview: "https://u75p2-siaaa-aaaap-aafaq-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/327670-questions-answers",
otherLinks: ["https://youtu.be/lBz4g-gow2E"],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/questions-and-answers.jpg",
},
{
index: 30,
title: "Cratch",
body: "The Future of Content Creation",
links: {
github: "https://github.com/skidrow8852/Cratch_Platform_V1",
livePreview: "https://cratch.io/",
external: "https://supernova.devpost.com/submissions/330315-cratch",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/cratch.png",
},
{
index: 31,
title: "Leap",
body: "Leap is a market for information. Existing online forums have little incentives for users to provide high-quality answers. Leap allows users to reward others financially to get great answers quickly.",
links: {
github: "https://github.com/Matlor/Information-Market",
external: "https://supernova.devpost.com/submissions/334221-leap",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/leap.gif",
},
{
index: 32,
title: "MetaBio",
body: "MetaBio is a Web3 application to connect gardeners, farmers to crypto world. We aim to be the leading Web3 application for gardening communities and their data to enterprise or biology experts.",
links: {
github: "https://github.com/viefam/metabio-ic",
livePreview: "https://testflight.apple.com/join/M6DTlUAc",
external: "https://supernova.devpost.com/submissions/329759-metabio",
otherLinks: [
"https://drive.google.com/file/d/1Ky1aIM3PbbabwFdjyUjXSkz2edAbHbKc/view",
],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/metabio.png",
},
{
index: 33,
title: "Donainvest",
body: "Donainvest is a donation-investment platform on which the market cap is in proportion to the social impact and social workers are able to continuously fundraise without crypto-related licenses.",
links: {
github: "https://github.com/kentomisawa/donainvest",
livePreview:
"https://xd.adobe.com/view/da9964cd-a5e2-4ee0-bd15-c4898d792175-8fca/",
external: "https://supernova.devpost.com/submissions/334181-donainvest",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["rust"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/donainvest.gif",
},
{
index: 34,
title: "IC1101 iUSD",
body: "MakerDAO with no jokes.",
links: {
github: "https://github.com/ic1101-iusd",
livePreview: "https://mk2a2-miaaa-aaaak-aavra-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/329970-ic1101-iusd",
otherLinks: [
"https://docs.google.com/presentation/d/1cHaNDOccipyeUVnzGdDNQi1p8BO2KupqpuSSfZJRJaE/edit?usp=sharing",
],
},
domains: ["Asynchronous DeFi"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/ic1101-iusd.jpeg",
},
{
index: 35,
title: "Secure Canister Communication on the IC Blockchain",
body: "We provide a framework where sensitive messages can be securely passed between canisters, i.e to avoid man-in-the-middle attacks. Our solution allows secrets to be securely communicated.",
links: {
github:
"https://github.com/MaithreyaSitaraman/secure_canister_communication_IC_blockchain",
external:
"https://supernova.devpost.com/submissions/333088-secure-canister-communication-on-the-ic-blockchain",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image:
"/img/community-projects/secure-canister-communication-on-the-ic-blockchain.png",
},
{
index: 36,
title: "Exponent",
body: "Exponent is a suite of products that make NFTs easy for creators and game developers. Exponent currently consists of an NFT canister standard (next gen. EXT standard) and a CLI tool for developers.",
links: {
github: "https://github.com/Toniq-Labs/exponent-cli",
external: "https://supernova.devpost.com/submissions/334153-exponent",
otherLinks: [],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/exponent.gif",
},
{
index: 37,
title: "Ontics",
body: "Authoritative source of release images of all blockchain technologies",
links: {
github: "https://github.com/KOSASIH/Ontics",
external: "https://supernova.devpost.com/submissions/326882-ontics",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["javascript"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/ontics.png",
},
{
index: 38,
title: "planzApp",
body: "A DApp that enables users to make everyday plans within a smart, connected and decentralized economy",
links: {
github: "https://github.com/SuperNova-Planzapp/planzapp_reactjs",
livePreview: "https://gr2u7-rqaaa-aaaap-qam5q-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/326834-planzapp",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/planzapp.jpeg",
},
{
index: 39,
title: "Landlord",
body: "Landlord is a DApp where users can trade and invest in real-estate easily & securely. It eliminates the risk of real-estate scam, and creates a safe heaven where sellers can sell, buyers can buy etc.",
links: {
github: "https://github.com/landlord-limited",
external: "https://supernova.devpost.com/submissions/327503-landlord",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/landlord.jpg",
},
{
index: 40,
title: "DeSu - Decentralized Survey App",
body: "A decentralized platform for conducting paid and unpaid surveys that incentivizes the traditional survey-taking process and has something in store for both the parties in it.",
links: {
github:
"https://github.com/decentrazone/DeSu-Decentralised-Survey-Platform-Supernova/",
livePreview: "https://i3h6n-siaaa-aaaap-aahaq-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/333957-desu-decentralized-survey-app",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/desu-decentralized-survey-app.png",
},
{
index: 41,
title: "ICES",
body: "a storage and analysis service for canister's event logs on IC",
links: {
github: "https://github.com/icpfans-xyz/ices",
livePreview: "https://ices.one/",
external: "https://supernova.devpost.com/submissions/334450-ices",
otherLinks: [],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko", "rust", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/ices.png",
},
{
index: 42,
title: "dfxIoT",
body: "Connecting real-world data into Internet Computer using verifiable and trusted IoT Devices and incentivize data-providers with tokens",
links: {
github: "https://github.com/marspoolxyz/dfx2IoT",
livePreview:
"https://docs.google.com/presentation/d/10-LrMCVAyKQaRLiBvnQ2mJ6oyzoAopacayWexG3GJs8/edit?usp=sharing",
external: "https://supernova.devpost.com/submissions/334289-dfxiot",
otherLinks: ["https://bit.ly/SuperNova_dfxIoT"],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/dfxiot.jpeg",
},
{
index: 43,
title: "Dear Diary",
body: "Dear Diary is the first decentralized market place that will allow users to sell their diaries as NFTs. It is developed on Web3 on the Internet Computer, Motoko backend and React.js frontend.",
links: {
github: "https://github.com/nahrinoda/dear-diary",
external: "https://supernova.devpost.com/submissions/327321-dear-diary",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/dear-diary.png",
},
{
index: 44,
title: "Sustainations DAO",
body: "The first SDG (Sustainable Development Goals) DAO on Dfinity. \n💚 SUSTAINATIONS is a global DAO of change-makers, and builders who work together to write a greener future for the Earth.",
links: {
github: "http://github.com/triipme/sustainations_dao",
livePreview: "https://youtu.be/pe84UGSXOuk",
external:
"https://supernova.devpost.com/submissions/329671-sustainations-dao",
otherLinks: ["http://sustainations.com/"],
},
domains: ["Public Good / Social Impact"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/sustainations-dao.jpeg",
},
{
index: 45,
title: "Tourapin",
body: "Vacation guides by your favorite travel influencers",
links: {
github: "https://github.com/BreeDay/Tourapin",
external: "https://supernova.devpost.com/submissions/334356-tourapin",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/tourapin.png",
},
{
index: 46,
title: "IC Birds",
body: "Play with you IC Birds nfts on our decentralized games. Collect tokens and improve your birds skills to beat your best score and grind the leaderboard !",
links: {
github: "https://github.com/leo-ship-it/icbirds-public",
livePreview: "https://yqtpa-pqaaa-aaaan-qadba-cai.ic0.app/home",
external: "https://supernova.devpost.com/submissions/328423-ic-birds",
otherLinks: [],
},
domains: ["GameFi"],
level: "advanced",
languages: ["motoko", "javascript", "rust"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/ic-birds.png",
},
{
index: 47,
title: "Candid+",
body: "Candid+ is the better Candid UI with test cases and logging. To build the hub for IC developers and enterprises, we will integrate the entire lifecycle of the development for canisters.",
links: {
github: "https://github.com/Astrapolis/ICHub",
livePreview: "https://4cmdj-pqaaa-aaaal-qa62a-cai.ic0.app",
external: "https://supernova.devpost.com/submissions/330304-candid",
otherLinks: ["http://hub.icp.xyz"],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["rust"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/candid+.jpg",
},
{
index: 48,
title: "Honest Ticket Machine",
body: "We’re building the tools to empower creators to work without fear of copyright and encourage collaboration rather than competition over IP.",
links: {
github: "https://github.com/Amata-World-Hackathons/honest-ticket-machine",
livePreview: "https://mymdv-biaaa-aaaan-qam2q-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/333151-honest-ticket-machine",
otherLinks: [],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/honest-ticket-machine.png",
},
{
index: 49,
title: "Splash",
body: "Figma for Web3",
links: {
github: "https://github.com/gupnik/splash",
livePreview: "https://d6uqw-tyaaa-aaaap-aag5q-cai.ic0.app/",
external: "https://supernova.devpost.com/submissions/331672-splash",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["rust", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/splash.png",
},
{
index: 50,
title: "icApps",
body: "Internet Computer projects community portal 🌀",
links: {
github: "https://github.com/tomkoom/icApps",
livePreview: "https://n7ib3-4qaaa-aaaai-qagnq-cai.raw.ic0.app/#/",
external: "https://supernova.devpost.com/submissions/328318-icapps",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/icapps.png",
},
{
index: 51,
title: "Ceto",
body: "The first order book trading platform of fractional noun-fungible tokens(F-NFTs) and a professional marketplace for crypto collectibles.",
links: {
github: "https://github.com/Ceto-Labs",
livePreview: "https://4jz7p-7yaaa-aaaai-qhobq-cai.raw.ic0.app/",
external: "https://supernova.devpost.com/submissions/326863-ceto",
otherLinks: [],
},
domains: ["Asynchronous DeFi"],
level: "advanced",
languages: ["rust", "motoko", "javascript"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/ceto.jpg",
},
{
index: 52,
title: "Symposium Futura",
body: "a community owned blog that curates and incentivizes exceptional content on philosophy, scientific inquiry, and the future of tech",
links: {
github: "https://github.com/mourginakis/symposium_futura",
livePreview: "https://mzgdj-vqaaa-aaaag-qanaa-cai.ic0.app/",
external:
"https://supernova.devpost.com/submissions/330681-symposium-futura",
otherLinks: [],
},
domains: ["SocialFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/symposium-futura.png",
},
{
index: 53,
title: "ICLand",
body: "ICLand powers tokenized communities by connecting Web3 identities to social spaces & delivering key token data to communities. First tools: Discord token holder verification; sales & listings bot.",
links: {
github: "https://github.com/renartlabsicp",
livePreview: "https://kwuck-oaaaa-aaaad-qcsja-cai.ic.fleek.co/",
external: "https://supernova.devpost.com/submissions/334115-icland",
otherLinks: [],
},
domains: ["Blue Sky"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/icland.png",
},
{
index: 54,
title: "Mixverse",
body: "Curate your space, Enjoy metaverse!",
links: {
github: "https://github.com/mix-labs/",
livePreview:
"https://drive.google.com/file/d/1F7BRVkyRiKCV9xZ_Vdsl3TF2JqjCq_os/view",
external: "https://supernova.devpost.com/submissions/334372-mixverse",
otherLinks: ["https://mixverse.vercel.app/"],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo", "live demos"],
image: "/img/community-projects/mixverse.png",
},
{
index: 55,
title: "Metaspeare",
body: "Allowing users to mix NFTs to mint a new one with properties from the parent NFTs genome.",
links: {
github: "https://github.com/BreeDay/Metaspeare",
external: "https://supernova.devpost.com/submissions/334594-metaspeare",
otherLinks: [],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/metaspeare.png",
},
{
index: 56,
title: "Meta Yield - liquid staking crowdfunding platform for ICP.",
body: "Meta Yield fundraising mechanism leverages staking, ICP backers only exchange their future Neuron rewards for a project’s token and get to keep their ICP, thus de-risking the crowdfunding process.",
links: {
github: "https://github.com/Narwallets/meta-yield-ic",
external:
"https://supernova.devpost.com/submissions/326851-meta-yield-liquid-staking-crowdfunding-platform-for-icp",
otherLinks: [],
},
domains: ["Asynchronous DeFi"],
level: "advanced",
languages: ["motoko"],
contentType: ["code samples", "community repo"],
image:
"/img/community-projects/meta-yield-liquid-staking-crowdfunding-platform-for-icp.png",
},
{
index: 57,
title: "Bonsai ICP",
body: "A GameFi in Internet Computer platform",
links: {
github: "https://github.com/conglt10/bonsai-icp",
external: "https://supernova.devpost.com/submissions/333311-bonsai-icp",
otherLinks: [],
},
domains: ["GameFi"],
level: "advanced",
languages: ["rust", "javascript"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/bonsai-icp.png",
},
{
index: 58,
title: "C3-Protocol (Co-Created Collectibles)",
body: "CCC is a platform for on-chain creation and collaboration. It takes advantage of Dfinity’s low threshold in order to introduce Web2 creators to Web3.",
links: {
github: "https://github.com/C3-Protocol/CoCreate",
external:
"https://supernova.devpost.com/submissions/334205-c3-protocol-co-created-collectibles",
otherLinks: [],
},
domains: ["Metaverse and NFTs"],
level: "advanced",
languages: ["motoko", "rust", "javascript"],
contentType: ["code samples", "community repo"],
image: "/img/community-projects/c3-protocol-(co-created-collectibles).png",
},
{
index: 59,
title: "iCAN",
body: "What is iCAN? -- The best easy-to-use Canister Management Platform on IC.",
links: {
github: "https://github.com/PrimLabs/iCAN",