{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/mixins/Constants.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract Constants {\n  /**\n   * @notice 100% in basis points.\n   */\n  uint256 internal constant BASIS_POINTS = 10000;\n\n  /**\n   * @notice Cap the number of royalty recipients to 5.\n   * @dev A cap is required to ensure gas costs are not too high when a sale is settled.\n   */\n  uint256 internal constant MAX_ROYALTY_RECIPIENTS_INDEX = 4;\n\n  /**\n   * @notice The minimum increase of 10% required when making an offer or placing a bid.\n   */\n  uint256 internal constant MIN_PERCENT_INCREMENT_IN_BASIS_POINTS = 1000;\n\n  /**\n   * @notice The gas limit used when making external read-only calls.\n   * @dev This helps to ensure that external calls does not prevent the market from executing.\n   */\n  uint256 internal constant READ_ONLY_GAS_LIMIT = 40000;\n\n  /**\n   * @notice The gas limit to send ETH to multiple recipients, enough for a 5-way split.\n   */\n  uint256 internal constant SEND_VALUE_GAS_LIMIT_MULTIPLE_RECIPIENTS = 210000;\n\n  /**\n   * @notice The gas limit to send ETH to a single recipient, enough for a contract with a simple receiver.\n   */\n  uint256 internal constant SEND_VALUE_GAS_LIMIT_SINGLE_RECIPIENT = 20000;\n}"
}