{
    "Function": "IsV3",
    "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.encodeWithSelector()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function IsV3(address _gauge) private returns (bool) {\n        bytes memory data = abi.encodeWithSelector(rewards_receiver, address(0));\n        (bool success, ) = _gauge.call(data);\n        return success;\n    }"
}