{
    "Function": "balanceOf",
    "File": "contracts/VE3DLocker.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "node_modules/@openzeppelin/contracts/security/ReentrancyGuard.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "findEpochId",
        "balanceAtEpochOf"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function balanceOf(address _user) external view returns (uint256 amount) {\n        return balanceAtEpochOf(findEpochId(block.timestamp), _user);\n    }"
}