mirror of
				https://github.com/Instadapp/dsa-connectors-2.0.git
				synced 2024-07-29 21:57:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			777 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			777 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
pragma solidity ^0.8.0;
 | 
						|
 | 
						|
/// @dev The maximum fee a market can have (25%).
 | 
						|
uint256 constant MAX_FEE = 0.25e18;
 | 
						|
 | 
						|
/// @dev Oracle price scale.
 | 
						|
uint256 constant ORACLE_PRICE_SCALE = 1e36;
 | 
						|
 | 
						|
/// @dev Liquidation cursor.
 | 
						|
uint256 constant LIQUIDATION_CURSOR = 0.3e18;
 | 
						|
 | 
						|
/// @dev Max liquidation incentive factor.
 | 
						|
uint256 constant MAX_LIQUIDATION_INCENTIVE_FACTOR = 1.15e18;
 | 
						|
 | 
						|
/// @dev The EIP-712 typeHash for EIP712Domain.
 | 
						|
bytes32 constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(uint256 chainId,address verifyingContract)");
 | 
						|
 | 
						|
/// @dev The EIP-712 typeHash for Authorization.
 | 
						|
bytes32 constant AUTHORIZATION_TYPEHASH =
 | 
						|
    keccak256("Authorization(address authorizer,address authorized,bool isAuthorized,uint256 nonce,uint256 deadline)");
 |