mirror of
				https://github.com/Instadapp/dsa-connectors.git
				synced 2024-07-29 22:37:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			422 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			422 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma solidity ^0.7.0;
 | |
| 
 | |
| contract Events {
 | |
|     event LogDepositERC1155(
 | |
|         address indexed erc1155,
 | |
|         address from,
 | |
|         uint256 tokenId,
 | |
|         uint256 amount,
 | |
|         uint256 getId,
 | |
|         uint256 setId
 | |
|     );
 | |
|     event LogWithdrawERC1155(
 | |
|         address indexed erc1155,
 | |
|         uint256 tokenId,
 | |
|         address indexed to,
 | |
|         uint256 amount,
 | |
|         uint256 getId,
 | |
|         uint256 setId
 | |
|     );
 | |
| }
 | 
