Merge pull request #179 from privacy-scaling-explorations/pop-in-projects

POP in projects list
This commit is contained in:
Kalidou Diagne
2024-07-22 23:28:42 +01:00
committed by GitHub
4 changed files with 37 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ import { anonAadhaar } from "./projects/anon-aadhaar"
import { anonKlub } from "./projects/anon-klub"
import { bandada } from "./projects/bandada"
import { channel4 } from "./projects/channel-4"
import { chiquito } from "./projects/chiquito"
import { Coco } from "./projects/coco"
import { cryptkeeper } from "./projects/cryptkeeper"
import { discreetly } from "./projects/discreetly"
@@ -17,11 +18,13 @@ import { eigenTrust } from "./projects/eigen-trust"
import { Interep } from "./projects/interep"
import { jubmoji } from "./projects/jubmoji"
import { maci } from "./projects/maci"
import { maciRPGF } from "./projects/maci-rpgf"
import { nfctap } from "./projects/nfctap"
import { p0tion } from "./projects/p0tion"
import { p256 } from "./projects/p256"
import { pollenLabs } from "./projects/pollen-labs"
import { PerpetualPowersOfTau } from "./projects/powers-of-tau"
import { proofOfPassport } from "./projects/proof-of-passport"
import { pseSecurity } from "./projects/pse-security"
import { rln } from "./projects/rln"
import { semaphore } from "./projects/semaphore"
@@ -39,8 +42,6 @@ import { zkitter } from "./projects/zkitter"
import { zkml } from "./projects/zkml"
import { Zkopru } from "./projects/zkopru"
import { zkp2p } from "./projects/zkp2p"
import { chiquito } from "./projects/chiquito"
import { maciRPGF } from "./projects/maci-rpgf"
export const ProjectLinkIconMap: ProjectLinkType = {
github: GithubIcon,
@@ -89,5 +90,6 @@ export const projects: ProjectInterface[] = [
voicedeck,
zkemail,
chiquito,
maciRPGF
maciRPGF,
proofOfPassport,
]

View File

@@ -0,0 +1,31 @@
import { ProjectInterface } from "@/lib/types"
const description = `
Proof of passport 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 proofOfPassport: ProjectInterface = {
id: "proof-of-passport",
section: "grant",
projectStatus: "active",
image: "proof-of-passport.jpg",
name: "Proof of Passport",
tldr: "Proof of passport lets you check a passport is valid in zero-knowledge",
description,
links: {
github: "https://github.com/zk-passport/proof-of-passport",
website: "https://proofofpassport.com",
twitter: "https://x.com/proofofpassport",
telegram: "https://t.me/proofofpassport",
},
tags: {
keywords: [
"Passports",
"Identity",
"Anonymity/privacy,",
"Signatures",
"Social",
],
builtWith: ["circom", "snarkjs"],
},
}

View File

@@ -51,6 +51,7 @@ export type ProjectLinkWebsite =
| "discord"
| "twitter"
| "youtube"
| "telegram"
export type ProjectLinkType = Partial<Record<ProjectLinkWebsite, string>>
export type ProjectExtraLinkType = "buildWith" | "play" | "research" | "learn"

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB