Description:
Smart contract deployed on Ethereum with Factory features.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"Issuer.sol": {
"content": "// SPDX-License-Identifier: MIT\r
pragma solidity ^0.8.0;\r
\r
contract Issuer {\r
address public usdcContract;\r
address public owner;\r
uint256 public initialAmount;\r
\r
event IssueCallMade(address indexed to, uint256 amount);\r
\r
constructor(address _usdcContract, address _owner, uint256 _initialAmount) {\r
usdcContract = _usdcContract;\r
owner = _owner;\r
initialAmount = _initialAmount;\r
}\r
\r
function issueCall(address to, uint256 amount) external {\r
emit IssueCallMade(to, amount);\r
}\r
}\r
"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}
}}
Submitted on: 2025-11-04 11:09:55
Comments
Log in to comment.
No comments yet.