2020-10-27 12:18:30 +00:00
|
|
|
// SPDX-License-Identifier: agpl-3.0
|
2020-11-25 14:07:33 +00:00
|
|
|
pragma solidity 0.6.12;
|
2020-10-27 12:18:30 +00:00
|
|
|
|
|
|
|
interface IUniswapV2Router02 {
|
|
|
|
function swapExactTokensForTokens(
|
|
|
|
uint256 amountIn,
|
|
|
|
uint256 amountOutMin,
|
|
|
|
address[] calldata path,
|
|
|
|
address to,
|
|
|
|
uint256 deadline
|
|
|
|
) external returns (uint256[] memory amounts);
|
|
|
|
|
|
|
|
function swapTokensForExactTokens(
|
|
|
|
uint amountOut,
|
|
|
|
uint amountInMax,
|
|
|
|
address[] calldata path,
|
|
|
|
address to,
|
|
|
|
uint deadline
|
|
|
|
) external returns (uint256[] memory amounts);
|
2020-10-27 19:32:09 +00:00
|
|
|
|
|
|
|
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
|
|
|
|
|
|
|
|
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
|
2020-10-27 12:18:30 +00:00
|
|
|
}
|