mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-10 06:38:03 -05:00
19 lines
517 B
TypeScript
19 lines
517 B
TypeScript
import { ProjectInterface, ProjectStatus } from "@/lib/types"
|
|
|
|
export const zkevmCommunity: ProjectInterface = {
|
|
id: "zkevm-community",
|
|
section: "pse",
|
|
projectStatus: ProjectStatus.ACTIVE,
|
|
image: "zkevm.jpg",
|
|
name: "zkEVM Community Edition",
|
|
links: {
|
|
github: "https://github.com/privacy-scaling-explorations/zkevm-circuits",
|
|
},
|
|
tags: {
|
|
keywords: ["Scaling"],
|
|
themes: ["build"],
|
|
types: ["Infrastructure/protocol", "Lego sets/toolkits"],
|
|
builtWith: ["halo2", "rust", "geth"],
|
|
},
|
|
}
|