mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 23:58:15 -05:00
34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
import {
|
|
ProjectCategory,
|
|
ProjectContent,
|
|
ProjectInterface,
|
|
ProjectStatus,
|
|
} from "@/lib/types"
|
|
|
|
const content: ProjectContent = {
|
|
en: {
|
|
tldr: "A zero-knowledge proof mechanism for Ethereum block verification.",
|
|
description:
|
|
"zkEVM Community Edition is a project aimed at validating Ethereum blocks using zero-knowledge proofs. It is designed to be fully compatible with Ethereum's EVM and serves two primary goals. First, it enables the creation of a layer 2 network (zkRollup) compatible with the Ethereum ecosystem, which uses zero-knowledge proofs to validate blocks, thus enhancing scalability. Second, it allows the generation of zero-knowledge proofs for blocks from the existing layer 1 Ethereum network, enabling light clients to quickly synchronize many blocks with low resource consumption while ensuring block correctness without needing trust in external parties.",
|
|
},
|
|
}
|
|
|
|
export const zkevmCommunity: ProjectInterface = {
|
|
id: "zkevm-community",
|
|
projectStatus: ProjectStatus.INACTIVE,
|
|
category: ProjectCategory.DEVTOOLS,
|
|
section: "pse",
|
|
content,
|
|
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"],
|
|
},
|
|
}
|