Files
pse.dev/data/projects/rln.ts
2023-09-12 09:27:42 +01:00

25 lines
1.4 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { ProjectInterface } from "@/lib/types"
const description = `
Rate-Limiting Nullifier (RLN) is a protocol designed to combat spam and denial of service attacks in privacy-preserving environments. It allows users in an anonymous system to penalize those who exceed the rate limit, either by withdrawing the offender's stake or revealing their secrets. This mechanism helps maintain system integrity and deters abuse. RLN is built on the Semaphore protocol and uses zero-knowledge proofs and the Shamirs Secret Sharing scheme to reveal the spammer's private key. It's particularly useful for developers working on communication systems that require privacy and anonymity, such as chat apps, client-server communications, and peer-to-peer communications. It's already being used in projects like Zerokit and Waku, and is also being developed for use with the KZG polynomial commitment scheme.
`
export const rln: ProjectInterface = {
id: "rln",
projectStatus: "active",
image: "rln.svg",
name: "Rate-Limiting Nullifier",
tldr: "A protocol for deterring spam and maintaining anonymity in communication systems.",
description,
links: {
github: "https://github.com/Rate-Limiting-Nullifier/circom-rln",
website: "https://rate-limiting-nullifier.github.io/rln-docs/",
},
tags: {
keywords: ["Anonymity/privacy"],
themes: ["build"],
types: ["Infrastructure/protocol"],
builtWith: ["circom", "solidity", "semaphore"],
},
}