{
    "Function": "claimForMember",
    "File": "contracts/Dao.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "iBONDVAULT"
    ],
    "Internal Calls": [
        "calcClaimBondedLP"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function claimForMember(address asset) external returns (bool){\n        uint claimA = calcClaimBondedLP(msg.sender, asset); // Check user's unlocked Bonded LPs\n        if(claimA > 0){\n            _BONDVAULT.claimForMember(asset, msg.sender); // Claim LPs if any unlocked\n        }\n        return true;\n    }"
}