mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			340 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			340 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
//SPDX-License-Identifier: MIT
 | 
						|
pragma solidity ^0.7.0;
 | 
						|
 | 
						|
interface InstaGovernorInterface {
 | 
						|
    function castVoteWithReason(uint proposalId, uint8 support, string calldata reason) external;
 | 
						|
}
 | 
						|
 | 
						|
interface InstaTokenInterface {
 | 
						|
    function delegate(address delegatee) external;
 | 
						|
    function delegates(address) external view returns(address);
 | 
						|
} |