mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
20 lines
549 B
TypeScript
20 lines
549 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const rln: ProjectInterface = {
|
|
id: "rln",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "rln.svg",
|
|
name: "Rate-Limiting Nullifier",
|
|
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"],
|
|
},
|
|
}
|