mirror of
				https://github.com/Instadapp/aave-protocol-v2.git
				synced 2024-07-29 21:47:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			560 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			560 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| // SPDX-License-Identifier: agpl-3.0
 | |
| pragma solidity 0.6.12;
 | |
| 
 | |
| interface IUniswapExchange {
 | |
|   event TokenPurchase(
 | |
|     address indexed buyer,
 | |
|     uint256 indexed eth_sold,
 | |
|     uint256 indexed tokens_bought
 | |
|   );
 | |
|   event EthPurchase(address indexed buyer, uint256 indexed tokens_sold, uint256 indexed eth_bought);
 | |
|   event AddLiquidity(
 | |
|     address indexed provider,
 | |
|     uint256 indexed eth_amount,
 | |
|     uint256 indexed token_amount
 | |
|   );
 | |
|   event RemoveLiquidity(
 | |
|     address indexed provider,
 | |
|     uint256 indexed eth_amount,
 | |
|     uint256 indexed token_amount
 | |
|   );
 | |
| }
 | 
