vahiwe / Building-your-own-ECR20-Token

This tutorial will take you through the steps of building your first ERC20 token on the Ethereum network.

Home Page:https://medium.com/@vahiwe/building-your-own-ethereum-based-ecr20-token-in-less-than-an-hour-d4d4c7a14b1e

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GGMToken

Tutorial: Building your own Ethereum based ERC20 Token in less than an hour

This tutorial will take you through the steps of building your first ERC20 token on the Ethereum network using a single smart contract and MetaMask wallet.

## Quick Start (To run follow the medium article to use remix or use the solc cli if you have it installed)
  1. Clone the Repository:
    git clone <repository-url>
    
  2. Navigate to the Project Directory:
    cd <project-directory>
    
  3. Compile the Contract:
    solc --optimize --bin --abi contracts/GGMToken.sol -o build
    
    

Deploy the Contract

Deploy the compiled contract using MetaMask and your preferred method (e.g., Remix, Truffle).

Interact with the Contract

You can now interact with the contract using tools like Remix or programmatically through a web3-enabled application.

This repo contains the sample solidity file:

`contracts/GGMToken*.sol`

Feel free to leave any issues and I'll get back to you and help you out :)

This README file provides all the information required to compile, deploy, and interact with the GGMToken contract, along with instructions for cloning the repository and installing necessary dependencies

About

This tutorial will take you through the steps of building your first ERC20 token on the Ethereum network.

https://medium.com/@vahiwe/building-your-own-ethereum-based-ecr20-token-in-less-than-an-hour-d4d4c7a14b1e

License:MIT License


Languages

Language:Solidity 100.0%