diff --git a/README.md b/README.md
index beb84fae3..e876791da 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
+
# The Zink Project
@@ -68,7 +68,18 @@ pub extern "C" fn recursion(n: usize) -> usize {
As an example for the benchmark, calculating fibonacci sequence with recursion, missed
vyper because it doesn't support recursion...Zink is 5x fast on this, but it is mainly
caused by our current implementation is not completed yet ( missing logic to adapt to more
-situations ), let's keep tuned for `v0.3.0`.
+situations ), let's stay tuned for `v0.3.0`.
+
+## Donation
+
+After completing the ERC20 implementation, Zink will focus on MEV logic since everything could
+be even more compact and realistic from this dark forest.
+
+Zink is now moving forward without any grants or backups, if you like this dreaming project,
+please feel free to reach out, would be appreciated for any opportunities ^ ^
+
+- ETH: `0xf0306047Fa598fe95502f466aeb49b68dd94365B`
+- SOL: `AZGXAerErfwVzJkiSR8moVPZxe1nEhvjdkvxQ7qR6Yst`
## LICENSE
diff --git a/_typos.toml b/_typos.toml
index f963cf966..61b063d72 100644
--- a/_typos.toml
+++ b/_typos.toml
@@ -1,2 +1,7 @@
+[default]
+extend-ignore-re = [
+ "\\w{44,52}",
+]
+
[default.extend-words]
zink = "zink"
diff --git a/codegen/src/result.rs b/codegen/src/result.rs
index 60c703e64..aebf5eb4c 100644
--- a/codegen/src/result.rs
+++ b/codegen/src/result.rs
@@ -61,7 +61,7 @@ pub enum Error {
#[error("Invalid data size {0}")]
InvalidDataSize(usize),
/// Failed to get frame info of the given depth.
- #[error("Invalid contract stack fram depth {0}")]
+ #[error("Invalid contract stack frame depth {0}")]
InvalidDepth(usize),
/// Failed to parse function selector.
#[error("Invalid function selector")]