{
    "Function": "getTotalFee",
    "File": "src/libraries/FeeHelper.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "getVariableFee",
        "getBaseFee"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getTotalFee(FeeParameters memory _fp) private pure returns (uint256) {\n        unchecked {\n            return getBaseFee(_fp) + getVariableFee(_fp);\n        }\n    }"
}