Files
pse.dev/data/projects/zkitter.ts
Kalidou Diagne 49277e00da footer new design
2024-03-20 12:14:42 +00:00

28 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ProjectInterface } from "@/lib/types"
const description = `
Zkitter is a decentralized social network that emphasizes privacy by default. It allows users to share thoughts and communicate in various modes: as known identities, as a member of a group, or entirely anonymously. Built with Semaphore and RLN, Zkitter offers familiar social media features such as posting, chatting, following, and liking, but with a strong focus on user privacy and anonymity. It serves as an experiment to explore new ways of engaging in conversations without the fear of damaging ones personal reputation and is an example of a user-facing application using zero-knowledge primitives such as Semaphore, CryptKeeper, ZK-Chat, and Interep. Users can sign up using an Ethereum address or ENS name, or create an anonymous account, with options for anonymous chat and posting.
`
export const zkitter: ProjectInterface = {
id: "zkitter",
section: "pse",
projectStatus: "inactive",
image: "zkitter.webp",
name: "Zkitter",
tldr: "A decentralized social network prioritizing privacy and anonymity",
description,
links: {
github: "https://github.com/zkitter",
website: "https://www.zkitter.com/explore/",
discord: "https://discord.gg/Em4Z9yE8eW",
},
tags: {
keywords: ["Anonymity/privacy", "Social", "Identity"],
themes: ["build"],
types: ["Application", "Infrastructure/protocol"],
builtWith: ["semaphore", "rln", "interep", "zkchat"],
},
}