From f8cb4f24d5a6ead4b4b21999abecc2c970f2a0f8 Mon Sep 17 00:00:00 2001 From: aguzmant103 <67167307+aguzmant103@users.noreply.github.com> Date: Tue, 19 Sep 2023 12:11:33 -0600 Subject: [PATCH 1/2] Adding P256 project --- data/projects/p256.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 data/projects/p256.ts diff --git a/data/projects/p256.ts b/data/projects/p256.ts new file mode 100644 index 00000000..6c28167b --- /dev/null +++ b/data/projects/p256.ts @@ -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"], + }, +} From a25442247a2ed6d5f078d98064fb6f5c9dee6636 Mon Sep 17 00:00:00 2001 From: aguzmant103 <67167307+aguzmant103@users.noreply.github.com> Date: Wed, 20 Sep 2023 09:11:51 -0600 Subject: [PATCH 2/2] Suggested fixes for P256 --- data/projects.ts | 4 +++- data/projects/p256.ts | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/data/projects.ts b/data/projects.ts index ed246cca..63945ad2 100644 --- a/data/projects.ts +++ b/data/projects.ts @@ -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, @@ -71,5 +72,6 @@ export const projects: ProjectInterface[] = [ Coco, Interep, Zkopru, - ZKKit + ZKKit, + p256 ] diff --git a/data/projects/p256.ts b/data/projects/p256.ts index 6c28167b..9f23fcba 100644 --- a/data/projects/p256.ts +++ b/data/projects/p256.ts @@ -4,7 +4,7 @@ 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 = { +export const p256: ProjectInterface = { id: "p256", projectStatus: "active", image: "",