{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/helpers/RevertDebug.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "contract RevertDebug {\n    string public constant CALL_REVERT_PREFIX = \"Multicall: \";\n\n    /// @dev Get the revert message from a call\n    /// @notice This is needed in order to get the human-readable revert message from a call\n    /// @param _res Response of the call\n    /// @return Revert message string\n    function _getRevertMsgFromRes(bytes memory _res) internal pure returns (string memory) {\n        // If the _res length is less than 68, then the transaction failed silently (without a revert message)\n        if (_res.length < 68) return \"No revert msg\";\n        return abi.decode(_res, (string)); // All that remains is the revert string\n    }\n\n    /// @dev Get the prefixed revert message from a call\n    /// @param _res Response of the call\n    /// @return Prefixed revert message string\n    function _getPrefixedRevertMsg(bytes memory _res) internal pure returns (string memory) {\n        string memory _revertMsg = _getRevertMsgFromRes(_res);\n        return string(abi.encodePacked(CALL_REVERT_PREFIX, _revertMsg));\n    }\n}"
}