mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 16:18:07 -05:00
45 lines
2.5 KiB
TypeScript
45 lines
2.5 KiB
TypeScript
import {
|
|
ProjectCategory,
|
|
ProjectContent,
|
|
ProjectInterface,
|
|
ProjectStatus,
|
|
} from "@/lib/types"
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: "Aiding developers with tools for trusted setups.",
|
|
description: `### Overview
|
|
The Trusted Setups project is dedicated to simplifying the process of trusted setups, which are crucial for privacy or scaling solutions. Trusted setups involve multiple participants contributing to the generation of secrets. As long as one participant forgets their part of the secret, the final solution remains secure. The team recognizes the complexity of developing contribution programs and coordinating the participants' queue in a trusted setup. To address this, they are developing tools, including scripts, WebApps, and APIs, to streamline the contribution and coordination effort. This allows developers to focus on building their circuits and applications, enhancing efficiency and productivity in the development of zero-knowledge applications.
|
|
|
|
### Status
|
|
This project has been sunset and there will be no further development. The tools and resources developed are available under no warranty and are provided as-is. We believe they are enough for developers to run their trusted setups on their own. The team encourages the community to fork and continue the development of these tools.
|
|
|
|
### Resources
|
|
|
|
- **p0tion**: A tool to help developers create and manage trusted setups - [GitHub](https://github.com/privacy-scaling-explorations/p0tion)
|
|
- **DefinitelySetup WebApp**: A WebApp to monitor and contribute to trusted setups - [Website](https://ceremony.pse.dev/) | [GitHub](https://github.com/privacy-scaling-explorations/DefinitelySetup)
|
|
- **KZG WebApp**: A WebApp used to contributed to the KZG Ceremony - [Website](https://ceremony.ethereum.org/) | [GitHub](https://github.com/zkparty/trusted-setup-frontend)
|
|
- **Perpetual Powers of Tau**: A phase 1 ceremony to generate Powers of Tau - [GitHub](https://github.com/privacy-scaling-explorations/perpetualpowersoftau)
|
|
`,
|
|
},
|
|
}
|
|
|
|
export const trustedSetups: ProjectInterface = {
|
|
id: "trusted-setups",
|
|
category: ProjectCategory.DEVTOOLS,
|
|
projectStatus: ProjectStatus.INACTIVE,
|
|
section: "archived",
|
|
content,
|
|
image: "trusted-setups.svg",
|
|
name: "Trusted Setups",
|
|
links: {
|
|
github: "https://github.com/zkparty",
|
|
},
|
|
tags: {
|
|
themes: ["play"],
|
|
types: ["Legos/dev tools", "Lego sets/toolkits"],
|
|
builtWith: [],
|
|
keywords: ["Scaling", "Education"],
|
|
},
|
|
}
|