{
    "Function": "begin",
    "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": [
        "renounceOwnership",
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function begin() external override onlyOwner {\r\n        start = block.timestamp;\r\n        end = block.timestamp + _VESTING_DURATION;\r\n\r\n        emit VestingInitialized(_VESTING_DURATION);\r\n\r\n        renounceOwnership();\r\n    }"
}