mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			401 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			401 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
//SPDX-License-Identifier: MIT
 | 
						|
pragma solidity ^0.7.0;
 | 
						|
 | 
						|
import { TokenInterface } from "../../common/interfaces.sol";
 | 
						|
import { ILido } from "./interface.sol";
 | 
						|
 | 
						|
abstract contract Helpers {
 | 
						|
	ILido internal constant lidoInterface =
 | 
						|
		ILido(0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84);
 | 
						|
 | 
						|
	address internal constant treasury =
 | 
						|
		0x28849D2b63fA8D361e5fc15cB8aBB13019884d09; // Instadapp's treasury address
 | 
						|
}
 |