mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
21 lines
516 B
TypeScript
21 lines
516 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const zkp2p: ProjectInterface = {
|
|
id: "zkp2p",
|
|
section: "grant",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "zkp2p.webp",
|
|
name: "ZKP2P",
|
|
links: {
|
|
github: "https://github.com/zkp2p",
|
|
website: "https://zkp2p.xyz/",
|
|
twitter: "https://twitter.com/zkp2p",
|
|
},
|
|
tags: {
|
|
keywords: ["Private communications"],
|
|
themes: ["play"],
|
|
types: ["Proof of concept", "Application"],
|
|
builtWith: ["circom", "halo2"],
|
|
},
|
|
}
|