This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
join-5.sol
97 lines (83 loc) · 3.16 KB
/
join-5.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
// SPDX-License-Identifier: AGPL-3.0-or-later
/// join-5.sol -- Non-standard token adapters
// Copyright (C) 2018 Rain <rainbreak@riseup.net>
// Copyright (C) 2018-2020 Maker Ecosystem Growth Holdings, INC.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
pragma solidity >=0.5.12;
interface VatLike {
function slip(bytes32, address, int256) external;
}
interface GemLike {
function decimals() external view returns (uint8);
function transfer(address, uint256) external returns (bool);
function transferFrom(address, address, uint256) external returns (bool);
}
// For a token that has a lower precision than 18 and it has decimals (like USDC)
contract GemJoin5 {
// --- Auth ---
mapping (address => uint256) public wards;
function rely(address usr) external auth {
wards[usr] = 1;
emit Rely(usr);
}
function deny(address usr) external auth {
wards[usr] = 0;
emit Deny(usr);
}
modifier auth { require(wards[msg.sender] == 1); _; }
VatLike public vat;
bytes32 public ilk;
GemLike public gem;
uint256 public dec;
uint256 public live; // Access Flag
// Events
event Rely(address indexed usr);
event Deny(address indexed usr);
event Join(address indexed usr, uint256 wad);
event Exit(address indexed usr, uint256 wad);
event Cage();
constructor(address vat_, bytes32 ilk_, address gem_) public {
gem = GemLike(gem_);
dec = gem.decimals();
require(dec < 18, "GemJoin5/decimals-18-or-higher");
wards[msg.sender] = 1;
live = 1;
vat = VatLike(vat_);
ilk = ilk_;
emit Rely(msg.sender);
}
function cage() external auth {
live = 0;
emit Cage();
}
function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
require(y == 0 || (z = x * y) / y == x, "GemJoin5/overflow");
}
function join(address usr, uint256 amt) external {
require(live == 1, "GemJoin5/not-live");
uint256 wad = mul(amt, 10 ** (18 - dec));
require(int256(wad) >= 0, "GemJoin5/overflow");
vat.slip(ilk, usr, int256(wad));
require(gem.transferFrom(msg.sender, address(this), amt), "GemJoin5/failed-transfer");
emit Join(usr, amt);
}
function exit(address usr, uint256 amt) external {
uint256 wad = mul(amt, 10 ** (18 - dec));
require(int256(wad) >= 0, "GemJoin5/overflow");
vat.slip(ilk, msg.sender, -int256(wad));
require(gem.transfer(usr, amt), "GemJoin5/failed-transfer");
emit Exit(usr, amt);
}
}