{
    "Function": "mint",
    "File": "contracts/DepositToken.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
        "node_modules/@openzeppelin/contracts/token/ERC20/IERC20.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "_mint"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function mint(address _to, uint256 _amount) external {\n        require(msg.sender == operator, \"!authorized\");\n\n        _mint(_to, _amount);\n    }"
}