mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-04-23 03:01:03 -04:00
Set ZKML & P256 as inactive
This commit is contained in:
@@ -3,38 +3,38 @@ import {
|
||||
ProjectContent,
|
||||
ProjectInterface,
|
||||
ProjectStatus,
|
||||
} from "@/lib/types"
|
||||
} from '@/lib/types'
|
||||
|
||||
const content: ProjectContent = {
|
||||
en: {
|
||||
tldr: "Smart contract wallet enabling transactions through familiar flows like touchID, faceID, WebAuth, and Passkeys.",
|
||||
tldr: 'Smart contract wallet enabling transactions through familiar flows like touchID, faceID, WebAuth, and Passkeys.',
|
||||
description: `P256 is an ERC-4337 smart contract wallet that leverages zk-SNARKs for WebAuthn and P-256 signature verification. It aims to simplify Ethereum transactions by incorporating familiar authentication methods like touchID and faceID. The project addresses the challenges of seed phrase management and leverages the biometric capabilities of billions of cellphones to create a more user-friendly crypto experience. Technically, it is an end-to-end ERC-4337 smart contract wallet that verifies ZK proofs of Passkey signatures using the Halo2 proving system.`,
|
||||
},
|
||||
}
|
||||
|
||||
export const p256: ProjectInterface = {
|
||||
id: "p256",
|
||||
projectStatus: ProjectStatus.ACTIVE,
|
||||
id: 'p256',
|
||||
projectStatus: ProjectStatus.INACTIVE,
|
||||
category: ProjectCategory.DEVTOOLS,
|
||||
section: "pse",
|
||||
section: 'pse',
|
||||
content,
|
||||
image: "",
|
||||
name: "P256",
|
||||
image: '',
|
||||
name: 'P256',
|
||||
links: {
|
||||
website: "https://www.p256wallet.org/",
|
||||
github: "https://github.com/privacy-scaling-explorations/p256-circom",
|
||||
website: 'https://www.p256wallet.org/',
|
||||
github: 'https://github.com/privacy-scaling-explorations/p256-circom',
|
||||
},
|
||||
tags: {
|
||||
keywords: [
|
||||
"Toolkits",
|
||||
"Infrastructure/protocol",
|
||||
"User Experience",
|
||||
"Key management",
|
||||
"Wallets",
|
||||
"Account Abstraction",
|
||||
'Toolkits',
|
||||
'Infrastructure/protocol',
|
||||
'User Experience',
|
||||
'Key management',
|
||||
'Wallets',
|
||||
'Account Abstraction',
|
||||
],
|
||||
themes: ["build"],
|
||||
types: ["Legos/dev tools"],
|
||||
builtWith: ["halo2"],
|
||||
themes: ['build'],
|
||||
types: ['Legos/dev tools'],
|
||||
builtWith: ['halo2'],
|
||||
},
|
||||
}
|
||||
|
||||
@@ -3,30 +3,30 @@ import {
|
||||
ProjectContent,
|
||||
ProjectInterface,
|
||||
ProjectStatus,
|
||||
} from "@/lib/types"
|
||||
} from '@/lib/types'
|
||||
|
||||
const content: ProjectContent = {
|
||||
en: {
|
||||
tldr: "ZKML (Zero-Knowledge Machine Learning) leverages zero-knowledge proofs for privacy-preserving machine learning, enabling model and data privacy with transparent verification.",
|
||||
tldr: 'ZKML (Zero-Knowledge Machine Learning) leverages zero-knowledge proofs for privacy-preserving machine learning, enabling model and data privacy with transparent verification.',
|
||||
description: `ZKML is a solution that combines the power of zero-knowledge proofs (ZKPs) and machine learning to address the privacy concerns in traditional machine learning. It provides a platform for machine learning developers to convert their TensorFlow Keras models into ZK-compatible versions, ensuring model privacy, data privacy, and transparent verification. ZKML can be used to verify if a specific machine learning model was used to generate a particular piece of content, without revealing the input or the model used. It has potential use cases in on-chain biometric authentication, private data marketplace, proprietary ML model sharing, and AIGC NFTs.`,
|
||||
},
|
||||
}
|
||||
|
||||
export const zkml: ProjectInterface = {
|
||||
id: "zkml",
|
||||
projectStatus: ProjectStatus.ACTIVE,
|
||||
id: 'zkml',
|
||||
projectStatus: ProjectStatus.INACTIVE,
|
||||
category: ProjectCategory.RESEARCH,
|
||||
section: "pse",
|
||||
image: "zkml.png",
|
||||
name: "ZKML",
|
||||
section: 'pse',
|
||||
image: 'zkml.png',
|
||||
name: 'ZKML',
|
||||
content,
|
||||
links: {
|
||||
github: "https://github.com/socathie/circomlib-ml",
|
||||
github: 'https://github.com/socathie/circomlib-ml',
|
||||
},
|
||||
tags: {
|
||||
keywords: ["Anonymity/privacy", "Scaling"],
|
||||
themes: ["research"],
|
||||
types: ["Proof of concept", "Infrastructure/protocol"],
|
||||
builtWith: ["circom", "halo2", "nova"],
|
||||
keywords: ['Anonymity/privacy', 'Scaling'],
|
||||
themes: ['research'],
|
||||
types: ['Proof of concept', 'Infrastructure/protocol'],
|
||||
builtWith: ['circom', 'halo2', 'nova'],
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user