mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-10 22:58:06 -05:00
19 lines
478 B
TypeScript
19 lines
478 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const zkml: ProjectInterface = {
|
|
id: "zkml",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "zkml.png",
|
|
name: "ZKML",
|
|
links: {
|
|
github: "https://github.com/socathie/circomlib-ml",
|
|
},
|
|
tags: {
|
|
keywords: ["Anonymity/privacy", "Scaling"],
|
|
themes: ["research"],
|
|
types: ["Proof of concept", "Infrastructure/protocol"],
|
|
builtWith: ["circom", "halo2", "nova"],
|
|
},
|
|
}
|