{
    "Function": "beforeLiquidityTransfer",
    "File": "contracts/hyphen/WhitelistPeriodManager.sol",
    "Parent Contracts": [
        "contracts/hyphen/metatx/ERC2771ContextUpgradeable.sol",
        "contracts/security/Pausable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyLpNft",
        "whenNotPaused",
        "_beforeLiquidityAddition",
        "_beforeLiquidityRemoval"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function beforeLiquidityTransfer(\n        address _from,\n        address _to,\n        address _token,\n        uint256 _amount\n    ) external onlyLpNft whenNotPaused {\n        // Release limit from  _from\n        _beforeLiquidityRemoval(_from, _token, _amount);\n\n        // Block limit of _to\n        _beforeLiquidityAddition(_to, _token, _amount);\n    }"
}