From 9845070b9bd4144c7e8b84e623adc5a9dfd28a86 Mon Sep 17 00:00:00 2001 From: adjoly Date: Sun, 10 Aug 2025 16:46:33 +0200 Subject: [PATCH] =?UTF-8?q?=E3=80=8C=F0=9F=93=9D=E3=80=8D=20doc(USAGE):=20?= =?UTF-8?q?added=20avalanche=20to=20th=20edoc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 ++- documentation/USAGE.md | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7eaf509..11e0ce7 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,13 @@ # Kanel42 Token -A simple EVM compatible, made in Solidity, following the ERC20 standard token. And it's multisig, EVM compatible wallet. \ +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 diff --git a/documentation/USAGE.md b/documentation/USAGE.md index ee5a0f6..68e5776 100644 --- a/documentation/USAGE.md +++ b/documentation/USAGE.md @@ -2,6 +2,8 @@ Because it is a ERC20 token you can use it with any wallet that support the standard, like MetaMask, Rabby, and a lot more... +You can send all the function via foundry-rs'`cast` command, via a blockchain explorer or anything that can communicate with a EVM compatible RPC. + ## Mint it You can call the function `mint(uint256)` and giving it a number of token (in *10^decimals). And then you will be credited with the corresponding tokens.