mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-14 00:28:28 -05:00
26 lines
613 B
TypeScript
26 lines
613 B
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
export const anonKlub: ProjectInterface = {
|
|
id: "anon-klub",
|
|
section: "pse",
|
|
projectStatus: "inactive",
|
|
image: "anonklub.svg",
|
|
name: "AnonKlub",
|
|
links: {
|
|
github: "https://github.com/anonklub",
|
|
website: "https://anonklub.github.io",
|
|
},
|
|
tags: {
|
|
keywords: [
|
|
"Transaction privacy",
|
|
"Anonymity/privacy",
|
|
"Social",
|
|
"Identity",
|
|
"Voting/governance",
|
|
],
|
|
themes: ["build", "play"],
|
|
types: ["Infrastructure/protocol", "Prototype", "Proof of concept"],
|
|
builtWith: ["circom", "snarkjs", "halo2"],
|
|
},
|
|
}
|