mirror of
				https://github.com/Instadapp/dsa-connectors-2.0.git
				synced 2024-07-29 21:57:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			392 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			392 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
//SPDX-License-Identifier: MIT
 | 
						|
pragma solidity ^0.8.2;
 | 
						|
 | 
						|
contract Events {
 | 
						|
    event LogOperate(
 | 
						|
        address vaultAddress,
 | 
						|
        uint256 nftId,
 | 
						|
        int256 newCol,
 | 
						|
        int256 newDebt
 | 
						|
    );
 | 
						|
 | 
						|
    event LogOperateWithIds(
 | 
						|
        address vaultAddress,
 | 
						|
        uint256 nftId,
 | 
						|
        int256 newCol,
 | 
						|
        int256 newDebt,
 | 
						|
        uint256[] getIds,
 | 
						|
        uint256[] setIds
 | 
						|
    );
 | 
						|
}
 |