Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

creating ERC20 token example added #22

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions creating-erc20-token/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
27 changes: 27 additions & 0 deletions creating-erc20-token/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# How to creating ERC20 token

In recent years, the ERC20 token specification has become the defacto standard for Ethereum tokens. In other words, most Ethereum contracts out there today are ERC20-compliant. In this example you will learn how you can create your own Ethereum token by using [Truffle](https://www.trufflesuite.com/), [Ganache](https://www.trufflesuite.com/ganache) and [Openzeppelin](https://openzeppelin.com/) library.

<br>

### Step 1: Step The Project Directory
First of all we'll create a new project directory. Inside the root directory run the following commands:
```sh
npm init -y
```
```sh
npm i -g truffle
```
```sh
npm i @openzeppelin/contracts
```

and then install [Ganache](https://www.trufflesuite.com/ganache) UI tool.

<br>

### Step 2: Initialize a Truffle Project
```sh
truffle init
```

Loading