Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding P256 project #94

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion data/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import { zkitter } from "./projects/zkitter"
import { zkml } from "./projects/zkml"
import { Zkopru } from "./projects/zkopru"
import { zkp2p } from "./projects/zkp2p"
import { p256 } from "./projects/p256"

export const ProjectLinkIconMap: ProjectLinkType = {
github: GithubIcon,
Expand Down Expand Up @@ -71,5 +72,6 @@ export const projects: ProjectInterface[] = [
Coco,
Interep,
Zkopru,
ZKKit
ZKKit,
p256
]
31 changes: 31 additions & 0 deletions data/projects/p256.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { ProjectInterface } from "@/lib/types"

const 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: "active",
image: "",
name: "P256",
tldr: "Smart contract wallet enabling transactions through familiar flows like touchID, faceID, WebAuth, and Passkeys.",
description,
links: {
website: "https://www.p256wallet.org/",
github: "https://github.com/zkwebauthn",
},
tags: {
keywords: [
"Toolkits",
"Infrastructure/protocol",
"User Experience",
"Key management",
"Wallets",
"Account Abstraction",
],
themes: ["build"],
types: ["Legos/dev tools"],
builtWith: ["halo2"],
},
}