forked from sushiswap/mirin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MirinRouter.sol
204 lines (187 loc) · 7.34 KB
/
MirinRouter.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
// SPDX-License-Identifier: MIT
pragma solidity =0.8.4;
import "./interfaces/IWETH.sol";
import "./interfaces/IMirinPool.sol";
import "./interfaces/IMirinCurve.sol";
import "./libraries/MirinLibrary.sol";
import "./libraries/SafeERC20.sol";
contract MirinRouter {
using SafeERC20 for IERC20;
address public immutable factory;
address public immutable legacyFactory;
address public immutable weth;
modifier ensure(uint256 deadline) {
require(deadline >= block.timestamp, "MIRIN: EXPIRED");
_;
}
constructor(
address _factory,
address _legacyFactory,
address _weth
) {
factory = _factory;
legacyFactory = _legacyFactory;
weth = _weth;
}
receive() external payable {
assert(msg.sender == weth); // only accept ETH via fallback from the weth contract
}
function swapExactTokensForTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
uint256[] calldata pids,
address to,
uint256 deadline
) external ensure(deadline) returns (uint256[] memory amounts) {
return _swapExactTokensForTokens(amountIn, amountOutMin, path, pids, to);
}
function swapTokensForExactTokens(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
uint256[] calldata pids,
address to,
uint256 deadline
) external ensure(deadline) returns (uint256[] memory amounts) {
amounts = MirinLibrary.getAmountsIn(factory, legacyFactory, amountOut, path, pids);
require(amounts[0] <= amountInMax, "MIRIN: EXCESSIVE_INPUT_AMOUNT");
IERC20(path[0]).safeTransferFrom(
msg.sender,
MirinLibrary.getPool(factory, legacyFactory, path[0], path[1], pids[0]),
amounts[0]
);
_swap(amounts, path, pids, to);
}
function swapExactETHForTokens(
uint256 amountOutMin,
address[] calldata path,
uint256[] calldata pids,
address to,
uint256 deadline
) external payable ensure(deadline) returns (uint256[] memory amounts) {
return _swapExactETHForTokens(amountOutMin, path, pids, to);
}
function swapTokensForExactETH(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
uint256[] calldata pids,
address to,
uint256 deadline
) external ensure(deadline) returns (uint256[] memory amounts) {
require(path[path.length - 1] == weth, "MIRIN: INVALID_PATH");
amounts = MirinLibrary.getAmountsIn(factory, legacyFactory, amountOut, path, pids);
require(amounts[0] <= amountInMax, "MIRIN: EXCESSIVE_INPUT_AMOUNT");
IERC20(path[0]).safeTransferFrom(
msg.sender,
MirinLibrary.getPool(factory, legacyFactory, path[0], path[1], pids[0]),
amounts[0]
);
_swap(amounts, path, pids, address(this));
IWETH(weth).withdraw(amounts[amounts.length - 1]);
MirinLibrary.safeTransferETH(to, amounts[amounts.length - 1]);
}
function swapExactTokensForETH(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
uint256[] calldata pids,
address to,
uint256 deadline
) external ensure(deadline) returns (uint256[] memory amounts) {
return _swapExactTokensForETH(amountIn, amountOutMin, path, pids, to);
}
function swapETHForExactTokens(
uint256 amountOut,
address[] calldata path,
uint256[] calldata pids,
address to,
uint256 deadline
) external payable ensure(deadline) returns (uint256[] memory amounts) {
require(path[0] == weth, "MIRIN: INVALID_PATH");
amounts = MirinLibrary.getAmountsIn(factory, legacyFactory, amountOut, path, pids);
require(amounts[0] <= msg.value, "MIRIN: EXCESSIVE_INPUT_AMOUNT");
IWETH(weth).deposit{value: amounts[0]}();
assert(
IWETH(weth).transfer(MirinLibrary.getPool(factory, legacyFactory, path[0], path[1], pids[0]), amounts[0])
);
_swap(amounts, path, pids, to);
// refund dust eth, if any
if (msg.value > amounts[0]) MirinLibrary.safeTransferETH(msg.sender, msg.value - amounts[0]);
}
function _swapExactTokensForTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
uint256[] calldata pids,
address to
) internal returns (uint256[] memory amounts) {
amounts = MirinLibrary.getAmountsOut(factory, legacyFactory, amountIn, path, pids);
require(amounts[amounts.length - 1] >= amountOutMin, "MIRIN: INSUFFICIENT_OUTPUT_AMOUNT");
IERC20(path[0]).safeTransferFrom(
msg.sender,
MirinLibrary.getPool(factory, legacyFactory, path[0], path[1], pids[0]),
amounts[0]
);
_swap(amounts, path, pids, to);
}
function _swapExactETHForTokens(
uint256 amountOutMin,
address[] calldata path,
uint256[] calldata pids,
address to
) internal returns (uint256[] memory amounts) {
require(path[0] == weth, "MIRIN: INVALID_PATH");
amounts = MirinLibrary.getAmountsOut(factory, legacyFactory, msg.value, path, pids);
require(amounts[amounts.length - 1] >= amountOutMin, "MIRIN: INSUFFICIENT_OUTPUT_AMOUNT");
IWETH(weth).deposit{value: amounts[0]}();
assert(
IWETH(weth).transfer(MirinLibrary.getPool(factory, legacyFactory, path[0], path[1], pids[0]), amounts[0])
);
_swap(amounts, path, pids, to);
}
function _swapExactTokensForETH(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
uint256[] calldata pids,
address to
) internal returns (uint256[] memory amounts) {
require(path[path.length - 1] == weth, "MIRIN: INVALID_PATH");
amounts = MirinLibrary.getAmountsOut(factory, legacyFactory, amountIn, path, pids);
require(amounts[amounts.length - 1] >= amountOutMin, "MIRIN: INSUFFICIENT_OUTPUT_AMOUNT");
IERC20(path[0]).safeTransferFrom(
msg.sender,
MirinLibrary.getPool(factory, legacyFactory, path[0], path[1], pids[0]),
amounts[0]
);
_swap(amounts, path, pids, address(this));
IWETH(weth).withdraw(amounts[amounts.length - 1]);
MirinLibrary.safeTransferETH(to, amounts[amounts.length - 1]);
}
function _swap(
uint256[] memory amounts,
address[] memory path,
uint256[] memory pids,
address _to
) internal {
for (uint256 i; i < path.length - 1; i++) {
(address input, address output) = (path[i], path[i + 1]);
(address token0, ) = MirinLibrary.sortTokens(input, output);
uint256 amountOut = amounts[i + 1];
(uint256 amount0Out, uint256 amount1Out) =
input == token0 ? (uint256(0), amountOut) : (amountOut, uint256(0));
address to =
i < path.length - 2
? MirinLibrary.getPool(factory, legacyFactory, output, path[i + 2], pids[i + 1])
: _to;
IMirinPool(MirinLibrary.getPool(factory, legacyFactory, input, output, pids[i])).swap(
amount0Out,
amount1Out,
to,
bytes("")
);
}
}
}