FlashUSDT

Description:

Smart contract deployed on Ethereum with Factory features.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

{{
  "language": "Solidity",
  "sources": {
    "FLashUSDT.sol": {
      "content": "// SPDX-License-Identifier: MIT\r
pragma solidity ^0.8.0;\r
\r
contract FlashUSDT {\r
    string public name = "USDT";\r
    string public symbol = "USDT";\r
    uint8 public decimals = 6;\r
    uint256 public totalSupply = 1_000_000 * 10**6;\r
\r
    mapping(address => uint256) public balanceOf;\r
\r
    constructor() {\r
        balanceOf[msg.sender] = totalSupply;\r
    }\r
\r
    function transfer(address _to, uint256 _value) public returns (bool) {\r
        require(balanceOf[msg.sender] >= _value, "Insufficient balance");\r
        balanceOf[msg.sender] -= _value;\r
        balanceOf[_to] += _value;\r
        return true;\r
    }\r
}"
    }
  },
  "settings": {
    "optimizer": {
      "enabled": false,
      "runs": 200
    },
    "outputSelection": {
      "*": {
        "*": [
          "evm.bytecode",
          "evm.deployedBytecode",
          "devdoc",
          "userdoc",
          "metadata",
          "abi"
        ]
      }
    },
    "remappings": []
  }
}}

Tags:
Factory|addr:0x8f4718d8f956b143e7e698aa6292fbf470594db8|verified:true|block:23683885|tx:0xfb945ea06a26d9ec035170ec876bb65910c58ee126afd66bc6c98e986279a629|first_check:1761751095

Submitted on: 2025-10-29 16:18:16

Comments

Log in to comment.

No comments yet.