{
    "Function": "transferVesting",
    "File": "contracts/SecondSwap_VestingDeployer.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [
        "SecondSwap_StepVesting",
        "SecondSwap_StepVesting"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function transferVesting(\n        address _grantor,\n        address _beneficiary,\n        uint256 _amount,\n        address _stepVesting,\n        string memory _transactionId\n    ) external {\n        require(\n            _tokenOwner[msg.sender] == address(SecondSwap_StepVesting(_stepVesting).token()),\n            \"SS_VestingDeployer: caller is not the token owner\"\n        ); // 3.2. Arbitrary transfer of vesting\n        SecondSwap_StepVesting(_stepVesting).transferVesting(_grantor, _beneficiary, _amount);\n        emit VestingTransferred(_grantor, _beneficiary, _amount, _stepVesting, _transactionId);\n    }"
}