{
    "Function": "burnFrom",
    "File": "contracts/RocketJoeToken.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "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": [
        "_burn",
        "onlyRJLaunchEvent"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function burnFrom(address _from, uint256 _amount)\n        external\n        onlyRJLaunchEvent\n    {\n        _burn(_from, _amount);\n    }"
}