From 094ad889f921382477887d4a11fde648e9350bad Mon Sep 17 00:00:00 2001
From: Marco <wudmytrotest200@gmail.com>
Date: Sat, 4 Jan 2025 15:27:17 +0100
Subject: [PATCH 1/5] typo storage.rs

---
 eth-types/src/evm_types/storage.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eth-types/src/evm_types/storage.rs b/eth-types/src/evm_types/storage.rs
index 86a1f63455..8d95ee44df 100644
--- a/eth-types/src/evm_types/storage.rs
+++ b/eth-types/src/evm_types/storage.rs
@@ -47,7 +47,7 @@ impl Storage {
         Storage(HashMap::new())
     }
 
-    /// Generate an new instance of EVM storage given a `HashMap<Word, Word>`.
+    /// Generate a new instance of EVM storage given a `HashMap<Word, Word>`.
     pub fn new(map: HashMap<Word, Word>) -> Self {
         Self::from(map)
     }

From 380321b57e9a1ef6cef15ae4a3a82c841b673d1d Mon Sep 17 00:00:00 2001
From: Marco <wudmytrotest200@gmail.com>
Date: Sat, 4 Jan 2025 15:27:43 +0100
Subject: [PATCH 2/5] typo transient_storage.rs

---
 eth-types/src/evm_types/transient_storage.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eth-types/src/evm_types/transient_storage.rs b/eth-types/src/evm_types/transient_storage.rs
index 9b5063a22c..b4a430c1f9 100644
--- a/eth-types/src/evm_types/transient_storage.rs
+++ b/eth-types/src/evm_types/transient_storage.rs
@@ -47,7 +47,7 @@ impl TransientStorage {
         TransientStorage(HashMap::new())
     }
 
-    /// Generate an new instance of EVM transient storage given a `HashMap<Word, Word>`.
+    /// Generate a new instance of EVM transient storage given a `HashMap<Word, Word>`.
     pub fn new(map: HashMap<Word, Word>) -> Self {
         Self::from(map)
     }

From fc7ab37e2e4fa1cd84cd4df8af9dfcd0956fc873 Mon Sep 17 00:00:00 2001
From: Marco <wudmytrotest200@gmail.com>
Date: Sat, 4 Jan 2025 15:28:12 +0100
Subject: [PATCH 3/5] typo geth_types.rs

---
 eth-types/src/geth_types.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eth-types/src/geth_types.rs b/eth-types/src/geth_types.rs
index 04b306ca97..cd8e9ba681 100644
--- a/eth-types/src/geth_types.rs
+++ b/eth-types/src/geth_types.rs
@@ -389,7 +389,7 @@ impl Transaction {
     }
 }
 
-/// GethData is a type that contains all the information of a Ethereum block
+/// GethData is a type that contains all the information of an Ethereum block
 #[derive(Default, Debug, Clone)]
 pub struct GethData {
     /// chain id

From a133d71f7e58834753b259af2cfe3dd715d8ff48 Mon Sep 17 00:00:00 2001
From: Marco <wudmytrotest200@gmail.com>
Date: Sat, 4 Jan 2025 15:29:39 +0100
Subject: [PATCH 4/5] typo readme.md

---
 integration-tests/tests/readme.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-tests/tests/readme.md b/integration-tests/tests/readme.md
index 16424ebb88..bb8433b9dc 100644
--- a/integration-tests/tests/readme.md
+++ b/integration-tests/tests/readme.md
@@ -2,7 +2,7 @@
 
 ## Mainnet
 
-Testings in `mainnet.rs` enable accessing a RPC node with debug API, and test any block or single transaction from the node. Trace and block witness would be rebuilt from the input data (block or tx) and then being mocking proven by a specified circuit.
+Testings in `mainnet.rs` enable accessing an RPC node with debug API, and test any block or single transaction from the node. Trace and block witness would be rebuilt from the input data (block or tx) and then being mocking proven by a specified circuit.
 
 The running parameters are specified by environment variables:
 

From 3514c34f5b5469da3d11b5be9df8177729932fed Mon Sep 17 00:00:00 2001
From: Marco <wudmytrotest200@gmail.com>
Date: Sat, 4 Jan 2025 15:30:20 +0100
Subject: [PATCH 5/5] typo tests.rs

---
 aggregator/src/tests.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aggregator/src/tests.rs b/aggregator/src/tests.rs
index 8c98351b61..4be0deeaba 100644
--- a/aggregator/src/tests.rs
+++ b/aggregator/src/tests.rs
@@ -95,7 +95,7 @@ macro_rules! compression_layer_snark {
 
 #[macro_export]
 macro_rules! compression_layer_evm {
-    // generate a evm proof and verify it for compression layer
+    // generate an evm proof and verify it for compression layer
     ($previous_snark: ident, $param: ident, $degree: ident, $path: ident,$layer_index: expr) => {{
         let timer = start_timer!(|| format!("gen layer {} snark", $layer_index));