{
    "Function": "constructor",
    "File": "contracts/dex-v2/synths/SynthFactory.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/synth/ISynthFactory.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "transferOwnership"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(address _pool) {\r\n        require(\r\n            _pool != _ZERO_ADDRESS,\r\n            \"SynthFactory::constructor: Misconfiguration\"\r\n        );\r\n        transferOwnership(_pool);\r\n    }"
}