mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			445 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			445 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| //SPDX-License-Identifier: MIT
 | |
| pragma solidity ^0.7.6;
 | |
| 
 | |
| contract Events {
 | |
| 	event LogDeposit(address token, uint256 amount, address path, bool stake);
 | |
| 	event LogWithdraw(
 | |
| 		address token,
 | |
| 		uint256 amount,
 | |
| 		address path,
 | |
| 		bool unstake
 | |
| 	);
 | |
| 	event LogClaimRewards(
 | |
| 		address token,
 | |
| 		uint256 amount,
 | |
| 		address platformToken,
 | |
| 		uint256 platformAmount
 | |
| 	);
 | |
| 	event LogSwap(
 | |
| 		address from,
 | |
| 		address to,
 | |
| 		uint256 amountIn,
 | |
| 		uint256 amountOut
 | |
| 	);
 | |
| }
 | 
