{
    "Function": "_getLBPairInformation",
    "File": "src/LBRouter.sol",
    "Parent Contracts": [
        "src/interfaces/ILBRouter.sol"
    ],
    "High-Level Calls": [
        "ILBFactory"
    ],
    "Internal Calls": [
        "revert LBRouter__PairNotCreated(address,address,uint256)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getLBPairInformation(\n        IERC20 _tokenX,\n        IERC20 _tokenY,\n        uint256 _binStep\n    ) private view returns (ILBPair) {\n        ILBPair _LBPair = factory.getLBPairInformation(_tokenX, _tokenY, _binStep).LBPair;\n        if (address(_LBPair) == address(0))\n            revert LBRouter__PairNotCreated(address(_tokenX), address(_tokenY), _binStep);\n        return _LBPair;\n    }"
}