Thanks to visit codestin.com
Credit goes to github.com

Skip to content

πŸ’  A simple dApp that lets you instantly deploy your own ERC-20 token on the Monad Testnet β€” built with Solidity, ethers.js, and MetaMask integration.

Notifications You must be signed in to change notification settings

alexx-init/-monad-token-factory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

4 Commits
Β 
Β 

Repository files navigation

Monad Token Factory πŸͺ™

A simple decentralized web application that allows users to instantly deploy their own ERC-20 token on the Monad Testnet β€” built with Solidity, Ethers.js, and MetaMask integration.


πŸš€ Features

  • 🧱 Deploy ERC-20 tokens directly to the Monad Testnet
  • πŸ”— MetaMask wallet connection with network check (chain ID 10143)
  • βš™οΈ Customizable token name, symbol, and total supply
  • πŸ’… Modern responsive UI with glowing border and smooth styles
  • 🧠 Built with HTML, CSS, and JavaScript (using Ethers.js)

🧩 Tech Stack

  • Frontend: HTML, CSS, JavaScript
  • Blockchain Library: Ethers.js
  • Smart Contracts: Solidity
  • Network: Monad Testnet
  • Wallet: MetaMask

πŸ› οΈ How It Works

  1. Connect your MetaMask wallet.
  2. Ensure it’s switched to the Monad Testnet (Chain ID: 10143).
  3. Enter token details (name, symbol, total supply).
  4. Click Deploy Token β€” your token will be deployed instantly!
  5. Add your deployed token to MetaMask to view it.

🧾 Smart Contract

The contract is a standard ERC-20 token implemented in Solidity and deployed via the dApp interface.

Example:

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract MyToken is ERC20 {
    constructor(string memory name, string memory symbol, uint256 initialSupply) 
        ERC20(name, symbol) {
        _mint(msg.sender, initialSupply * 10 ** decimals());
    }
}

About

πŸ’  A simple dApp that lets you instantly deploy your own ERC-20 token on the Monad Testnet β€” built with Solidity, ethers.js, and MetaMask integration.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published