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:0xfc1b754109c50bce94fbd989789be8ff3f92063a|verified:true|block:23723079|tx:0xbe47f05354c7f0df3be3e7b07aba1d5e75f1e8f417eef55ab759570d2d23dc14|first_check:1762251020

Submitted on: 2025-11-04 11:09:55

Comments

Log in to comment.

No comments yet.