{
    "Function": "renounceOwnership",
    "File": "contracts/StrategyProxyFactory.sol",
    "Parent Contracts": [
        "contracts/helpers/StringUtils.sol",
        "contracts/helpers/AddressUtils.sol",
        "node_modules/@openzeppelin/contracts/proxy/Initializable.sol",
        "contracts/StrategyProxyFactoryStorage.sol",
        "contracts/interfaces/IStrategyProxyFactory.sol",
        "contracts/helpers/StrategyTypes.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function renounceOwnership() public onlyOwner {\n        emit OwnershipTransferred(owner, address(0));\n        owner = address(0);\n    }"
}