mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-12 15:48:19 -05:00
* feat: general fixes wip * feat: complete general fixes - align side wiki - Enforce kebab-case on URLs (fix #309) - Search result don’t render markdown (fix #362) - Move “related projects” before “more articles”in blog page - Display research projects on projects page (fix #387) - Add support for youtube videos for projects (fix #384) - Add support for team member for projects (fix #385) * feat: "new articles" use new blog card component * feat: make articles card link more visible
86 lines
3.9 KiB
TypeScript
86 lines
3.9 KiB
TypeScript
import { ProjectCategory, ProjectInterface, ProjectStatus } from "@/lib/types"
|
||
|
||
export const plasmaFold: ProjectInterface = {
|
||
id: "plasma-fold",
|
||
image: "",
|
||
name: "Plasma Fold",
|
||
section: "pse",
|
||
projectStatus: ProjectStatus.ACTIVE,
|
||
category: ProjectCategory.RESEARCH,
|
||
content: {
|
||
en: {
|
||
tldr: "Integrating folding schemes into plasma-based L2 solutions for efficient and scalable Ethereum transactions.",
|
||
description: `
|
||
## Plasma Fold
|
||
|
||
**Reimagining Plasma with Folding Schemes**
|
||
|
||
Plasma Fold is an experimental Layer 2 (L2) design that combines the original Plasma architecture with modern zero-knowledge folding schemes to dramatically scale Ethereum transaction throughput. By leveraging recent advances in Incremental Verifiable Computation (IVC) and folding-based proof systems, Plasma Fold achieves high-speed client-side proving while keeping on-chain data to a minimum.
|
||
|
||
Unlike traditional rollups that post extensive transaction data to L1, Plasma Fold operates using a *minimal data availability* model inspired by Intmax, where only essential metadata—like tree roots and signer indices—are recorded onchain. Validity is ensured through user-generated proofs, making this model far more efficient for resource-constrained environments.
|
||
|
||
## Why Plasma Fold?
|
||
|
||
Most L2s today struggle to scale without relying on increasingly expensive data availability solutions (e.g., blobs). Plasma Fold offers a low-cost, high-throughput alternative. Inspired by Vitalik Buterin’s vision of a Plasma-EVM hybrid, Plasma Fold explores the use of folding schemes to support lightweight client-side proving—ideal for mobile or browser-based clients. In theory, this architecture could enable transaction rates in the range of 90k–260k TPS, matching or exceeding centralized systems like VISA.
|
||
|
||
## Key Innovations
|
||
|
||
- **Client-Side Proving with Folding Schemes:** Users generate recursive ZK proofs on their devices to attest to their own balances and transactions, minimizing trust and computation on the L1.
|
||
- **UTXO-Based Design with IVC:** Transactions are modeled as UTXO trees, allowing users to maintain and prove their own balances incrementally across time.
|
||
- **Minimal Onchain Footprint:** Only block roots, nullifier indices, and signer bitmaps are posted on L1—greatly reducing gas costs and data needs.
|
||
- **Instant Exits & Offline-Friendliness:** Users can exit the system at any time using a locally stored proof. They do not need to stay online between blocks unless actively transacting.
|
||
- **Composable and Future-Proof:** Designed to eventually support multiple assets, order books, and potentially even programmable features.
|
||
|
||
## Status
|
||
|
||
- **Stage:** Research and Prototyping
|
||
- **Current Focus:** Implementing and benchmarking core circuits
|
||
- **Target Output:** A technical paper and reference implementation
|
||
- **Team Lead:** Pierre Daix-Moreux
|
||
- **Collaborators:** Chengru
|
||
|
||
## Timeline & Milestones
|
||
|
||
- **Q2 2025:** Initial circuit design and benchmarks against Plonky2
|
||
- **Q2–Q3 2025:** Drafting formal paper; collaborative review with Intmax
|
||
- **Q3 2025:** Reference implementation using Sonobe’s Nova-based tooling
|
||
- **Beyond:** Explore multi-asset support, privacy enhancements, and programmability
|
||
|
||
## Learn More
|
||
|
||
- [Technical Write-Up on Intmax2](https://www.pierredm.xyz/posts/intmax)
|
||
- [GitHub – Sonobe](https://github.com/privacy-scaling-explorations/sonobe)
|
||
|
||
## Get Involved
|
||
|
||
Join the conversation on [PSE Discord](https://discord.com/invite/sF5CT5rzrR)
|
||
`,
|
||
},
|
||
},
|
||
team: [
|
||
{
|
||
name: "Pierre Daix-Moreux",
|
||
email: "pierre@pse.dev",
|
||
links: {
|
||
twitter: "https://twitter.com/xyz_pierre",
|
||
},
|
||
},
|
||
{
|
||
name: "Chengru Zhang",
|
||
email: "winderica@pse.dev",
|
||
},
|
||
],
|
||
tags: {
|
||
keywords: [
|
||
"plasma",
|
||
"folding schemes",
|
||
"Ethereum",
|
||
"scalability",
|
||
"L2",
|
||
"zero-knowledge proofs",
|
||
],
|
||
themes: ["scalability", "L2 solutions", "zk proofs"],
|
||
types: ["research", "development"],
|
||
},
|
||
}
|