mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 16:18:07 -05:00
41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import {
|
|
ProjectCategory,
|
|
ProjectContent,
|
|
ProjectInterface,
|
|
ProjectStatus,
|
|
} from "@/lib/types"
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: "OpenPassport lets you check a passport is valid in zero-knowledge",
|
|
description:
|
|
"OpenPassport is developing tools to let users generate proofs of humanity, nationality and age using their government-issued passport. It unlocks uses cases in proof of unique identity, sybil resistance and selective disclosure of private data.",
|
|
},
|
|
}
|
|
|
|
export const OpenPassport: ProjectInterface = {
|
|
id: "openpassport",
|
|
category: ProjectCategory.APPLICATION,
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
section: "grant",
|
|
content,
|
|
image: "openpassport.jpg",
|
|
name: "OpenPassport",
|
|
links: {
|
|
github: "https://github.com/zk-passport/openpassport",
|
|
website: "https://openpassport.app",
|
|
twitter: "https://x.com/openpassportapp",
|
|
telegram: "https://t.me/openpassport",
|
|
},
|
|
tags: {
|
|
keywords: [
|
|
"Passports",
|
|
"Identity",
|
|
"Anonymity/privacy",
|
|
"Signatures",
|
|
"Social",
|
|
],
|
|
builtWith: ["circom", "snarkjs"],
|
|
},
|
|
}
|