mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-13 16:18:07 -05:00
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { ProjectInterface } from "@/lib/types"
|
|
|
|
const 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",
|
|
section: "pse",
|
|
projectStatus: "active",
|
|
image: "zkevm.jpg",
|
|
name: "zkEVM Community Edition",
|
|
tldr: "A zero-knowledge proof mechanism for Ethereum block verification.",
|
|
description,
|
|
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"],
|
|
},
|
|
}
|