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 Plasma Fold is part of the Privacy & Scaling Explorations initiative. If you’re interested in collaborating, contributing research, or running your own Plasma Fold client, we’d love to hear from you. On X: [@xyz_pierre](https://twitter.com/xyz_pierre) Email: Pierre Daix-Moreux [pierre@pse.dev](mailto:pierre@pse.dev), Chengru Zhang [winderica@pse.dev](mailto:winderica@pse.dev) Join the conversation on [PSE Discord](https://discord.com/invite/sF5CT5rzrR) `, }, }, tags: { keywords: [ "plasma", "folding schemes", "Ethereum", "scalability", "L2", "zero-knowledge proofs", ], themes: ["scalability", "L2 solutions", "zk proofs"], types: ["research", "development"], }, }