Create your own ERC20 Token: NtinosToken (KON)
Create the Token easily with the help of the OpenZeppelin library
For more help check their documentation
- A smart contract to create your own ERC20 Token
An ERC-20 is the technical standard for fungible tokens created using the Ethereum blockchain.
A fungible token is one that is interchangeable with another token.
A python script to:
- Connect to a Blockchain
(Testnet, Mainnet)
- Get an account safely
- Use the
essential_scripts.py
- Use the
- Deploy our contract
Get an account safely:
- From a local or a forked local blockchain environment
- A real one which we saved in the brownie accounts list
- A real one via the config & .env file
To run the code there are some requirements. You must install:
Install pipx by running the following on the command line: python -m pip install --user pipx
then python3 -m pipx ensurepath
For more information check: Install pipx
Install Brownie by running the following on the command line: pip install eth-brownie
For more information check: Install Brownie