{
    "Function": "addPool",
    "File": "contracts/UniswapV3Oracle.sol",
    "Parent Contracts": [
        "contracts/external/Ownable.sol",
        "contracts/interfaces/IOwnable.sol",
        "contracts/interfaces/IPriceOracle.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner",
        "_validatePool"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function addPool(\n    address _token,\n    address _pairToken,\n    uint24  _poolFee\n  ) external onlyOwner {\n\n    _validatePool(_token, _pairToken, _poolFee);\n\n    pools[_token] = Pool({\n      pairToken: _pairToken,\n      poolFee: _poolFee\n    });\n\n    emit PoolAdded(_token);\n  }"
}