{
    "Function": "identityOwner",
    "File": "contracts/discovery/erc1056/EthereumDIDRegistry.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function identityOwner(address identity) public view returns (address) {\n        address owner = owners[identity];\n        if (owner != address(0)) {\n            return owner;\n        }\n        return identity;\n    }"
}