{
    "Function": "setOwner",
    "File": "contracts/VoterID.sol",
    "Parent Contracts": [
        "interfaces/IVoterID.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "ownerOnly"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setOwner(address newOwner) external ownerOnly {\n        address oldOwner = _owner_;\n        _owner_ = newOwner;\n        emit OwnerUpdated(oldOwner, newOwner);\n    }"
}