{
    "Function": "constructor",
    "File": "contracts/AuraPenaltyForwarder.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "SafeERC20"
    ],
    "Internal Calls": [],
    "Library Calls": [
        "safeApprove"
    ],
    "Low-Level Calls": [],
    "Code": "constructor(\n        address _distributor,\n        address _token,\n        uint256 _delay\n    ) {\n        distributor = IExtraRewardsDistributor(_distributor);\n        token = IERC20(_token);\n        distributionDelay = _delay;\n\n        lastDistribution = block.timestamp;\n\n        token.safeApprove(address(distributor), type(uint256).max);\n    }"
}