{
    "Function": "mint",
    "File": "contracts/AuraMinter.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-0.8/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts-0.8/utils/Context.sol"
    ],
    "High-Level Calls": [
        "AuraToken"
    ],
    "Internal Calls": [
        "onlyOwner",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function mint(address _to, uint256 _amount) external onlyOwner {\n        require(block.timestamp > inflationProtectionTime, \"Inflation protected for now\");\n        aura.minterMint(_to, _amount);\n    }"
}