From b2124ca00dc75dde5da7f3bae3d5fa65c4ff0e81 Mon Sep 17 00:00:00 2001 From: 0xbasar <109233435+0xbasar@users.noreply.github.com> Date: Tue, 12 Dec 2023 04:31:35 +0300 Subject: [PATCH] Update intro-to-zkevm.md (#129) I changed a grammatical error which is: In the sentence "These succinct proof can then be posted and verified on Ethereum Layer 1," I changed "proof" to "proofs" for grammatical accuracy. --- src/content/docs/en/technology/zkevm/intro-to-zkevm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/technology/zkevm/intro-to-zkevm.md b/src/content/docs/en/technology/zkevm/intro-to-zkevm.md index 1c4bc4772..f2751c980 100644 --- a/src/content/docs/en/technology/zkevm/intro-to-zkevm.md +++ b/src/content/docs/en/technology/zkevm/intro-to-zkevm.md @@ -12,7 +12,7 @@ whatsnext: { "zkEVM Overview": "/technology/zkevm/zkevm-overview" } ZK rollups are widely recognized as the ideal scaling solution for Ethereum. They inherit the strong security of Ethereum Layer 1 and offer the fastest transaction finality compared to other Layer 2 solutions. -The basic idea of a ZK rollup is to execute transactions off-chain and to generate succinct proofs of the execution’s validity. These succinct proof can then be posted and verified on Ethereum Layer 1. ZK rollups improve scalability since verifying the proof for a batch of transactions is much cheaper than re-executing the batch of transactions. +The basic idea of a ZK rollup is to execute transactions off-chain and to generate succinct proofs of the execution’s validity. These succinct proofs can then be posted and verified on Ethereum Layer 1. ZK rollups improve scalability since verifying the proof for a batch of transactions is much cheaper than re-executing the batch of transactions. ZK rollups can be categorized into application-specific and general-purpose rollups, based on the types of transactions they support. Application-specific ZK rollups are designed for particular transaction sets, such as payments and swaps, or a player’s action set for an on-chain game. In these cases, rollups only need to generate proofs attesting to the correctness of the supported primitives, such as valid state transitions for game players.