Skip to content

Commit

Permalink
docs(README): update logo and add donation chapter (#232)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
clearloop authored Sep 14, 2024
1 parent d096f5e commit 9043c51
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img align="right" width="150" height="150" top="100" src = "https://github.com/clearloop/zink/assets/26088946/2b13f312-ca96-44ae-aa04-b0db9471aadb"/>
<img align="right" width="150" height="150" top="100" src = "https://avatars.githubusercontent.com/u/138247979?s=400&u=cbf4b9e9da048899a947f08d92e030806d5bd50b&v=4"/>

# The Zink Project

Expand Down Expand Up @@ -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

Expand Down
5 changes: 5 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
[default]
extend-ignore-re = [
"\\w{44,52}",
]

[default.extend-words]
zink = "zink"
2 changes: 1 addition & 1 deletion codegen/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 9043c51

Please sign in to comment.