Issuer

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": []
  }
}}

Tags:
Factory|addr:0x740714049633809c2a5534716f4d78793908b3ab|verified:true|block:23720611|tx:0x4f52f790fb61376fc4b9c5d264cc3ffe7f43622a338ba4566f1442e90df17f01|first_check:1762245813

Submitted on: 2025-11-04 09:43:35

Comments

Log in to comment.

No comments yet.