{
    "Function": "getMemberInfo",
    "File": "contracts/testing/stakehouse/StakeHouseRegistry.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getMemberInfo(bytes memory) public pure returns (\n        address applicant,      // Address of ETH account that added the member to the StakeHouse\n        uint256 knotMemberIndex,// KNOT Index of the member within the StakeHouse\n        uint16 flags,          // Flags associated with the member\n        bool isActive           // Whether the member is active or knot\n    ) {\n        applicant = address(0);\n        knotMemberIndex = 0;\n        flags = 1;\n        isActive = true;\n    }"
}