{
    "Function": "addReward",
    "File": "contracts/ExtraRewardsDistributor.sol",
    "Parent Contracts": [
        "contracts/Interfaces.sol",
        "node_modules/@openzeppelin/contracts-0.8/security/ReentrancyGuard.sol"
    ],
    "High-Level Calls": [
        "IAuraLocker",
        "IAuraLocker"
    ],
    "Internal Calls": [
        "_addReward"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addReward(address _token, uint256 _amount) external {\n        auraLocker.checkpointEpoch();\n\n        uint256 latestEpoch = auraLocker.epochCount() - 1;\n        _addReward(_token, _amount, latestEpoch);\n    }"
}