{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/dex-v2/wrapper/LPWrapper.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/shared/ProtocolConstants.sol",
        "contracts/interfaces/dex-v2/wrapper/ILPWrapper.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract LPWrapper is ILPWrapper, ProtocolConstants, Ownable {\r\n    mapping(IERC20 => IERC20Extended) public override tokens;\r\n\r\n    constructor(address pool) {\r\n        require(\r\n            pool != _ZERO_ADDRESS,\r\n            \"LPWrapper::constructor: Misconfiguration\"\r\n        );\r\n        transferOwnership(pool);\r\n    }\r\n\r\n    function createWrapper(IERC20 foreignAsset) external override onlyOwner {\r\n        require(\r\n            tokens[foreignAsset] == IERC20Extended(_ZERO_ADDRESS),\r\n            \"LPWrapper::createWrapper: Already Created\"\r\n        );\r\n\r\n        // NOTE: Here, `owner` is the VaderPoolV2\r\n        tokens[foreignAsset] = IERC20Extended(\r\n            address(\r\n                new LPToken(\r\n                    IERC20Extended(address(foreignAsset)),\r\n                    IVaderPoolV2(owner())\r\n                )\r\n            )\r\n        );\r\n    }\r\n}"
}