From 9043c51d9c48eb49cef95d75e56cb19f5f0163c8 Mon Sep 17 00:00:00 2001 From: clearloop Date: Sun, 15 Sep 2024 05:44:58 +0800 Subject: [PATCH] docs(README): update logo and add donation chapter (#232) * docs(README): add donation chapter * docs(README): update LOGO * docs(README): smaller fonts * docs(README): try fix the image * docs(README): back to big title * chore(typos): clean typos --- README.md | 15 +++++++++++++-- _typos.toml | 5 +++++ codegen/src/result.rs | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) 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")]