{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/dex/utils/GasThrottle.sol",
    "Parent Contracts": [
        "contracts/shared/ProtocolConstants.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract GasThrottle is ProtocolConstants {\r\n    modifier validateGas() {\r\n        // TODO: Uncomment prior to launch\r\n        // require(\r\n        //     block.basefee <= tx.gasprice &&\r\n        //         tx.gasprice <=\r\n        //         uint256(IAggregator(_FAST_GAS_ORACLE).latestAnswer()),\r\n        //     \"GasThrottle::validateGas: Gas Exceeds Thresholds\"\r\n        // );\r\n        _;\r\n    }\r\n}"
}