Files
pse.dev/data/projects/zk-email.ts
AtHeartEngineer a9b894f83b Update zk-email.ts
2024-06-06 12:16:00 -04:00

27 lines
1.1 KiB
TypeScript

import { ProjectInterface } from "@/lib/types"
const description = `
ZK Email is a library for anonymous verification of emails while selectively revealing specific data. It allows a prover to demonstrate receipt of an email from a specific sender or domain or the presence of certain text in the subject or body. This can be used for Web 2.0 interoperability, email recovery solutions of smart accounts, anonymous KYC, or to create interesting applications based on anonymity sets.
`
export const zkemail: ProjectInterface = {
id: "zk-email",
section: "collaboration",
projectStatus: "active",
image: "zk-email.jpeg",
name: "zk-email",
tldr: "ZK Email is a library that allows for anonymous verification of email signatures while masking specific data.",
description,
links: {
github: "https://github.com/zkemail",
twitter: "https://twitter.com/zkemail",
website: "https://www.prove.email",
},
tags: {
themes: [],
types: [],
keywords: ["email", "identity", "anonymity/privacy", "DKIM", "signatures"],
builtWith: ["circom", "snarkjs", "halo2"],
},
}