Skip to content

Commit

Permalink
Merge pull request #179 from privacy-scaling-explorations/pop-in-proj…
Browse files Browse the repository at this point in the history
…ects

POP in projects list
  • Loading branch information
kalidiagne authored Jul 22, 2024
2 parents b4a8adc + f430ee0 commit 3483d58
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
8 changes: 5 additions & 3 deletions data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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,
Expand Down Expand Up @@ -89,5 +90,6 @@ export const projects: ProjectInterface[] = [
voicedeck,
zkemail,
chiquito,
maciRPGF
maciRPGF,
proofOfPassport,
]
31 changes: 31 additions & 0 deletions data/projects/proof-of-passport.ts
Original file line number Diff line number Diff line change
@@ -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"],
},
}
1 change: 1 addition & 0 deletions lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Binary file added public/project-banners/proof-of-passport.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3483d58

Please sign in to comment.