2020-05-29 16:45:37 +00:00
|
|
|
// SPDX-License-Identifier: agpl-3.0
|
2020-11-20 10:45:20 +00:00
|
|
|
pragma solidity 0.6.12;
|
2020-05-29 16:45:37 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
);
|
2020-05-29 16:45:37 +00:00
|
|
|
}
|