{
    "Function": "setFeeProtocol",
    "File": "src/V3FactoryOwner.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IUniswapV3PoolOwnerActions"
    ],
    "Internal Calls": [
        "_revertIfNotAdmin"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setFeeProtocol(\n    IUniswapV3PoolOwnerActions _pool,\n    uint8 _feeProtocol0,\n    uint8 _feeProtocol1\n  ) external {\n    _revertIfNotAdmin();\n    _pool.setFeeProtocol(_feeProtocol0, _feeProtocol1);\n  }"
}