{
    "Function": "setFactory",
    "File": "contracts/Registry.sol",
    "Parent Contracts": [
        "contracts/interfaces/IRegistry.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setFactory(address _factory) external override onlyOwner {\n        require(_factory != address(0), \"ERROR: ZERO_ADDRESS\");\n\n        factory = _factory;\n        emit FactorySet(_factory);\n    }"
}