{
    "Function": "marketChangeLockup",
    "File": "contracts/FETH.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_marketUnlockFor",
        "_marketLockupFor",
        "onlyFoundationMarket"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function marketChangeLockup(\n    address unlockFrom,\n    uint256 unlockExpiration,\n    uint256 unlockAmount,\n    address lockupFor,\n    uint256 lockupAmount\n  ) external payable onlyFoundationMarket returns (uint256 expiration) {\n    _marketUnlockFor(unlockFrom, unlockExpiration, unlockAmount);\n    return _marketLockupFor(lockupFor, lockupAmount);\n  }"
}