Skip to content

Commit

Permalink
update semaphore description/tagline
Browse files Browse the repository at this point in the history
  • Loading branch information
cedoor authored Mar 28, 2024
1 parent ee12414 commit f987b6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/projects/semaphore.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ProjectInterface } from "@/lib/types"

const description = `
Semaphore is a protocol that allows users to prove their membership in a group and transmit anonymous data, such as votes or feedback, without revealing their identities. It is designed for developers aiming to build privacy-preserving applications. Semaphore enables the creation of identities and their corresponding public values, which can be added to Merkle trees. This facilitates the authentication of anonymous user messages through zero-knowledge proofs, where membership is proven using Merkle proofs within the circuit. Key use cases include anonymous voting applications, receiving anonymous feedback from event attendees, and anonymous text messages. It is currently in production and is being used in a wide variety of projects.
Semaphore is a protocol that allows users to prove their membership in a group and transmit anonymous data, such as votes or feedback, without revealing their identities. It is designed for developers aiming to build privacy-preserving applications. Semaphore enables the creation of identities and their corresponding public value, which can be added to Merkle trees. This facilitates the authentication of anonymous user messages through zero-knowledge proofs, where membership is proven using Merkle proofs within the circuit. Key use cases include anonymous voting applications, receiving anonymous feedback from event attendees, and anonymous text messages. It is currently in production and is being used in a wide variety of projects.
`

export const semaphore: ProjectInterface = {
Expand All @@ -10,7 +10,7 @@ export const semaphore: ProjectInterface = {
projectStatus: "active",
image: "semaphore.webp",
name: "Semaphore",
tldr: "A zero-knowledge protocol enabling anonymous group membership proof and signaling.",
tldr: "A zero-knowledge protocol for anonymous interactions.",
description,
links: {
github: "https://github.com/semaphore-protocol",
Expand Down

0 comments on commit f987b6e

Please sign in to comment.