{
    "Function": "createPool",
    "File": "contracts/mocks/MirinFactoryMock.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function createPool(\n        uint256[] memory timestamps,\n        uint256[] memory price0Cumulatives,\n        uint256[] memory price1Cumulatives\n    ) external returns (MirinOracleMock pool) {\n        pool = new MirinOracleMock(\n            timestamps,\n            price0Cumulatives,\n            price1Cumulatives\n        );\n        isPool[address(pool)] = true;\n        allPools.push(address(pool));\n    }"
}