{
    "Function": "getRedemptionFeeWithDecay",
    "File": "contracts/src/CollateralRegistry.sol",
    "Parent Contracts": [
        "contracts/src/Interfaces/ICollateralRegistry.sol",
        "contracts/src/Dependencies/Owned.sol",
        "contracts/src/Interfaces/IOwned.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_calcRedemptionFee",
        "getRedemptionRateWithDecay"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getRedemptionFeeWithDecay(uint256 _ETHDrawn) external view override returns (uint256) {\n        return _calcRedemptionFee(getRedemptionRateWithDecay(), _ETHDrawn);\n    }"
}