aave-protocol-v2/contracts/interfaces/IUniswapExchange.sol
2020-07-13 11:54:08 +03:00

22 lines
560 B
Solidity

// SPDX-License-Identifier: agpl-3.0
pragma solidity ^0.6.8;
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
);
}