-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMidasRouter.sol
589 lines (556 loc) · 21.1 KB
/
MidasRouter.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {TokenHelper} from "./libraries/TokenHelper.sol";
import {IWETH} from "./interfaces/IWETH.sol";
import {IMidasRouter} from "./interfaces/IMidasRouter.sol";
import {IMidasPair721} from "./interfaces/IMidasPair721.sol";
import {IMidasFactory721} from "./interfaces/IMidasFactory721.sol";
/// @title Midas Router
/// @author midaswap
/// @notice Router for trades and liquidity managements against the Midaswap
contract MidasRouter is IMidasRouter {
error Router__WrongPair();
error Router__WrongAmount();
error Router__Expired();
error Router__SlippageTooHigh();
using TokenHelper for IERC20;
using TokenHelper for IWETH;
IWETH public weth;
IMidasFactory721 public factory;
constructor(IWETH _weth, IMidasFactory721 _factory) {
weth = _weth;
factory = _factory;
}
receive() external payable {
assert(msg.sender == address(weth)); // only accept ETH via fallback from the WETH contract
}
/// @notice The function to add ERC721 liquidity into pair
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _ids The array of bin Ids where to add liquidity
/// @param _tokenIds The array of NFT tokenIds
/// @param _deadline The deadline of the tx
/// @return idAmount The amount of ids
/// @return lpTokenId The ID of the LP token
function addLiquidityERC721(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256[] calldata _tokenIds,
uint256 _deadline
) external override returns (uint256 idAmount, uint128 lpTokenId) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _length;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_length = _tokenIds.length;
for (uint256 i; i < _length; ) {
IERC721(_tokenX).safeTransferFrom(msg.sender, _pair, _tokenIds[i]);
unchecked {
++i;
}
}
(idAmount, lpTokenId) = IMidasPair721(_pair).mintNFT(
_ids,
_tokenIds,
msg.sender,
false
);
}
/// @notice The function to add ERC20 liquidity into pair
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _ids The array of bin Ids where to add liquidity
/// @param _deadline The deadline of the tx
/// @return idAmount The amount of ids
/// @return lpTokenId The ID of the LP token
function addLiquidityERC20(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256 _deadline
) external override returns (uint256 idAmount, uint128 lpTokenId) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _amount;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_amount = _getAmountsToAdd(_pair, _ids);
IERC20(_tokenY).safeTransferFrom(msg.sender, _pair, _amount);
(idAmount, lpTokenId) = IMidasPair721(_pair).mintFT(_ids, msg.sender, false);
}
/// @notice The function to add ETH liquidity into pair
function addLiquidityETH(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256 _deadline
) external payable override returns (uint256 idAmount, uint128 lpTokenId) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _amount;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_amount = _getAmountsToAdd(_pair, _ids);
if (_tokenY != address(weth)) revert Router__WrongPair();
//if (msg.value < _amount) revert Router__WrongAmount();
_wethDepositAndTransfer(_pair, msg.value);
(idAmount, lpTokenId) = IMidasPair721(_pair).mintFT(_ids, msg.sender, false);
}
/// @notice The function to remove liquidity from pair
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _lpTokenId The ID of LP token
/// @param _deadline The deadline of the tx
/// @return ftAmount The amount of ERC20 the lp can get
function removeLiquidity(
address _tokenX,
address _tokenY,
uint128 _lpTokenId,
uint256 _deadline
) external override returns (uint128 ftAmount) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
address _lpToken;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_lpToken = factory.getLPTokenERC721(_tokenX, _tokenY);
IERC721(_lpToken).safeTransferFrom(msg.sender, _pair, _lpTokenId);
(, ftAmount) = IMidasPair721(_pair).burn(
_lpTokenId,
msg.sender,
msg.sender
);
}
/// @notice The function to remove liquidity(ETH) from pair
function removeLiquidityETH(
address _tokenX,
address _tokenY,
uint128 _lpTokenId,
uint256 _deadline
) external override returns (uint128 ftAmount) {
if (_deadline < block.timestamp) revert Router__Expired();
if (_tokenY != address(weth)) revert Router__WrongPair();
address _pair;
address _lpToken;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_lpToken = factory.getLPTokenERC721(_tokenX, _tokenY);
IERC721(_lpToken).safeTransferFrom(msg.sender, _pair, _lpTokenId);
(, ftAmount) = IMidasPair721(_pair).burn(
_lpTokenId,
msg.sender,
address(this)
);
weth.withdraw(ftAmount);
_safeTransferETH(msg.sender, ftAmount);
}
/// @notice The function to sell ERC721 into the pair
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _tokenIds The array of NFT tokenIds
/// @param _deadline The deadline of the tx
/// @return _ftAmount The amount of ERC20 the lp can get
function sellItems(
address _tokenX,
address _tokenY,
uint256[] calldata _tokenIds,
uint128 _minOutput,
uint256 _deadline
) external override returns (uint128 _ftAmount) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _length;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_length = _tokenIds.length;
for (uint256 i; i < _length; ) {
IERC721(_tokenX).safeTransferFrom(msg.sender, _pair, _tokenIds[i]);
_ftAmount += IMidasPair721(_pair).sellNFT(_tokenIds[i], msg.sender);
unchecked {
++i;
}
}
if(_ftAmount < _minOutput) revert Router__SlippageTooHigh();
}
/// @notice The function to sell ERC721 and get ETH
function sellItemsToETH(
address _tokenX,
address _tokenY,
uint256[] calldata _tokenIds,
uint128 _minOutput,
uint256 _deadline
) external payable override returns (uint128 _ftAmount) {
if (_deadline < block.timestamp) revert Router__Expired();
if (_tokenY != address(weth)) revert Router__WrongPair();
address _pair;
uint256 _length;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_length = _tokenIds.length;
for (uint256 i; i < _length; ) {
IERC721(_tokenX).safeTransferFrom(msg.sender, _pair, _tokenIds[i]);
_ftAmount += IMidasPair721(_pair).sellNFT(
_tokenIds[i],
address(this)
);
unchecked {
++i;
}
}
weth.withdraw(_ftAmount);
_safeTransferETH(msg.sender, _ftAmount);
if(_ftAmount < _minOutput) revert Router__SlippageTooHigh();
}
/// @notice The function to buy ERC721 from the pair
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _tokenIds The array of NFT tokenIds
/// @param _deadline The deadline of the tx
/// @return _ftAmount The amount of ERC20 the lp need to swap into the pair
function buyItems(
address _tokenX,
address _tokenY,
uint256[] calldata _tokenIds,
uint128 _maxInput,
uint256 _deadline
) external override returns (uint128 _ftAmount) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _length;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_ftAmount = _getMinAmountIn(_pair, _tokenIds);
_length = _tokenIds.length;
IERC20(_tokenY).safeTransferFrom(msg.sender, _pair, _ftAmount);
for (uint256 i; i < _length; ) {
IMidasPair721(_pair).buyNFT(_tokenIds[i], msg.sender);
unchecked {
++i;
}
}
if(_ftAmount > _maxInput) revert Router__SlippageTooHigh();
}
/// @notice The function to buy ERC721 with ETH from the pair
function buyItemsWithETH(
address _tokenX,
address _tokenY,
uint256[] calldata _tokenIds,
uint128 _maxInput,
uint256 _deadline
) external payable override returns (uint128 _ftAmount) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _length;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_ftAmount = _getMinAmountIn(_pair, _tokenIds);
_length = _tokenIds.length;
if (_tokenY != address(weth)) revert Router__WrongPair();
if (msg.value < _ftAmount) revert Router__WrongAmount();
_wethDepositAndTransfer(_pair, msg.value);
for (uint256 i; i < _length; ) {
IMidasPair721(_pair).buyNFT(_tokenIds[i], msg.sender);
unchecked {
++i;
}
}
if(_ftAmount > _maxInput) revert Router__SlippageTooHigh();
}
/// @notice The function to open limit sell order
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _ids The array of bin Ids where to add liquidity
/// @param _tokenIds The array of NFT tokenIds
/// @param _deadline The deadline of the tx
/// @return idAmount The amount of ids
/// @return lpTokenId The ID of the LP token
function openLimitSellOrder(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256[] calldata _tokenIds,
uint256 _deadline
) external override returns (uint256 idAmount, uint128 lpTokenId) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _length;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_length = _tokenIds.length;
for (uint256 i; i < _length; ) {
IERC721(_tokenX).safeTransferFrom(msg.sender, _pair, _tokenIds[i]);
unchecked {
++i;
}
}
(idAmount, lpTokenId) = IMidasPair721(_pair).mintNFT(
_ids,
_tokenIds,
msg.sender,
true
);
}
/// @notice The function to open limit buy order
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _ids The array of bin Ids where to add liquidity
/// @param _deadline The deadline of the tx
/// @return idAmount The amount of ids
/// @return lpTokenId The ID of the LP token
function openLimitBuyOrder(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256 _deadline
) external override returns (uint256 idAmount, uint128 lpTokenId) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _amount;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_amount = _getAmountsToAdd(_pair, _ids);
IERC20(_tokenY).safeTransferFrom(msg.sender, _pair, _amount);
(idAmount, lpTokenId) = IMidasPair721(_pair).mintFT(_ids, msg.sender, true);
}
/// @notice The function to open multiple limit sell orders
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _ids[] The array of bin ids where to add liquidity
/// @param _tokenIds[] The array of NFT tokenIds
/// @param _deadline The deadline of the tx
/// @return lpTokenIds The ids of the LP tokens
function openMultiLimitSellOrders(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256[] calldata _tokenIds,
uint256 _deadline
) external override returns (uint128[] memory lpTokenIds) {
uint256 _length;
address _pair;
uint24[] memory _id;
uint256[] memory _tokenId;
if (_deadline < block.timestamp) revert Router__Expired();
_length = _tokenIds.length;
if (_ids.length != _length) revert Router__WrongAmount();
_pair = factory.getPairERC721(_tokenX, _tokenY);
lpTokenIds = new uint128[](_ids.length);
_id = new uint24[](1);
_tokenId = new uint256[](1);
for (uint256 i; i < _length; ) {
IERC721(_tokenX).safeTransferFrom(msg.sender, _pair, _tokenIds[i]);
_id[0] = _ids[i];
_tokenId[0] = _tokenIds[i];
(, uint128 lpTokenId) = IMidasPair721(_pair).mintNFT(
_id,
_tokenId,
msg.sender,
true
);
lpTokenIds[i] = lpTokenId;
unchecked {
++i;
}
}
}
/// @notice The function to open multi limit buy order
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _ids The array of bin Ids where to add liquidity
/// @param _deadline The deadline of the tx
/// @return lpTokenIds The ID of the LP token
function openMultiLimitBuyOrder(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256 _deadline
) external override returns (uint128[] memory lpTokenIds) {
if (_deadline < block.timestamp) revert Router__Expired();
address _pair;
uint256 _amount;
uint256 _length;
uint24[] memory _id;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_amount = _getAmountsToAdd(_pair, _ids);
_length = _ids.length;
_id = new uint24[](1);
IERC20(_tokenY).safeTransferFrom(msg.sender, _pair, _amount);
lpTokenIds = new uint128[](_ids.length);
for (uint256 i; i < _length; ) {
_id[0] = _ids[i];
(, uint128 lpTokenId) = IMidasPair721(_pair).mintFT(
_id,
msg.sender,
true
);
lpTokenIds[i] = lpTokenId;
unchecked {
++i;
}
}
}
/// @notice The function to open multi limit buy order with ETH
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of WETH assets
/// @param _ids The array of bin Ids where to add liquidity
/// @param _deadline The deadline of the tx
/// @return lpTokenIds The ID of the LP token
function openMultiLimitBuyOrdersETH(
address _tokenX,
address _tokenY,
uint24[] calldata _ids,
uint256 _deadline
) external payable override returns (uint128[] memory lpTokenIds) {
if (_deadline < block.timestamp) revert Router__Expired();
if (_tokenY != address(weth)) revert Router__WrongPair();
address _pair;
uint256 _amount;
uint256 _length;
uint24[] memory _id;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_amount = _getAmountsToAdd(_pair, _ids);
_wethDepositAndTransfer(_pair, _amount);
_length = _ids.length;
_id = new uint24[](1);
lpTokenIds = new uint128[](_ids.length);
for (uint256 i; i < _length; ) {
_id[0] = _ids[i];
(, uint128 lpTokenId) = IMidasPair721(_pair).mintFT(
_id,
msg.sender,
true
);
lpTokenIds[i] = lpTokenId;
unchecked {
++i;
}
}
}
/// @notice The function to open limit order
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _lpTokenId The ID of LP token
/// @return _feeClaimed The amount of fee claimed
function claimFee(
address _tokenX,
address _tokenY,
uint128 _lpTokenId
) external override returns (uint128 _feeClaimed) {
address _pair;
_pair = factory.getPairERC721(_tokenX, _tokenY);
_feeClaimed = IMidasPair721(_pair).collectLPFees(
_lpTokenId,
msg.sender
);
}
/// @notice The function to claim all fee
/// @param _tokenX The address of ERC721 assets
/// @param _tokenY The address of ERC20 assets
/// @param _lpTokenIds The array of LP token ID
/// @return _feeClaimed The amount of fee claimed
function claimAll(
address _tokenX,
address _tokenY,
uint128[] calldata _lpTokenIds
) external override returns (uint128 _feeClaimed) {
address _pair;
_pair = factory.getPairERC721(_tokenX, _tokenY);
for (uint256 i; i < _lpTokenIds.length; ) {
_feeClaimed += IMidasPair721(_pair).collectLPFees(
_lpTokenIds[i],
msg.sender
);
unchecked {
++i;
}
}
}
function getMinAmountIn(
address _pair,
uint256[] calldata _tokenIds
) external view override returns (uint128) {
return _getMinAmountIn(_pair, _tokenIds);
}
function getAmountsToAdd(
address _pair,
uint24[] calldata _ids
) external pure override returns (uint128) {
return _getAmountsToAdd(_pair, _ids);
}
/// @notice The function to get the amount of ERC20 need to transfer
/// @param _pair The address of pair
/// @param _ids The array of bin Ids where to add liquidity
/// @return ftAmount The amount of ERC20 need to transfer
function _getAmountsToAdd(
address _pair,
uint24[] calldata _ids
) internal pure returns (uint128 ftAmount) {
for (uint256 i; i < _ids.length; ) {
ftAmount += IMidasPair721(_pair).getPriceFromBin(_ids[i]);
unchecked {
++i;
}
}
}
// /// @notice The function to quote a set of NFTs
// /// @param _pair The address of pair
// /// @param _tokenIds The array of tokenIds to be quoted
// /// @return totalAmount The amount of ERC20 need to transfer
function _getMinAmountIn(
address _pair,
uint256[] calldata _tokenIds
) internal view returns (uint128 totalAmount) {
uint256 _length;
uint256 uniqueCount;
uint256 _rate1;
uint256 _rate2;
uint128 item;
uint128[] memory uniqueElements;
uint256[] memory uniqueCounts;
_length = _tokenIds.length;
uniqueElements = new uint128[](_length);
uniqueCounts = new uint256[](_length);
for (uint256 i; i < _length; ) {
bool isRepeated;
item = IMidasPair721(_pair).getLPFromNFT(_tokenIds[i]);
for (uint256 j; j < uniqueCount; ) {
if (item == uniqueElements[j]) {
isRepeated = true;
unchecked {
++uniqueCounts[j];
}
break;
}
unchecked {
++j;
}
}
if (!isRepeated) {
uniqueElements[uniqueCount] = item;
uniqueCounts[uniqueCount] = 1;
unchecked {
++uniqueCount;
}
}
unchecked {
++i;
}
}
for (uint256 i; i < uniqueCount; ) {
totalAmount += IMidasPair721(_pair).getBinParamFromLP(
uniqueElements[i],
uniqueCounts[i]
);
unchecked {
++i;
}
}
(_rate1, , _rate2) = IMidasPair721(_pair).feeParameters();
unchecked {
totalAmount = uint128(
(totalAmount * (1e18 + _rate1 + _rate2)) / 1e18 + 1
);
}
}
function _safeTransferETH(address _to, uint256 _amount) private {
(bool success, ) = _to.call{value: _amount}("");
require(success == true);
}
function _wethDepositAndTransfer(address _to, uint256 _amount) private {
weth.deposit{value: _amount}();
weth.transfer(_to, _amount);
}
}