mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 16:18:07 -05:00
21 lines
878 B
TypeScript
21 lines
878 B
TypeScript
import { ProjectInterface } from "@/lib/types";
|
|
|
|
export const ZKKit: ProjectInterface = {
|
|
id: "zk-kit",
|
|
image: "zk-kit.svg",
|
|
name: "ZK-kit",
|
|
tldr: "A monorepo of reusable libraries for zero-knowledge technologies.",
|
|
description: "ZK-kit is a set of libraries (plugins, algorithms or utility functions) that can be reused in different projects and zero-knowledge protocols, making it easier for developers to access user-friendly, tested, and documented libraries.",
|
|
projectStatus: 'active',
|
|
links: {
|
|
website: 'https://zkkit.pse.dev',
|
|
github: 'https://github.com/privacy-scaling-explorations/zk-kit',
|
|
},
|
|
tags: {
|
|
keywords: ['Education', 'Toolkits', 'Anonymity/Privacy', 'Algorithms'],
|
|
themes: ["build"],
|
|
types: ["Legos/dev tools"],
|
|
builtWith: ["Circom", "JavaScript", "Solidity", "Noir"]
|
|
}
|
|
}
|