{
    "Function": "IsV1",
    "File": "contracts/StashFactory.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encode()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function IsV1(address _gauge) private returns (bool) {\n        bytes memory data = abi.encode(rewarded_token);\n        (bool success, ) = _gauge.call(data);\n        return success;\n    }"
}