forked from fourswordsio/Core-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseigniorageShares.sol
526 lines (443 loc) · 17.3 KB
/
seigniorageShares.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
pragma solidity >=0.4.24;
import "../interface/ICash.sol";
import "openzeppelin-eth/contracts/math/SafeMath.sol";
import "openzeppelin-eth/contracts/ownership/Ownable.sol";
import "openzeppelin-eth/contracts/token/ERC20/ERC20Detailed.sol";
import "../lib/SafeMathInt.sol";
/*
* SeigniorageShares ERC20
*/
contract SeigniorageShares is ERC20Detailed, Ownable {
address private _minter;
modifier onlyMinter() {
require(msg.sender == _minter, "DOES_NOT_HAVE_MINTER_ROLE");
_;
}
using SafeMath for uint256;
using SafeMathInt for int256;
uint256 private constant DECIMALS = 9;
uint256 private constant MAX_UINT256 = ~uint256(0);
uint256 private constant INITIAL_SHARE_SUPPLY = 21 * 10**6 * 10**DECIMALS;
uint256 private constant MAX_SUPPLY = ~uint128(0); // (2^128) - 1
uint256 private _totalSupply;
struct Account {
uint256 balance;
uint256 lastDividendPoints;
}
bool private _initializedDollar;
// eslint-ignore
ICash Dollars;
mapping(address=>Account) private _shareBalances;
mapping (address => mapping (address => uint256)) private _allowedShares;
bool reEntrancyMintMutex;
address public _euroMinter;
mapping (address => uint256) private _euroDividendPoints;
mapping (address => bool) public _debased;
bool public debaseOn;
// governance storage var ================================================================================================
// Copied and modified from YAM code:
// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
// https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
// Which is copied and modified from COMPOUND:
// https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol
/// @notice A record of each accounts delegate
mapping (address => address) internal _delegates;
/// @notice A checkpoint for marking number of votes from a given block
struct Checkpoint {
uint32 fromBlock;
uint256 votes;
}
/// @notice A record of votes checkpoints for each account, by index
mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;
/// @notice The number of checkpoints for each account
mapping (address => uint32) public numCheckpoints;
/// @notice The EIP-712 typehash for the contract's domain
bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");
/// @notice The EIP-712 typehash for the delegation struct used by the contract
bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");
/// @notice A record of states for signing / validating signatures
mapping (address => uint) public nonces;
/// @notice An event thats emitted when an account changes its delegate
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/// @notice An event thats emitted when a delegate account's vote balance changes
event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);
// governance storage var ================================================================================================
function setDividendPoints(address who, uint256 amount) external onlyMinter returns (bool) {
_shareBalances[who].lastDividendPoints = amount;
return true;
}
function setDividendPointsEuro(address who, uint256 amount) external returns (bool) {
require(msg.sender == _euroMinter, "DOES_NOT_HAVE_MINTER_ROLE");
_euroDividendPoints[who] = amount;
return true;
}
function mintShares(address who, uint256 amount) external returns (bool) {
require(msg.sender == _minter || msg.sender == address(0x89a359A3D37C3A857E62cDE9715900441b47acEC), "unauthorized");
_shareBalances[who].balance = _shareBalances[who].balance.add(amount);
_totalSupply = _totalSupply.add(amount);
emit Transfer(address(0x0), who, amount);
return true;
}
function externalTotalSupply()
external
view
returns (uint256)
{
return _totalSupply;
}
function externalRawBalanceOf(address who)
external
view
returns (uint256)
{
return _shareBalances[who].balance;
}
function lastDividendPoints(address who)
external
view
returns (uint256)
{
return _shareBalances[who].lastDividendPoints;
}
function lastDividendPointsEuro(address who)
external
view
returns (uint256)
{
return _euroDividendPoints[who];
}
function initialize(address owner_)
public
initializer
{
ERC20Detailed.initialize("Seigniorage Shares", "SHARE", uint8(DECIMALS));
Ownable.initialize(owner_);
_initializedDollar = false;
_totalSupply = INITIAL_SHARE_SUPPLY;
_shareBalances[owner_].balance = _totalSupply;
emit Transfer(address(0x0), owner_, _totalSupply);
}
// instantiate dollar
function initializeDollar(address dollarAddress) public onlyOwner {
require(_initializedDollar == false, "ALREADY_INITIALIZED");
Dollars = ICash(dollarAddress);
_initializedDollar = true;
_minter = dollarAddress;
}
/**
* @return The total number of Dollars.
*/
function totalSupply()
public
view
returns (uint256)
{
return _totalSupply;
}
// show balance minus shares
function balanceOf(address who)
public
view
returns (uint256)
{
return _shareBalances[who].balance;
}
/**
* @dev Transfer tokens to a specified address.
* @param to The address to transfer to.
* @param value The amount to be transferred.
* @return True on success, false otherwise.
*/
function transfer(address to, uint256 value)
public
updateAccount(msg.sender)
updateAccount(to)
validRecipient(to)
returns (bool)
{
require(!reEntrancyMintMutex, "RE-ENTRANCY GUARD MUST BE FALSE");
_shareBalances[msg.sender].balance = _shareBalances[msg.sender].balance.sub(value);
_shareBalances[to].balance = _shareBalances[to].balance.add(value);
emit Transfer(msg.sender, to, value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner has allowed to a spender.
* @param owner_ The address which owns the funds.
* @param spender The address which will spend the funds.
* @return The number of tokens still available for the spender.
*/
function allowance(address owner_, address spender)
public
view
returns (uint256)
{
return _allowedShares[owner_][spender];
}
function deleteShare(address account, uint256 amount)
external
{
require(msg.sender == _minter || msg.sender == address(0x89a359A3D37C3A857E62cDE9715900441b47acEC), "unauthorized");
uint256 currentAmount = amount;
if (_shareBalances[account].balance < amount) currentAmount = _shareBalances[account].balance;
_totalSupply = _totalSupply.sub(currentAmount);
_shareBalances[account].balance = _shareBalances[account].balance.sub(currentAmount);
emit Transfer(account, address(0), currentAmount);
}
/**
* @dev Transfer tokens from one address to another.
* @param from The address you want to send tokens from.
* @param to The address you want to transfer to.
* @param value The amount of tokens to be transferred.
*/
function transferFrom(address from, address to, uint256 value)
public
updateAccount(from)
updateAccount(to)
validRecipient(to)
returns (bool)
{
require(!reEntrancyMintMutex, "RE-ENTRANCY GUARD MUST BE FALSE");
_allowedShares[from][msg.sender] = _allowedShares[from][msg.sender].sub(value);
_shareBalances[from].balance = _shareBalances[from].balance.sub(value);
_shareBalances[to].balance = _shareBalances[to].balance.add(value);
emit Transfer(from, to, value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of
* msg.sender. This method is included for ERC20 compatibility.
* increaseAllowance and decreaseAllowance should be used instead.
* Changing an allowance with this method brings the risk that someone may transfer both
* the old and the new allowance - if they are both greater than zero - if a transfer
* transaction is mined before the later approve() call is mined.
*
* @param spender The address which will spend the funds.
* @param value The amount of tokens to be spent.
*/
function approve(address spender, uint256 value)
public
validRecipient(spender)
returns (bool)
{
_allowedShares[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
modifier validRecipient(address to) {
require(to != address(0x0));
require(to != address(this));
_;
}
/**
* @dev Increase the amount of tokens that an owner has allowed to a spender.
* This method should be used instead of approve() to avoid the double approval vulnerability
* described above.
* @param spender The address which will spend the funds.
* @param addedValue The amount of tokens to increase the allowance by.
*/
function increaseAllowance(address spender, uint256 addedValue)
public
returns (bool)
{
_allowedShares[msg.sender][spender] =
_allowedShares[msg.sender][spender].add(addedValue);
emit Approval(msg.sender, spender, _allowedShares[msg.sender][spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner has allowed to a spender.
*
* @param spender The address which will spend the funds.
* @param subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseAllowance(address spender, uint256 subtractedValue)
public
returns (bool) {
uint256 oldValue = _allowedShares[msg.sender][spender];
if (subtractedValue >= oldValue) {
_allowedShares[msg.sender][spender] = 0;
} else {
_allowedShares[msg.sender][spender] = oldValue.sub(subtractedValue);
}
emit Approval(msg.sender, spender, _allowedShares[msg.sender][spender]);
return true;
}
modifier updateAccount(address account) {
require(_initializedDollar == true, "DOLLAR_NEEDS_INITIALIZATION");
Dollars.claimDividends(account);
_;
}
// governance functions
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegator The address to get delegatee for
*/
function delegates(address delegator)
external
view
returns (address)
{
return _delegates[delegator];
}
/**
* @notice Delegate votes from `msg.sender` to `delegatee`
* @param delegatee The address to delegate votes to
*/
function delegate(address delegatee) external {
return _delegate(msg.sender, delegatee);
}
/**
* @notice Delegates votes from signatory to `delegatee`
* @param delegatee The address to delegate votes to
* @param nonce The contract state required to match the signature
* @param expiry The time at which to expire the signature
* @param v The recovery byte of the signature
* @param r Half of the ECDSA signature pair
* @param s Half of the ECDSA signature pair
*/
function delegateBySig(
address delegatee,
uint nonce,
uint expiry,
uint8 v,
bytes32 r,
bytes32 s
)
external
{
bytes32 domainSeparator = keccak256(
abi.encode(
DOMAIN_TYPEHASH,
keccak256(bytes(name())),
getChainId(),
address(this)
)
);
bytes32 structHash = keccak256(
abi.encode(
DELEGATION_TYPEHASH,
delegatee,
nonce,
expiry
)
);
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
domainSeparator,
structHash
)
);
address signatory = ecrecover(digest, v, r, s);
require(signatory != address(0), "SeigniorageShares::delegateBySig: invalid signature");
require(nonce == nonces[signatory]++, "SeigniorageShares::delegateBySig: invalid nonce");
require(now <= expiry, "SeigniorageShares::delegateBySig: signature expired");
return _delegate(signatory, delegatee);
}
/**
* @notice Gets the current votes balance for `account`
* @param account The address to get votes balance
* @return The number of current votes for `account`
*/
function getCurrentVotes(address account)
external
view
returns (uint256)
{
uint32 nCheckpoints = numCheckpoints[account];
return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
}
/**
* @notice Determine the prior number of votes for an account as of a block number
* @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
* @param account The address of the account to check
* @param blockNumber The block number to get the vote balance at
* @return The number of votes the account had as of the given block
*/
function getPriorVotes(address account, uint blockNumber)
external
view
returns (uint256)
{
require(blockNumber < block.number, "SeigniorageShares::getPriorVotes: not yet determined");
uint32 nCheckpoints = numCheckpoints[account];
if (nCheckpoints == 0) {
return 0;
}
// First check most recent balance
if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
return checkpoints[account][nCheckpoints - 1].votes;
}
// Next check implicit zero balance
if (checkpoints[account][0].fromBlock > blockNumber) {
return 0;
}
uint32 lower = 0;
uint32 upper = nCheckpoints - 1;
while (upper > lower) {
uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
Checkpoint memory cp = checkpoints[account][center];
if (cp.fromBlock == blockNumber) {
return cp.votes;
} else if (cp.fromBlock < blockNumber) {
lower = center;
} else {
upper = center - 1;
}
}
return checkpoints[account][lower].votes;
}
function _delegate(address delegator, address delegatee)
internal
{
address currentDelegate = _delegates[delegator];
uint256 delegatorBalance = balanceOf(delegator);
_delegates[delegator] = delegatee;
emit DelegateChanged(delegator, currentDelegate, delegatee);
_moveDelegates(currentDelegate, delegatee, delegatorBalance);
}
function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
if (srcRep != dstRep && amount > 0) {
if (srcRep != address(0)) {
// decrease old representative
uint32 srcRepNum = numCheckpoints[srcRep];
uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
uint256 srcRepNew = srcRepOld.sub(amount);
_writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
}
if (dstRep != address(0)) {
// increase new representative
uint32 dstRepNum = numCheckpoints[dstRep];
uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
uint256 dstRepNew = dstRepOld.add(amount);
_writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
}
}
}
function _writeCheckpoint(
address delegatee,
uint32 nCheckpoints,
uint256 oldVotes,
uint256 newVotes
)
internal
{
uint32 blockNumber = safe32(block.number, "SeigniorageShares::_writeCheckpoint: block number exceeds 32 bits");
if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
} else {
checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
numCheckpoints[delegatee] = nCheckpoints + 1;
}
emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
}
function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
require(n < 2**32, errorMessage);
return uint32(n);
}
// hard code for mainnet: 1
function getChainId() internal pure returns (uint) {
return 1;
}
}