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": []
}
}}
Submitted on: 2025-11-06 10:54:03
Comments
Log in to comment.
No comments yet.