sanjaybip / hardhat-erc20-token

Creates an ERC-20 Token using openzeppelin open source library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sample ERC20 Token creation

This is the sample smart contracts written to create an ERC20 token according to EIP-20 standards.

/contracts/ManualToken.sol Has all the methods, events and properties requires to create an ERC-20 token manually.

/contracts/OurToken.sol uses standard opensource library openzeppelin to create and ERC-20 token without much effort.

The smart contract is developed using Hardhat and TypeScript while following Patrick Collions course.

Running the code

To run and test the code in your local development machine copy the repo with the following command. We have used yarn package manager to install all dependencies. You can use NPM.

git clone https://github.com/sanjaydefidev/hardhat-erc20-token

Installing all the dependencies

yarn install

Check out this link for more information about this tutorial.

Note

Thanks to @PatrickAlphaC for creating such a helpful tutorial.

About

Creates an ERC-20 Token using openzeppelin open source library.

License:MIT License


Languages

Language:TypeScript 60.6%Language:Solidity 38.0%Language:Shell 1.3%