Skip to content

Commit

Permalink
Adding P256 project
Browse files Browse the repository at this point in the history
  • Loading branch information
aguzmant103 committed Sep 19, 2023
1 parent 97c5c63 commit f8cb4f2
Showing 1 changed file with 31 additions and 0 deletions.
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 pseSecurity: 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"],
},
}

0 comments on commit f8cb4f2

Please sign in to comment.