{
    "Function": "detectTransferRestriction",
    "File": "src/token/RestrictionManager.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "hasMember"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function detectTransferRestriction(address from, address to, uint256 value) public view returns (uint8) {\n        if (!hasMember(to)) {\n            return DESTINATION_NOT_A_MEMBER_RESTRICTION_CODE;\n        }\n\n        return SUCCESS_CODE;\n    }"
}