Created
March 19, 2021 06:37
-
-
Save shalzz/4b8fe29afad214471dbe0a1def0a61af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
*Submitted for verification at Etherscan.io on 2021-03-10 | |
* This is the verified contract source of the UBI token deployed at address: 0x45574741cE337505359Cca0D80Fa810F49158793 | |
*/ | |
// SPDX-License-Identifier: MIT | |
pragma solidity 0.7.3; | |
/** | |
* This code contains elements of ERC20BurnableUpgradeable.sol https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/master/contracts/token/ERC20/ERC20BurnableUpgradeable.sol | |
* Those have been inlined for the purpose of gas optimization. | |
*/ | |
/** | |
* @dev Collection of functions related to the address type | |
*/ | |
library AddressUpgradeable { | |
/** | |
* @dev Returns true if `account` is a contract. | |
* | |
* [IMPORTANT] | |
* ==== | |
* It is unsafe to assume that an address for which this function returns | |
* false is an externally-owned account (EOA) and not a contract. | |
* | |
* Among others, `isContract` will return false for the following | |
* types of addresses: | |
* | |
* - an externally-owned account | |
* - a contract in construction | |
* - an address where a contract will be created | |
* - an address where a contract lived, but was destroyed | |
* ==== | |
*/ | |
function isContract(address account) internal view returns (bool) { | |
// This method relies on extcodesize, which returns 0 for contracts in | |
// construction, since the code is only stored at the end of the | |
// constructor execution. | |
uint256 size; | |
// solhint-disable-next-line no-inline-assembly | |
assembly { size := extcodesize(account) } | |
return size > 0; | |
} | |
/** | |
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to | |
* `recipient`, forwarding all available gas and reverting on errors. | |
* | |
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost | |
* of certain opcodes, possibly making contracts go over the 2300 gas limit | |
* imposed by `transfer`, making them unable to receive funds via | |
* `transfer`. {sendValue} removes this limitation. | |
* | |
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. | |
* | |
* IMPORTANT: because control is transferred to `recipient`, care must be | |
* taken to not create reentrancy vulnerabilities. Consider using | |
* {ReentrancyGuard} or the | |
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. | |
*/ | |
function sendValue(address payable recipient, uint256 amount) internal { | |
require(address(this).balance >= amount, "Address: insufficient balance"); | |
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value | |
(bool success, ) = recipient.call{ value: amount }(""); | |
require(success, "Address: unable to send value, recipient may have reverted"); | |
} | |
/** | |
* @dev Performs a Solidity function call using a low level `call`. A | |
* plain`call` is an unsafe replacement for a function call: use this | |
* function instead. | |
* | |
* If `target` reverts with a revert reason, it is bubbled up by this | |
* function (like regular Solidity function calls). | |
* | |
* Returns the raw returned data. To convert to the expected return value, | |
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. | |
* | |
* Requirements: | |
* | |
* - `target` must be a contract. | |
* - calling `target` with `data` must not revert. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCall(address target, bytes memory data) internal returns (bytes memory) { | |
return functionCall(target, data, "Address: low-level call failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with | |
* `errorMessage` as a fallback revert reason when `target` reverts. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { | |
return functionCallWithValue(target, data, 0, errorMessage); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
* but also transferring `value` wei to `target`. | |
* | |
* Requirements: | |
* | |
* - the calling contract must have an ETH balance of at least `value`. | |
* - the called Solidity function must be `payable`. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { | |
return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but | |
* with `errorMessage` as a fallback revert reason when `target` reverts. | |
* | |
* _Available since v3.1._ | |
*/ | |
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { | |
require(address(this).balance >= value, "Address: insufficient balance for call"); | |
require(isContract(target), "Address: call to non-contract"); | |
// solhint-disable-next-line avoid-low-level-calls | |
(bool success, bytes memory returndata) = target.call{ value: value }(data); | |
return _verifyCallResult(success, returndata, errorMessage); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], | |
* but performing a static call. | |
* | |
* _Available since v3.3._ | |
*/ | |
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { | |
return functionStaticCall(target, data, "Address: low-level static call failed"); | |
} | |
/** | |
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], | |
* but performing a static call. | |
* | |
* _Available since v3.3._ | |
*/ | |
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { | |
require(isContract(target), "Address: static call to non-contract"); | |
// solhint-disable-next-line avoid-low-level-calls | |
(bool success, bytes memory returndata) = target.staticcall(data); | |
return _verifyCallResult(success, returndata, errorMessage); | |
} | |
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { | |
if (success) { | |
return returndata; | |
} else { | |
// Look for revert reason and bubble it up if present | |
if (returndata.length > 0) { | |
// The easiest way to bubble the revert reason is using memory via assembly | |
// solhint-disable-next-line no-inline-assembly | |
assembly { | |
let returndata_size := mload(returndata) | |
revert(add(32, returndata), returndata_size) | |
} | |
} else { | |
revert(errorMessage); | |
} | |
} | |
} | |
} | |
/** | |
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed | |
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an | |
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer | |
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. | |
* | |
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as | |
* possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. | |
* | |
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure | |
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. | |
*/ | |
abstract contract Initializable { | |
/** | |
* @dev Indicates that the contract has been initialized. | |
*/ | |
bool private _initialized; | |
/** | |
* @dev Indicates that the contract is in the process of being initialized. | |
*/ | |
bool private _initializing; | |
/** | |
* @dev Modifier to protect an initializer function from being invoked twice. | |
*/ | |
modifier initializer() { | |
require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); | |
bool isTopLevelCall = !_initializing; | |
if (isTopLevelCall) { | |
_initializing = true; | |
_initialized = true; | |
} | |
_; | |
if (isTopLevelCall) { | |
_initializing = false; | |
} | |
} | |
/// @dev Returns true if and only if the function is running in the constructor | |
function _isConstructor() private view returns (bool) { | |
return !AddressUpgradeable.isContract(address(this)); | |
} | |
} | |
/** | |
* @dev Wrappers over Solidity's arithmetic operations with added overflow | |
* checks. | |
* | |
* Arithmetic operations in Solidity wrap on overflow. This can easily result | |
* in bugs, because programmers usually assume that an overflow raises an | |
* error, which is the standard behavior in high level programming languages. | |
* `SafeMath` restores this intuition by reverting the transaction when an | |
* operation overflows. | |
* | |
* Using this library instead of the unchecked operations eliminates an entire | |
* class of bugs, so it's recommended to use it always. | |
*/ | |
library SafeMath { | |
/** | |
* @dev Returns the addition of two unsigned integers, with an overflow flag. | |
* | |
* _Available since v3.4._ | |
*/ | |
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
uint256 c = a + b; | |
if (c < a) return (false, 0); | |
return (true, c); | |
} | |
/** | |
* @dev Returns the substraction of two unsigned integers, with an overflow flag. | |
* | |
* _Available since v3.4._ | |
*/ | |
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
if (b > a) return (false, 0); | |
return (true, a - b); | |
} | |
/** | |
* @dev Returns the multiplication of two unsigned integers, with an overflow flag. | |
* | |
* _Available since v3.4._ | |
*/ | |
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the | |
// benefit is lost if 'b' is also tested. | |
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 | |
if (a == 0) return (true, 0); | |
uint256 c = a * b; | |
if (c / a != b) return (false, 0); | |
return (true, c); | |
} | |
/** | |
* @dev Returns the division of two unsigned integers, with a division by zero flag. | |
* | |
* _Available since v3.4._ | |
*/ | |
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
if (b == 0) return (false, 0); | |
return (true, a / b); | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. | |
* | |
* _Available since v3.4._ | |
*/ | |
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { | |
if (b == 0) return (false, 0); | |
return (true, a % b); | |
} | |
/** | |
* @dev Returns the addition of two unsigned integers, reverting on | |
* overflow. | |
* | |
* Counterpart to Solidity's `+` operator. | |
* | |
* Requirements: | |
* | |
* - Addition cannot overflow. | |
*/ | |
function add(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 c = a + b; | |
require(c >= a, "SafeMath: addition overflow"); | |
return c; | |
} | |
/** | |
* @dev Returns the subtraction of two unsigned integers, reverting on | |
* overflow (when the result is negative). | |
* | |
* Counterpart to Solidity's `-` operator. | |
* | |
* Requirements: | |
* | |
* - Subtraction cannot overflow. | |
*/ | |
function sub(uint256 a, uint256 b) internal pure returns (uint256) { | |
require(b <= a, "SafeMath: subtraction overflow"); | |
return a - b; | |
} | |
/** | |
* @dev Returns the multiplication of two unsigned integers, reverting on | |
* overflow. | |
* | |
* Counterpart to Solidity's `*` operator. | |
* | |
* Requirements: | |
* | |
* - Multiplication cannot overflow. | |
*/ | |
function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
if (a == 0) return 0; | |
uint256 c = a * b; | |
require(c / a == b, "SafeMath: multiplication overflow"); | |
return c; | |
} | |
/** | |
* @dev Returns the integer division of two unsigned integers, reverting on | |
* division by zero. The result is rounded towards zero. | |
* | |
* Counterpart to Solidity's `/` operator. Note: this function uses a | |
* `revert` opcode (which leaves remaining gas untouched) while Solidity | |
* uses an invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* | |
* - The divisor cannot be zero. | |
*/ | |
function div(uint256 a, uint256 b) internal pure returns (uint256) { | |
require(b > 0, "SafeMath: division by zero"); | |
return a / b; | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
* reverting when dividing by zero. | |
* | |
* Counterpart to Solidity's `%` operator. This function uses a `revert` | |
* opcode (which leaves remaining gas untouched) while Solidity uses an | |
* invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* | |
* - The divisor cannot be zero. | |
*/ | |
function mod(uint256 a, uint256 b) internal pure returns (uint256) { | |
require(b > 0, "SafeMath: modulo by zero"); | |
return a % b; | |
} | |
/** | |
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on | |
* overflow (when the result is negative). | |
* | |
* CAUTION: This function is deprecated because it requires allocating memory for the error | |
* message unnecessarily. For custom revert reasons use {trySub}. | |
* | |
* Counterpart to Solidity's `-` operator. | |
* | |
* Requirements: | |
* | |
* - Subtraction cannot overflow. | |
*/ | |
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b <= a, errorMessage); | |
return a - b; | |
} | |
/** | |
* @dev Returns the integer division of two unsigned integers, reverting with custom message on | |
* division by zero. The result is rounded towards zero. | |
* | |
* CAUTION: This function is deprecated because it requires allocating memory for the error | |
* message unnecessarily. For custom revert reasons use {tryDiv}. | |
* | |
* Counterpart to Solidity's `/` operator. Note: this function uses a | |
* `revert` opcode (which leaves remaining gas untouched) while Solidity | |
* uses an invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* | |
* - The divisor cannot be zero. | |
*/ | |
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b > 0, errorMessage); | |
return a / b; | |
} | |
/** | |
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), | |
* reverting with custom message when dividing by zero. | |
* | |
* CAUTION: This function is deprecated because it requires allocating memory for the error | |
* message unnecessarily. For custom revert reasons use {tryMod}. | |
* | |
* Counterpart to Solidity's `%` operator. This function uses a `revert` | |
* opcode (which leaves remaining gas untouched) while Solidity uses an | |
* invalid opcode to revert (consuming all remaining gas). | |
* | |
* Requirements: | |
* | |
* - The divisor cannot be zero. | |
*/ | |
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { | |
require(b > 0, errorMessage); | |
return a % b; | |
} | |
} | |
/** | |
* @title ProofOfHumanity Interface | |
* @dev See https://github.com/Proof-Of-Humanity/Proof-Of-Humanity. | |
*/ | |
interface IProofOfHumanity { | |
function isRegistered(address _submissionID) | |
external | |
view | |
returns ( | |
bool registered | |
); | |
} | |
/** | |
* @title Universal Basic Income | |
* @dev UBI is an ERC20 compatible token that is connected to a Proof of Humanity registry. | |
* | |
* Tokens are issued and drip over time for every verified submission on a Proof of Humanity registry. | |
* The accrued tokens are updated directly on every wallet using the `balanceOf` function. | |
* The tokens get effectively minted and persisted in memory when someone interacts with the contract doing a `transfer` or `burn`. | |
*/ | |
contract UBI is Initializable { | |
/* Events */ | |
/** | |
* @dev Emitted when `value` tokens are moved from one account (`from`) to another (`to`). | |
* | |
* Note that `value` may be zero. | |
* Also note that due to continuous minting we cannot emit transfer events from the address 0 when tokens are created. | |
* In order to keep consistency, we decided not to emit those events from the address 0 even when minting is done within a transaction. | |
*/ | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
/** | |
* @dev Emitted when the allowance of a `spender` for an `owner` is set by | |
* a call to {approve}. `value` is the new allowance. | |
*/ | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
using SafeMath for uint256; | |
/* Storage */ | |
mapping (address => uint256) private balance; | |
mapping (address => mapping (address => uint256)) public allowance; | |
/// @dev A lower bound of the total supply. Does not take into account tokens minted as UBI by an address before it moves those (transfer or burn). | |
uint256 public totalSupply; | |
/// @dev Name of the token. | |
string public name; | |
/// @dev Symbol of the token. | |
string public symbol; | |
/// @dev Number of decimals of the token. | |
uint8 public decimals; | |
/// @dev How many tokens per second will be minted for every valid human. | |
uint256 public accruedPerSecond; | |
/// @dev The contract's governor. | |
address public governor; | |
/// @dev The Proof Of Humanity registry to reference. | |
IProofOfHumanity public proofOfHumanity; | |
/// @dev Timestamp since human started accruing. | |
mapping(address => uint256) public accruedSince; | |
/* Modifiers */ | |
/// @dev Verifies that the sender has ability to modify governed parameters. | |
modifier onlyByGovernor() { | |
require(governor == msg.sender, "The caller is not the governor."); | |
_; | |
} | |
/* Initializer */ | |
/** @dev Constructor. | |
* @param _initialSupply for the UBI coin including all decimals. | |
* @param _name for UBI coin. | |
* @param _symbol for UBI coin ticker. | |
* @param _accruedPerSecond How much of the token is accrued per block. | |
* @param _proofOfHumanity The Proof Of Humanity registry to reference. | |
*/ | |
function initialize(uint256 _initialSupply, string memory _name, string memory _symbol, uint256 _accruedPerSecond, IProofOfHumanity _proofOfHumanity) public initializer { | |
name = _name; | |
symbol = _symbol; | |
decimals = 18; | |
accruedPerSecond = _accruedPerSecond; | |
proofOfHumanity = _proofOfHumanity; | |
governor = msg.sender; | |
balance[msg.sender] = _initialSupply; | |
totalSupply = _initialSupply; | |
} | |
/* External */ | |
/** @dev Starts accruing UBI for a registered submission. | |
* @param _human The submission ID. | |
*/ | |
function startAccruing(address _human) external { | |
require(proofOfHumanity.isRegistered(_human), "The submission is not registered in Proof Of Humanity."); | |
require(accruedSince[_human] == 0, "The submission is already accruing UBI."); | |
accruedSince[_human] = block.timestamp; | |
} | |
/** @dev Allows anyone to report a submission that | |
* should no longer receive UBI due to removal from the | |
* Proof Of Humanity registry. The reporter receives any | |
* leftover accrued UBI. | |
* @param _human The submission ID. | |
*/ | |
function reportRemoval(address _human) external { | |
require(!proofOfHumanity.isRegistered(_human), "The submission is still registered in Proof Of Humanity."); | |
require(accruedSince[_human] != 0, "The submission is not accruing UBI."); | |
uint256 newSupply = accruedPerSecond.mul(block.timestamp.sub(accruedSince[_human])); | |
accruedSince[_human] = 0; | |
balance[msg.sender] = balance[msg.sender].add(newSupply); | |
totalSupply = totalSupply.add(newSupply); | |
} | |
/** @dev Changes `governor` to `_governor`. | |
* @param _governor The address of the new governor. | |
*/ | |
function changeGovernor(address _governor) external onlyByGovernor { | |
governor = _governor; | |
} | |
/** @dev Changes `proofOfHumanity` to `_proofOfHumanity`. | |
* @param _proofOfHumanity Registry that meets interface of Proof of Humanity. | |
*/ | |
function changeProofOfHumanity(IProofOfHumanity _proofOfHumanity) external onlyByGovernor { | |
proofOfHumanity = _proofOfHumanity; | |
} | |
/** @dev Transfers `_amount` to `_recipient` and withdraws accrued tokens. | |
* @param _recipient The entity receiving the funds. | |
* @param _amount The amount to tranfer in base units. | |
*/ | |
function transfer(address _recipient, uint256 _amount) public returns (bool) { | |
uint256 newSupplyFrom; | |
if (accruedSince[msg.sender] != 0 && proofOfHumanity.isRegistered(msg.sender)) { | |
newSupplyFrom = accruedPerSecond.mul(block.timestamp.sub(accruedSince[msg.sender])); | |
totalSupply = totalSupply.add(newSupplyFrom); | |
accruedSince[msg.sender] = block.timestamp; | |
} | |
balance[msg.sender] = balance[msg.sender].add(newSupplyFrom).sub(_amount, "ERC20: transfer amount exceeds balance"); | |
balance[_recipient] = balance[_recipient].add(_amount); | |
emit Transfer(msg.sender, _recipient, _amount); | |
return true; | |
} | |
/** @dev Transfers `_amount` from `_sender` to `_recipient` and withdraws accrued tokens. | |
* @param _sender The entity to take the funds from. | |
* @param _recipient The entity receiving the funds. | |
* @param _amount The amount to tranfer in base units. | |
*/ | |
function transferFrom(address _sender, address _recipient, uint256 _amount) public returns (bool) { | |
uint256 newSupplyFrom; | |
allowance[_sender][msg.sender] = allowance[_sender][msg.sender].sub(_amount, "ERC20: transfer amount exceeds allowance"); | |
if (accruedSince[_sender] != 0 && proofOfHumanity.isRegistered(_sender)) { | |
newSupplyFrom = accruedPerSecond.mul(block.timestamp.sub(accruedSince[_sender])); | |
totalSupply = totalSupply.add(newSupplyFrom); | |
accruedSince[_sender] = block.timestamp; | |
} | |
balance[_sender] = balance[_sender].add(newSupplyFrom).sub(_amount, "ERC20: transfer amount exceeds balance"); | |
balance[_recipient] = balance[_recipient].add(_amount); | |
emit Transfer(_sender, _recipient, _amount); | |
return true; | |
} | |
/** @dev Approves `_spender` to spend `_amount`. | |
* @param _spender The entity allowed to spend funds. | |
* @param _amount The amount of base units the entity will be allowed to spend. | |
*/ | |
function approve(address _spender, uint256 _amount) public returns (bool) { | |
allowance[msg.sender][_spender] = _amount; | |
emit Approval(msg.sender, _spender, _amount); | |
return true; | |
} | |
/** @dev Increases the `_spender` allowance by `_addedValue`. | |
* @param _spender The entity allowed to spend funds. | |
* @param _addedValue The amount of extra base units the entity will be allowed to spend. | |
*/ | |
function increaseAllowance(address _spender, uint256 _addedValue) public returns (bool) { | |
uint256 newAllowance = allowance[msg.sender][_spender].add(_addedValue); | |
allowance[msg.sender][_spender] = newAllowance; | |
emit Approval(msg.sender, _spender, newAllowance); | |
return true; | |
} | |
/** @dev Decreases the `_spender` allowance by `_subtractedValue`. | |
* @param _spender The entity whose spending allocation will be reduced. | |
* @param _subtractedValue The reduction of spending allocation in base units. | |
*/ | |
function decreaseAllowance(address _spender, uint256 _subtractedValue) public returns (bool) { | |
uint256 newAllowance = allowance[msg.sender][_spender].sub(_subtractedValue, "ERC20: decreased allowance below zero"); | |
allowance[msg.sender][_spender] = newAllowance; | |
emit Approval(msg.sender, _spender, newAllowance); | |
return true; | |
} | |
/** @dev Burns `_amount` of tokens and withdraws accrued tokens. | |
* @param _amount The quantity of tokens to burn in base units. | |
*/ | |
function burn(uint256 _amount) public { | |
uint256 newSupplyFrom; | |
if(accruedSince[msg.sender] != 0 && proofOfHumanity.isRegistered(msg.sender)) { | |
newSupplyFrom = accruedPerSecond.mul(block.timestamp.sub(accruedSince[msg.sender])); | |
accruedSince[msg.sender] = block.timestamp; | |
} | |
balance[msg.sender] = balance[msg.sender].add(newSupplyFrom).sub(_amount, "ERC20: burn amount exceeds balance"); | |
totalSupply = totalSupply.add(newSupplyFrom).sub(_amount); | |
emit Transfer(msg.sender, address(0), _amount); | |
} | |
/** @dev Burns `_amount` of tokens from `_account` and withdraws accrued tokens. | |
* @param _account The entity to burn tokens from. | |
* @param _amount The quantity of tokens to burn in base units. | |
*/ | |
function burnFrom(address _account, uint256 _amount) public { | |
uint256 newSupplyFrom; | |
allowance[_account][msg.sender] = allowance[_account][msg.sender].sub(_amount, "ERC20: burn amount exceeds allowance"); | |
if (accruedSince[_account] != 0 && proofOfHumanity.isRegistered(_account)) { | |
newSupplyFrom = accruedPerSecond.mul(block.timestamp.sub(accruedSince[_account])); | |
accruedSince[_account] = block.timestamp; | |
} | |
balance[_account] = balance[_account].add(newSupplyFrom).sub(_amount, "ERC20: burn amount exceeds balance"); | |
totalSupply = totalSupply.add(newSupplyFrom).sub(_amount); | |
emit Transfer(_account, address(0), _amount); | |
} | |
/* Getters */ | |
/** @dev Calculates how much UBI a submission has available for withdrawal. | |
* @param _human The submission ID. | |
* @return accrued The available UBI for withdrawal. | |
*/ | |
function getAccruedValue(address _human) public view returns (uint256 accrued) { | |
// If this human have not started to accrue, or is not registered, return 0. | |
if (accruedSince[_human] == 0 || !proofOfHumanity.isRegistered(_human)) return 0; | |
else return accruedPerSecond.mul(block.timestamp.sub(accruedSince[_human])); | |
} | |
/** | |
* @dev Calculates the current user accrued balance. | |
* @param _human The submission ID. | |
* @return The current balance including accrued Universal Basic Income of the user. | |
**/ | |
function balanceOf(address _human) public view returns (uint256) { | |
return getAccruedValue(_human).add(balance[_human]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment