1
0
Files
Kanel42_token/README.md

27 lines
1.4 KiB
Markdown

# Kanel42 Token
A simple EVM compatible, made in Solidity, following the ERC20 standard token. And it's multisig, EVM compatible wallet. It will be deployed on the Avalanche Fuji C-Chain.
Made using foundry-rs 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 documentation available
- Following the ERC20 standard : the most used standard when it comes to fungible token and compatible with every wallet
- Avalanche C-Chain : It is an EVM compatible chain, is very cheap in term of transaction fee and is also pretty accessible has it support all the standard function of an Ethereum node.
- foundry-rs : A simple but yet cli tool kit for Solidity developement with integrated fuzzer and test perfect for a simple project as this
## Documentation
- [How it works](documentation/HOWITWORK.md)
- [How to use it](documentation/USAGE.md)
## Some resource for more information
[ERC20](https://ethereum.org/en/developers/docs/standards/tokens/erc-20) \
[Solidity documentation](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)