mirror of
				https://github.com/Instadapp/dsa-connectors-2.0.git
				synced 2024-07-29 21:57:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			499 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			499 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| //SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.8.2;
 | |
| 
 | |
| contract Events {
 | |
|     event LogClaim(
 | |
|         uint256 cumulativeAmount,
 | |
|         address fToken,
 | |
|         uint256 cycle,
 | |
|         bytes32[] merkleProof,
 | |
|         uint256 rewardsClaimed,
 | |
|         uint256 setId
 | |
|     );
 | |
| 
 | |
|     event LogClaimOnBehalf(
 | |
|         address recipient_,
 | |
|         uint256 cumulativeAmount,
 | |
|         address fToken,
 | |
|         uint256 cycle,
 | |
|         bytes32[] merkleProof,
 | |
|         uint256 rewardsClaimed,
 | |
|         uint256 setId
 | |
|     );
 | |
| }
 | 
