{
    "Function": "getAPY",
    "File": "contracts/BaseRewardPool.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "SafeMath",
        "SafeMath",
        "SafeMath"
    ],
    "Internal Calls": [
        "totalSupply"
    ],
    "Library Calls": [
        "mul",
        "div",
        "mul"
    ],
    "Low-Level Calls": [],
    "Code": "function getAPY() external view returns (uint256) {\n        return rewardRate.mul(BLOCKS_PER_YEAR).mul(1e18).div(totalSupply());\n    }"
}