2021-02-02 11:26:44 +01:00
|
|
|
pragma solidity > 0.6.11;
|
|
|
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
contract RedistributedDemurrageToken {
|
|
|
|
|
|
|
|
address public owner;
|
|
|
|
uint256 public decimals;
|
|
|
|
string public name;
|
|
|
|
string public symbol;
|
|
|
|
uint256 public totalSupply;
|
|
|
|
|
|
|
|
uint256 public periodStart;
|
|
|
|
uint256 public periodDuration;
|
2021-02-02 16:10:21 +01:00
|
|
|
uint256 public taxLevel; // PPM
|
|
|
|
uint256 public demurrageModifier; // PPM
|
2021-02-02 11:26:44 +01:00
|
|
|
|
|
|
|
bytes32[] redistributions; // uint40(participants) uint160(value) uint56(period)
|
2021-02-02 16:10:21 +01:00
|
|
|
mapping (address => bytes32) account;
|
|
|
|
mapping (address => bool) minter;
|
2021-02-02 11:26:44 +01:00
|
|
|
|
|
|
|
event Transfer(address indexed _from, address indexed _to, uint256 _value);
|
|
|
|
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
|
2021-02-02 16:10:21 +01:00
|
|
|
event Mint(address indexed _minter, address indexed _beneficiary, uint256 _amount);
|
2021-02-02 11:26:44 +01:00
|
|
|
|
|
|
|
constructor(string memory _name, string memory _symbol, uint32 _taxLevel, uint256 _period) {
|
|
|
|
owner = msg.sender;
|
2021-02-02 16:10:21 +01:00
|
|
|
minter[owner] = true;
|
2021-02-02 11:26:44 +01:00
|
|
|
periodStart = block.number;
|
|
|
|
periodDuration = _period;
|
|
|
|
taxLevel = _taxLevel;
|
|
|
|
name = _name;
|
|
|
|
symbol = _symbol;
|
|
|
|
decimals = 6;
|
2021-02-02 16:10:21 +01:00
|
|
|
demurrageModifier = 1000000;
|
2021-02-02 11:26:44 +01:00
|
|
|
bytes32 initialRedistribution = toRedistribution(0, 1, 0);
|
|
|
|
redistributions.push(initialRedistribution);
|
|
|
|
}
|
|
|
|
|
2021-02-02 16:10:21 +01:00
|
|
|
function addMinter(address _minter) public returns (bool) {
|
|
|
|
require(msg.sender == owner);
|
|
|
|
minter[_minter] = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function balanceOf(address _account) public view returns (uint256) {
|
|
|
|
uint256 baseBalance = getBaseBalance(_account);
|
|
|
|
uint256 inverseModifier = 1000000 - demurrageModifier;
|
|
|
|
uint256 balanceModifier = (inverseModifier * baseBalance) / 1000000;
|
|
|
|
return baseBalance - balanceModifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getBaseBalance(address _account) private view returns (uint256) {
|
|
|
|
return uint256(account[_account]) & 0x00ffffffffffffffffffffffffffffffffffffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
function increaseBalance(address _account, uint256 _delta) private returns (bool) {
|
|
|
|
uint256 oldBalance = getBaseBalance(_account);
|
|
|
|
account[_account] &= bytes20(0x00);
|
|
|
|
account[_account] |= bytes32((oldBalance + _delta) & 0x00ffffffffffffffffffffffffffffffffffffffff);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function decreaseBalance(address _account, uint256 _delta) private returns (bool) {
|
|
|
|
uint256 oldBalance = getBaseBalance(_account);
|
|
|
|
account[_account] &= bytes20(0x00);
|
|
|
|
account[_account] |= bytes32((oldBalance - _delta) & 0x00ffffffffffffffffffffffffffffffffffffffff);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function mintTo(address _beneficiary, uint256 _amount) external returns (bool) {
|
|
|
|
require(minter[msg.sender]);
|
|
|
|
|
|
|
|
increaseBalance(_beneficiary, _amount);
|
|
|
|
emit Mint(msg.sender, _beneficiary, _amount);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-02-02 11:26:44 +01:00
|
|
|
function toRedistribution(uint256 _participants, uint256 _value, uint256 _period) private pure returns(bytes32) {
|
|
|
|
bytes32 redistribution;
|
|
|
|
redistribution |= bytes32((_participants & 0xffffffffff) << 215);
|
|
|
|
redistribution |= bytes32((_value & 0xffffffffffffffffffffffff) << 55);
|
|
|
|
redistribution |= bytes32((_period & 0xffffffffffffff) << 55);
|
|
|
|
return redistribution;
|
|
|
|
}
|
|
|
|
|
|
|
|
function toRedistributionPeriod(bytes32 redistribution) public pure returns (uint256) {
|
|
|
|
return uint256(redistribution & bytes7(0xffffffffffffff));
|
|
|
|
}
|
|
|
|
|
|
|
|
function redistributionCount() public view returns (uint256) {
|
|
|
|
return redistributions.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
function actualPeriod() public view returns (uint256) {
|
|
|
|
return (block.number - periodStart) / periodDuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
function checkPeriod() private view returns (bytes32) {
|
|
|
|
bytes32 lastRedistribution = redistributions[redistributions.length-1];
|
|
|
|
uint256 currentPeriod = this.actualPeriod();
|
|
|
|
if (currentPeriod < toRedistributionPeriod(lastRedistribution)) {
|
|
|
|
return bytes32(0x00);
|
|
|
|
}
|
|
|
|
return lastRedistribution;
|
|
|
|
}
|
|
|
|
|
|
|
|
function applyTax() public returns (uint256) {
|
|
|
|
bytes32 pendingRedistribution;
|
|
|
|
bytes32 nextRedistribution;
|
2021-02-02 16:10:21 +01:00
|
|
|
uint256 currentPeriod;
|
2021-02-02 11:26:44 +01:00
|
|
|
|
|
|
|
pendingRedistribution = checkPeriod();
|
|
|
|
if (pendingRedistribution == bytes32(0x00)) {
|
|
|
|
return demurrageModifier;
|
|
|
|
}
|
2021-02-02 16:10:21 +01:00
|
|
|
demurrageModifier -= (demurrageModifier * taxLevel) / 1000000;
|
|
|
|
// this should increment for one single period at at time
|
|
|
|
currentPeriod = toRedistributionPeriod(pendingRedistribution);
|
|
|
|
nextRedistribution = toRedistribution(0, currentPeriod + 1, 0);
|
2021-02-02 11:26:44 +01:00
|
|
|
redistributions.push(nextRedistribution);
|
|
|
|
return demurrageModifier;
|
|
|
|
}
|
|
|
|
|
2021-02-02 16:46:27 +01:00
|
|
|
function accountPeriod(address _account) public returns (uint256) {
|
|
|
|
return (uint256(account[_account]) & 0xffffffffffffffffffffffff0000000000000000000000000000000000000000) >> 160;
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveAccountPeriod(address _account, uint256 _period) private returns (bool) {
|
|
|
|
account[_account] &= 0x000000000000000000000000ffffffffffffffffffffffffffffffffffffffff;
|
|
|
|
account[_account] |= bytes32(_period << 160);
|
|
|
|
}
|
|
|
|
|
|
|
|
function transfer(address _to, uint256 _value) public returns (bool) {
|
|
|
|
// TODO: Prefer to truncate the result, instead it seems to round to nearest :/
|
|
|
|
uint256 baseValue;
|
|
|
|
bool result;
|
|
|
|
|
|
|
|
baseValue = (_value * 1000000) / demurrageModifier;
|
|
|
|
result = transferBase(msg.sender, _to, baseValue);
|
2021-02-02 16:10:21 +01:00
|
|
|
emit Transfer(msg.sender, _to, _value);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-02-02 16:46:27 +01:00
|
|
|
function transferBase(address _from, address _to, uint256 _value) private returns (bool) {
|
|
|
|
uint256 period;
|
|
|
|
|
|
|
|
if (!decreaseBalance(msg.sender, _value)) {
|
|
|
|
revert('ERR_TX_DECREASEBALANCE');
|
|
|
|
}
|
|
|
|
if (!increaseBalance(_to, _value)) {
|
|
|
|
revert('ERR_TX_INCREASEBALANCE');
|
|
|
|
}
|
|
|
|
period = actualPeriod();
|
|
|
|
if (accountPeriod(_from) != period) {
|
|
|
|
saveAccountPeriod(_from, period);
|
|
|
|
}
|
2021-02-02 16:10:21 +01:00
|
|
|
return true;
|
2021-02-02 11:26:44 +01:00
|
|
|
}
|
|
|
|
}
|