Update AA, MPCF, ZKE links

This commit is contained in:
Sam Richards
2025-03-14 15:55:51 -03:00
parent aa79059661
commit c5f8446ff0
3 changed files with 30 additions and 28 deletions

View File

@@ -3,11 +3,11 @@ import {
ProjectContent,
ProjectInterface,
ProjectStatus,
} from "@/lib/types"
} from '@/lib/types'
const content: ProjectContent = {
en: {
tldr: "Tools for building build privacy-preserving applications using government ID cards, specifically Aadhaar cards in India.",
tldr: 'Tools for building build privacy-preserving applications using government ID cards, specifically Aadhaar cards in India.',
description: `
### Overview
@@ -40,30 +40,31 @@ We developed a prover for [Digilocker](https://www.digilocker.gov.in/), that let
}
export const anonAadhaar: ProjectInterface = {
id: "anon-aadhaar",
id: 'anon-aadhaar',
category: ProjectCategory.APPLICATION,
section: "pse",
section: 'pse',
content,
projectStatus: ProjectStatus.ACTIVE,
image: "anon-aadhaar.svg",
license: "MIT",
name: "Anon Aadhaar",
image: 'anon-aadhaar.svg',
license: 'MIT',
name: 'Anon Aadhaar',
links: {
website: "https://anon-aadhaar.pse.dev/",
github: "https://github.com/privacy-scaling-explorations/anon-aadhaar",
twitter: "https://twitter.com/AnonAadhaar",
website: 'https://anon-aadhaar.pse.dev/',
github: 'https://github.com/privacy-scaling-explorations/anon-aadhaar',
telegram: 'https://t.me/anon_aadhaar',
twitter: 'https://twitter.com/AnonAadhaar',
},
tags: {
keywords: ["Anonymity/privacy", "Social", "Identity", "Voting/governance"],
themes: ["build", "play"],
types: ["Legos/dev tools", "Lego sets/toolkits", "Proof of concept"],
builtWith: ["circom", "rsa", "TypeScript", "Solidity"],
keywords: ['Anonymity/privacy', 'Social', 'Identity', 'Voting/governance'],
themes: ['build', 'play'],
types: ['Legos/dev tools', 'Lego sets/toolkits', 'Proof of concept'],
builtWith: ['circom', 'rsa', 'TypeScript', 'Solidity'],
},
extraLinks: {
play: [
{
label: "Try it out: On-Chain Voting App",
url: "https://boilerplate.anon-aadhaar.pse.dev/",
label: 'Try it out: On-Chain Voting App',
url: 'https://boilerplate.anon-aadhaar.pse.dev/',
},
],
},

View File

@@ -10,7 +10,8 @@ export const mpcFramework: ProjectInterface = {
projectStatus: ProjectStatus.ACTIVE,
links: {
github: 'https://github.com/voltrevo/mpc-framework',
// website: "https://mpc.pse.dev/",
website: 'https://mpc.pse.dev/',
telegram: 'https://t.me/+FKnOHTkvmX02ODVl',
},
content: {
en: {

View File

@@ -3,32 +3,32 @@ import {
ProjectContent,
ProjectInterface,
ProjectStatus,
} from "@/lib/types"
} from '@/lib/types'
const content: ProjectContent = {
en: {
tldr: "ZK Email is a library that allows for anonymous verification of email signatures while masking specific data.",
tldr: 'ZK Email is a library that allows for anonymous verification of email signatures while masking specific data.',
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",
id: 'zk-email',
category: ProjectCategory.APPLICATION,
projectStatus: ProjectStatus.ACTIVE,
section: "collaboration",
section: 'collaboration',
content,
image: "zk-email.jpeg",
name: "zk-email",
image: 'zk-email.jpeg',
name: 'zk-email',
links: {
github: "https://github.com/zkemail",
twitter: "https://twitter.com/zkemail",
website: "https://www.prove.email",
github: 'https://github.com/zkemail',
twitter: 'https://twitter.com/zkemail',
website: 'https://zk.email/',
},
tags: {
themes: [],
types: [],
keywords: ["email", "identity", "anonymity/privacy", "DKIM", "signatures"],
builtWith: ["circom", "snarkjs", "halo2"],
keywords: ['email', 'identity', 'anonymity/privacy', 'DKIM', 'signatures'],
builtWith: ['circom', 'snarkjs', 'halo2'],
},
}