aave-protocol-v2/contracts/interfaces/IUniswapExchange.sol

22 lines
560 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
2020-11-20 10:45:20 +00:00
pragma solidity 0.6.12;
interface IUniswapExchange {
2020-07-13 08:54:08 +00:00
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
);
}