mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			382 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			382 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| //SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.7.0;
 | |
| 
 | |
| import { TokenInterface } from "../../common/interfaces.sol";
 | |
| import { DSMath } from "../../common/math.sol";
 | |
| import { Basic } from "../../common/basic.sol";
 | |
| 
 | |
| abstract contract Helpers is DSMath, Basic {
 | |
| 	/**
 | |
| 	 * @dev 1Inch Address
 | |
| 	 */
 | |
| 	address internal constant oneInchAddr =
 | |
| 		0x1111111254fb6c44bAC0beD2854e76F90643097d;
 | |
| }
 | 
