{
    "Function": "revokeDelegateSigned",
    "File": "contracts/discovery/erc1056/EthereumDIDRegistry.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()",
        "revokeDelegate",
        "checkSignature",
        "keccak256(bytes)",
        "identityOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function revokeDelegateSigned(\n        address identity,\n        uint8 sigV,\n        bytes32 sigR,\n        bytes32 sigS,\n        bytes32 delegateType,\n        address delegate\n    ) public {\n        bytes32 hash = keccak256(\n            abi.encodePacked(\n                bytes1(0x19),\n                bytes1(0),\n                this,\n                nonce[identityOwner(identity)],\n                identity,\n                \"revokeDelegate\",\n                delegateType,\n                delegate\n            )\n        );\n        revokeDelegate(\n            identity,\n            checkSignature(identity, sigV, sigR, sigS, hash),\n            delegateType,\n            delegate\n        );\n    }"
}