{
    "Function": "vestedAmount",
    "File": "contracts/openzeppelin-solidity/contracts/finance/VestingWallet.sol",
    "Parent Contracts": [
        "contracts/openzeppelin-solidity/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "_vestingSchedule",
        "released"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function vestedAmount(address token, uint64 timestamp) public view virtual returns (uint256) {\n        return _vestingSchedule(IERC20(token).balanceOf(address(this)) + released(token), timestamp);\n    }"
}