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 23
/
join-auth.sol
90 lines (77 loc) · 2.96 KB
/
join-auth.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
// SPDX-License-Identifier: AGPL-3.0-or-later
/// join-auth.sol -- Non-standard token adapters
// Copyright (C) 2018 Rain <[email protected]>
// 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 (uint256);
function transfer(address, uint256) external returns (bool);
function transferFrom(address, address, uint256) external returns (bool);
}
// For a token that needs restriction on the sources which are able to execute the join function (like SAI through Migration contract)
contract AuthGemJoin {
VatLike public vat;
bytes32 public ilk;
GemLike public gem;
uint256 public dec;
uint256 public live; // Access Flag
// --- 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, "AuthGemJoin/non-authed"); _; }
// 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 {
wards[msg.sender] = 1;
live = 1;
vat = VatLike(vat_);
ilk = ilk_;
gem = GemLike(gem_);
dec = gem.decimals();
emit Rely(msg.sender);
}
function cage() external auth {
live = 0;
emit Cage();
}
function join(address usr, uint256 wad) external auth {
require(live == 1, "AuthGemJoin/not-live");
require(int256(wad) >= 0, "AuthGemJoin/overflow");
vat.slip(ilk, usr, int256(wad));
require(gem.transferFrom(msg.sender, address(this), wad), "AuthGemJoin/failed-transfer");
emit Join(usr, wad);
}
function exit(address usr, uint256 wad) external {
require(wad <= 2 ** 255, "AuthGemJoin/overflow");
vat.slip(ilk, msg.sender, -int256(wad));
require(gem.transfer(usr, wad), "AuthGemJoin/failed-transfer");
emit Exit(usr, wad);
}
}