SimplestERC20

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "m_erc20.sol": {
      "content": "// SPDX-License-Identifier: MIT\r
pragma solidity ^0.8.0;\r
\r
contract SimplestERC20 {\r
    string  public name       = "USD Coin";\r
    string  public symbol     = "USDC";\r
    uint8   public decimals   = 6;\r
    uint256 public totalSupply = 1_000_000 * 10**6;\r
\r
    event Transfer(address indexed from, address indexed to, uint256 value);\r
\r
    function transferFrom(address from, address to, uint256 amount) external returns (bool) {\r
        emit Transfer(from, to, amount);\r
        return true;\r
    }\r
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0x7d4fc9c59dcd5c4a675af73e15de538c00c2b92e|verified:true|block:23737409|tx:0xa901d3bc297bcec72eb11a71686ab816b0acf0a8a1ad5127bf5363f0c7de7173|first_check:1762422843

Submitted on: 2025-11-06 10:54:03

Comments

Log in to comment.

No comments yet.