{
    "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": [
        "_getClaim",
        "hasStarted"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getClaim()\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[msg.sender];\r\n        return _getClaim(vester.amount, vester.lastClaim);\r\n    }"
}