Skip to content
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