mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
27 lines
605 B
TypeScript
27 lines
605 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const p256: ProjectInterface = {
|
|
id: "p256",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "",
|
|
name: "P256",
|
|
links: {
|
|
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",
|
|
],
|
|
themes: ["build"],
|
|
types: ["Legos/dev tools"],
|
|
builtWith: ["halo2"],
|
|
},
|
|
}
|