{
    "Function": "setContractOwner",
    "File": "contracts/contracts/core/connext/libraries/LibDiamond.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "diamondStorage"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setContractOwner(address _newOwner) internal {\n    DiamondStorage storage ds = diamondStorage();\n    address previousOwner = ds.contractOwner;\n    ds.contractOwner = _newOwner;\n    emit OwnershipTransferred(previousOwner, _newOwner);\n  }"
}