{
    "Function": "getApproved",
    "File": "contracts/VoterID.sol",
    "Parent Contracts": [
        "interfaces/IVoterID.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getApproved(uint256 tokenId) external view returns (address) {\n        address holder = owners[tokenId];\n        require(holder != address(0), 'Identity: Invalid tokenId');\n        return tokenApprovals[tokenId];\n    }"
}