mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			398 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			398 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| // SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.7.6;
 | |
| pragma experimental ABIEncoderV2;
 | |
| 
 | |
| contract Events {
 | |
| 	event LogRewardsClaimed(
 | |
| 		address indexed market,
 | |
| 		address indexed account,
 | |
| 		uint256 indexed rewardsClaimed,
 | |
| 		uint256 setId
 | |
| 	);
 | |
| 
 | |
| 	event LogRewardsClaimedOnBehalf(
 | |
| 		address indexed market,
 | |
| 		address indexed owner,
 | |
| 		address to,
 | |
| 		uint256 indexed rewardsClaimed,
 | |
| 		uint256 setId
 | |
| 	);
 | |
| }
 | 
