Merge pull request #101 from aguzmant103/ft/add-p0tion

Adding p0tion
This commit is contained in:
Chiali
2023-10-31 12:44:24 -04:00
committed by GitHub
2 changed files with 30 additions and 1 deletions

View File

@@ -33,6 +33,7 @@ import { zkml } from "./projects/zkml"
import { Zkopru } from "./projects/zkopru"
import { zkp2p } from "./projects/zkp2p"
import { p256 } from "./projects/p256"
import { p0tion } from "./projects/p0tion"
export const ProjectLinkIconMap: ProjectLinkType = {
github: GithubIcon,
@@ -73,5 +74,6 @@ export const projects: ProjectInterface[] = [
Interep,
Zkopru,
ZKKit,
p256
p256,
p0tion
]

27
data/projects/p0tion.ts Normal file
View File

@@ -0,0 +1,27 @@
import { ProjectInterface } from "@/lib/types"
const description = `
p0tion is an agnostic-from-ceremony public good toolkit, with the aim of making Groth16 zk-applications scale and become production-ready in a safe and secure manner by running Phase 2 Trusted Setup ceremonies.
`
export const p0tion: ProjectInterface = {
id: "p0tion",
projectStatus: "active",
image: "",
name: "p0tion",
tldr: "Toolkit for Groth16 Phase 2 Trusted Setup ceremonies.",
description,
links: {
website: "https://ceremony.pse.dev/",
github: "https://github.com/privacy-scaling-explorations/p0tion",
},
tags: {
keywords: [
"Toolkits",
"Infrastructure/protocol"
],
themes: ["build"],
types: ["Legos/dev tools"],
builtWith: [],
},
}