{
    "Function": "constructor",
    "File": "contracts/token/FullPremintERC20Token.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": [
        "_mint",
        "require(bool,string)",
        "constructor",
        "_msgSender"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(string memory name_, string memory symbol_, uint256 supply_) ERC20(name_, symbol_) {\n        require(supply_ > 0, \"NO_ZERO_MINT\");\n        _mint(_msgSender(), supply_);\n    }"
}