diff --git a/README.md b/README.md index 3c9ea23..7dde837 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,21 @@ # Kanel42 Token +A simple EVM compatible, made in Solidity, following the ERC20 standard token. And it's multisig, EVM compatible wallet. \ +Made using [foundry-rs](https://getfoundry.sh) toolkit. + +## Why ?? +- EVM compatible : this is the biggest standard when it comes to smart contract and is widely available in multiple chains +- Made in Solidity : the most common languange for smart contract and has plenty of documenation available +- Following the ERC20 standard : the most used standard when it comes to fungible token and compatible with every wallet +- foundry-rs : A simple but yet cli tool kit for Solidity developement with integrated fuzzer and test perfect for a simple project as this + +## Some resource for more information +[ERC20](https://ethereum.org/en/developers/docs/standards/tokens/erc-20) +[Solidity documenation](https://docs.soliditylang.org/en/v0.8.28/) +[foundry-rs](https://getfoundry.sh) +[Avalanche](https://www.avax.network/) +[Ethereum](https://ethereum.org) +[Solidity 0.8 course](https://www.youtube.com/playlist?list=PLO5VPQH6OWdVQwpQfw9rZ67O6Pjfo6q-p) + ## License This project is under [MIT License](LICENSE) diff --git a/flake.nix b/flake.nix index eb9cbe7..4f2ba8e 100644 --- a/flake.nix +++ b/flake.nix @@ -44,7 +44,7 @@ echo Installing node env pnpm install fi - if [ ! -d lib/ ]; then + if [ ! -d code/lib/ ]; then echo Installing forge env forge i fi