{
    "Function": "nominateNewOwner",
    "File": "src/Utils/Owned.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function nominateNewOwner(address _owner) external onlyOwner {\n        nominatedOwner = _owner;\n        emit OwnerNominated(_owner);\n    }"
}