From f987b6e9597b250845a31095b52c0289fc4afcdc Mon Sep 17 00:00:00 2001 From: Cedoor Date: Thu, 28 Mar 2024 10:37:56 +0000 Subject: [PATCH] update semaphore description/tagline --- data/projects/semaphore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/projects/semaphore.ts b/data/projects/semaphore.ts index 83595939..28e26e27 100644 --- a/data/projects/semaphore.ts +++ b/data/projects/semaphore.ts @@ -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 = { @@ -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",