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": []
}
}}
Submitted on: 2025-10-29 16:18:16
Comments
Log in to comment.
No comments yet.