Deploy your first token!

// SPDX-License-Identifier: MIT
  pragma solidity ^0.8.19;

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

  contract Token is ERC20 {
      constructor(
          string memory _name, 
          string memory _symbol,
          uint256 initialSupply
      ) ERC20(_name, _symbol) {
          _mint(msg.sender, initialSupply * 10 ** decimals());
      }
  }

ERC20

Tokens

The ERC20 standard defines a set of rules that apply to all tokens operating on the Ethereum blockchain. When you deploy an ERC20 token, you are creating a digital asset that can be traded, spent, or given to others. ERC20 tokens maintain a consistent record of who owns how many tokens at any given time and ensure secure transactions within the Ethereum network.Deploying an ERC20 token through this dashboard allows you to specify a unique name, symbol, and initial supply for your token. The initial supply is minted to your address upon creation, after which you can distribute it according to your project's needs. This token can then be integrated into a wider ecosystem of wallets, exchanges, and other smart contracts, leveraging the interoperability that the ERC20 standard provides.