mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-04-23 03:01:03 -04:00
22 lines
598 B
TypeScript
22 lines
598 B
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
const description = `
|
|
An anonymous, federated, chat application that uses Rate-Limiting Nullifier for spam prevention.
|
|
`
|
|
|
|
export const discreetly: ProjectInterface = {
|
|
id: "discreetly",
|
|
image: "discreetly.svg",
|
|
name: "Discreetly",
|
|
tldr: "An anonymous, federated, chat application using ZK.",
|
|
description,
|
|
links: {
|
|
github: "https://github.com/Discreetly",
|
|
},
|
|
tags: {
|
|
themes: ["Anonymity/privacy", "Social"],
|
|
types: ["Legos/dev tools", "Proof of concept", "Application"],
|
|
builtWith: ["RLN", "Semaphore", "Waku"],
|
|
},
|
|
}
|