{
    "Function": "changeFee",
    "File": "contracts/hyphen/token/TokenManager.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/security/Pausable.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "contracts/hyphen/metatx/ERC2771Context.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/hyphen/interfaces/ITokenManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "onlyOwner",
        "require(bool,string)",
        "whenNotPaused"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function changeFee(\n        address tokenAddress,\n        uint256 _equilibriumFee,\n        uint256 _maxFee\n    ) external override onlyOwner whenNotPaused {\n        require(_equilibriumFee != 0, \"Equilibrium Fee cannot be 0\");\n        require(_maxFee != 0, \"Max Fee cannot be 0\");\n        tokensInfo[tokenAddress].equilibriumFee = _equilibriumFee;\n        tokensInfo[tokenAddress].maxFee = _maxFee;\n        emit FeeChanged(tokenAddress, tokensInfo[tokenAddress].equilibriumFee, tokensInfo[tokenAddress].maxFee);\n    }"
}