{
    "Function": "getUserPoint",
    "File": "governance/contracts/wveOLAS.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IVEOLAS",
        "IVEOLAS"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getUserPoint(address account, uint256 idx) public view returns (PointVoting memory uPoint) {\n        // Get the number of user points\n        uint256 userNumPoints = IVEOLAS(ve).getNumUserPoints(account);\n        if (userNumPoints > 0) {\n            uPoint = IVEOLAS(ve).getUserPoint(account, idx);\n        }\n    }"
}