K-Konstantinidis / Create-An-ERC20-Token

Create your own ERC20 Token. Python scripts to deploy the contract.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KON-ERC20-Token

Create your own ERC20 Token: NtinosToken (KON)

Create the Token easily with the help of the OpenZeppelin library

For more help check their documentation

NtinosToken.sol

  • A smart contract to create your own ERC20 Token

What's an 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. 

Deploy.py

A python script to:

  • Connect to a Blockchain (Testnet, Mainnet)
  • Get an account safely
    • Use the essential_scripts.py
  • Deploy our contract

Essential_Scripts.py

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

Help with the project

To run the code there are some requirements. You must install:

pipx

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

Brownie

Install Brownie by running the following on the command line: pip install eth-brownie

For more information check: Install Brownie

About

Create your own ERC20 Token. Python scripts to deploy the contract.

License:MIT License


Languages

Language:Python 79.4%Language:Solidity 20.6%