{
    "Function": "getClaim",
    "File": "contracts/tokens/vesting/LinearVesting.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/shared/ProtocolConstants.sol",
        "contracts/interfaces/tokens/vesting/ILinearVesting.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "hasStarted",
        "_getClaim"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getClaim(address _vester)\r\n        external\r\n        view\r\n        override\r\n        hasStarted\r\n        returns (uint256 vestedAmount)\r\n    {\r\n        Vester memory vester = vest[_vester];\r\n        return\r\n            _getClaim(\r\n                vester.amount,\r\n                vester.lastClaim,\r\n                vester.start,\r\n                vester.end\r\n            );\r\n    }"
}