Merge tag 'v2.1.1' of github.com:OpenZeppelin/openzeppelin-solidity
v2.1.1
This commit is contained in:
@ -1,16 +1,20 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./IERC20.sol";
|
||||
import "../../math/SafeMath.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title Standard ERC20 token
|
||||
*
|
||||
* @dev Implementation of the basic standard token.
|
||||
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
|
||||
* Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
|
||||
* Originally based on code by FirstBlood:
|
||||
* https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
|
||||
*
|
||||
* This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
|
||||
* all accounts just by listening to said events. Note that this isn't required by the specification, and other
|
||||
* compliant implementations may not do it.
|
||||
*/
|
||||
contract ERC20 is Initializable, IERC20 {
|
||||
using SafeMath for uint256;
|
||||
@ -30,7 +34,7 @@ contract ERC20 is Initializable, IERC20 {
|
||||
|
||||
/**
|
||||
* @dev Gets the balance of the specified address.
|
||||
* @param owner The address to query the the balance of.
|
||||
* @param owner The address to query the balance of.
|
||||
* @return An uint256 representing the amount owned by the passed address.
|
||||
*/
|
||||
function balanceOf(address owner) public view returns (uint256) {
|
||||
@ -43,14 +47,7 @@ contract ERC20 is Initializable, IERC20 {
|
||||
* @param spender address The address which will spend the funds.
|
||||
* @return A uint256 specifying the amount of tokens still available for the spender.
|
||||
*/
|
||||
function allowance(
|
||||
address owner,
|
||||
address spender
|
||||
)
|
||||
public
|
||||
view
|
||||
returns (uint256)
|
||||
{
|
||||
function allowance(address owner, address spender) public view returns (uint256) {
|
||||
return _allowed[owner][spender];
|
||||
}
|
||||
|
||||
@ -82,23 +79,17 @@ contract ERC20 is Initializable, IERC20 {
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Transfer tokens from one address to another
|
||||
* @dev Transfer tokens from one address to another.
|
||||
* Note that while this function emits an Approval event, this is not required as per the specification,
|
||||
* and other compliant implementations may not emit the event.
|
||||
* @param from address The address which you want to send tokens from
|
||||
* @param to address The address which you want to transfer to
|
||||
* @param value uint256 the amount of tokens to be transferred
|
||||
*/
|
||||
function transferFrom(
|
||||
address from,
|
||||
address to,
|
||||
uint256 value
|
||||
)
|
||||
public
|
||||
returns (bool)
|
||||
{
|
||||
require(value <= _allowed[from][msg.sender]);
|
||||
|
||||
function transferFrom(address from, address to, uint256 value) public returns (bool) {
|
||||
_allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
|
||||
_transfer(from, to, value);
|
||||
emit Approval(from, msg.sender, _allowed[from][msg.sender]);
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -108,20 +99,14 @@ contract ERC20 is Initializable, IERC20 {
|
||||
* allowed value is better to use this function to avoid 2 calls (and wait until
|
||||
* the first transaction is mined)
|
||||
* From MonolithDAO Token.sol
|
||||
* Emits an Approval event.
|
||||
* @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)
|
||||
{
|
||||
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
|
||||
require(spender != address(0));
|
||||
|
||||
_allowed[msg.sender][spender] = (
|
||||
_allowed[msg.sender][spender].add(addedValue));
|
||||
_allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
|
||||
emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
|
||||
return true;
|
||||
}
|
||||
@ -132,20 +117,14 @@ contract ERC20 is Initializable, IERC20 {
|
||||
* allowed value is better to use this function to avoid 2 calls (and wait until
|
||||
* the first transaction is mined)
|
||||
* From MonolithDAO Token.sol
|
||||
* Emits an Approval event.
|
||||
* @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)
|
||||
{
|
||||
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
|
||||
require(spender != address(0));
|
||||
|
||||
_allowed[msg.sender][spender] = (
|
||||
_allowed[msg.sender][spender].sub(subtractedValue));
|
||||
_allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
|
||||
emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
|
||||
return true;
|
||||
}
|
||||
@ -157,7 +136,6 @@ contract ERC20 is Initializable, IERC20 {
|
||||
* @param value The amount to be transferred.
|
||||
*/
|
||||
function _transfer(address from, address to, uint256 value) internal {
|
||||
require(value <= _balances[from]);
|
||||
require(to != address(0));
|
||||
|
||||
_balances[from] = _balances[from].sub(value);
|
||||
@ -170,45 +148,42 @@ contract ERC20 is Initializable, IERC20 {
|
||||
* an account. This encapsulates the modification of balances such that the
|
||||
* proper events are emitted.
|
||||
* @param account The account that will receive the created tokens.
|
||||
* @param amount The amount that will be created.
|
||||
* @param value The amount that will be created.
|
||||
*/
|
||||
function _mint(address account, uint256 amount) internal {
|
||||
require(account != 0);
|
||||
_totalSupply = _totalSupply.add(amount);
|
||||
_balances[account] = _balances[account].add(amount);
|
||||
emit Transfer(address(0), account, amount);
|
||||
function _mint(address account, uint256 value) internal {
|
||||
require(account != address(0));
|
||||
|
||||
_totalSupply = _totalSupply.add(value);
|
||||
_balances[account] = _balances[account].add(value);
|
||||
emit Transfer(address(0), account, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Internal function that burns an amount of the token of a given
|
||||
* account.
|
||||
* @param account The account whose tokens will be burnt.
|
||||
* @param amount The amount that will be burnt.
|
||||
* @param value The amount that will be burnt.
|
||||
*/
|
||||
function _burn(address account, uint256 amount) internal {
|
||||
require(account != 0);
|
||||
require(amount <= _balances[account]);
|
||||
function _burn(address account, uint256 value) internal {
|
||||
require(account != address(0));
|
||||
|
||||
_totalSupply = _totalSupply.sub(amount);
|
||||
_balances[account] = _balances[account].sub(amount);
|
||||
emit Transfer(account, address(0), amount);
|
||||
_totalSupply = _totalSupply.sub(value);
|
||||
_balances[account] = _balances[account].sub(value);
|
||||
emit Transfer(account, address(0), value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Internal function that burns an amount of the token of a given
|
||||
* account, deducting from the sender's allowance for said account. Uses the
|
||||
* internal burn function.
|
||||
* Emits an Approval event (reflecting the reduced allowance).
|
||||
* @param account The account whose tokens will be burnt.
|
||||
* @param amount The amount that will be burnt.
|
||||
* @param value The amount that will be burnt.
|
||||
*/
|
||||
function _burnFrom(address account, uint256 amount) internal {
|
||||
require(amount <= _allowed[account][msg.sender]);
|
||||
|
||||
// Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted,
|
||||
// this function needs to emit an event with the updated approval.
|
||||
_allowed[account][msg.sender] = _allowed[account][msg.sender].sub(
|
||||
amount);
|
||||
_burn(account, amount);
|
||||
function _burnFrom(address account, uint256 value) internal {
|
||||
_allowed[account][msg.sender] = _allowed[account][msg.sender].sub(value);
|
||||
_burn(account, value);
|
||||
emit Approval(account, msg.sender, _allowed[account][msg.sender]);
|
||||
}
|
||||
|
||||
uint256[50] private ______gap;
|
||||
|
||||
@ -1,15 +1,13 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./ERC20.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title Burnable Token
|
||||
* @dev Token that can be irreversibly burned (destroyed).
|
||||
*/
|
||||
contract ERC20Burnable is Initializable, ERC20 {
|
||||
|
||||
/**
|
||||
* @dev Burns a specific amount of tokens.
|
||||
* @param value The amount of token to be burned.
|
||||
|
||||
@ -1,21 +1,16 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./ERC20Mintable.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title Capped token
|
||||
* @dev Mintable token with a token cap.
|
||||
*/
|
||||
contract ERC20Capped is Initializable, ERC20Mintable {
|
||||
|
||||
uint256 private _cap;
|
||||
|
||||
function initialize(uint256 cap, address sender)
|
||||
public
|
||||
initializer
|
||||
{
|
||||
function initialize(uint256 cap, address sender) public initializer {
|
||||
ERC20Mintable.initialize(sender);
|
||||
|
||||
require(cap > 0);
|
||||
@ -25,28 +20,14 @@ contract ERC20Capped is Initializable, ERC20Mintable {
|
||||
/**
|
||||
* @return the cap for the token minting.
|
||||
*/
|
||||
function cap() public view returns(uint256) {
|
||||
function cap() public view returns (uint256) {
|
||||
return _cap;
|
||||
}
|
||||
|
||||
/**
|
||||
* @dev Function to mint tokens
|
||||
* @param to The address that will receive the minted tokens.
|
||||
* @param amount The amount of tokens to mint.
|
||||
* @return A boolean that indicates if the operation was successful.
|
||||
*/
|
||||
function mint(
|
||||
address to,
|
||||
uint256 amount
|
||||
)
|
||||
public
|
||||
returns (bool)
|
||||
{
|
||||
require(totalSupply().add(amount) <= _cap);
|
||||
|
||||
return super.mint(to, amount);
|
||||
function _mint(address account, uint256 value) internal {
|
||||
require(totalSupply().add(value) <= _cap);
|
||||
super._mint(account, value);
|
||||
}
|
||||
|
||||
|
||||
uint256[50] private ______gap;
|
||||
}
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./IERC20.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title ERC20Detailed token
|
||||
* @dev The decimals are only for visualization purposes.
|
||||
@ -15,7 +14,7 @@ contract ERC20Detailed is Initializable, IERC20 {
|
||||
string private _symbol;
|
||||
uint8 private _decimals;
|
||||
|
||||
function initialize(string name, string symbol, uint8 decimals) public initializer {
|
||||
function initialize(string memory name, string memory symbol, uint8 decimals) public initializer {
|
||||
_name = name;
|
||||
_symbol = symbol;
|
||||
_decimals = decimals;
|
||||
@ -24,21 +23,21 @@ contract ERC20Detailed is Initializable, IERC20 {
|
||||
/**
|
||||
* @return the name of the token.
|
||||
*/
|
||||
function name() public view returns(string) {
|
||||
function name() public view returns (string memory) {
|
||||
return _name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the symbol of the token.
|
||||
*/
|
||||
function symbol() public view returns(string) {
|
||||
function symbol() public view returns (string memory) {
|
||||
return _symbol;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the number of decimals of the token.
|
||||
*/
|
||||
function decimals() public view returns(uint8) {
|
||||
function decimals() public view returns (uint8) {
|
||||
return _decimals;
|
||||
}
|
||||
|
||||
|
||||
@ -1,10 +1,9 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./ERC20.sol";
|
||||
import "../../access/roles/MinterRole.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title ERC20Mintable
|
||||
* @dev ERC20 minting logic
|
||||
@ -17,18 +16,11 @@ contract ERC20Mintable is Initializable, ERC20, MinterRole {
|
||||
/**
|
||||
* @dev Function to mint tokens
|
||||
* @param to The address that will receive the minted tokens.
|
||||
* @param amount The amount of tokens to mint.
|
||||
* @param value The amount of tokens to mint.
|
||||
* @return A boolean that indicates if the operation was successful.
|
||||
*/
|
||||
function mint(
|
||||
address to,
|
||||
uint256 amount
|
||||
)
|
||||
public
|
||||
onlyMinter
|
||||
returns (bool)
|
||||
{
|
||||
_mint(to, amount);
|
||||
function mint(address to, uint256 value) public onlyMinter returns (bool) {
|
||||
_mint(to, value);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@ -1,75 +1,35 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./ERC20.sol";
|
||||
import "../../lifecycle/Pausable.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title Pausable token
|
||||
* @dev ERC20 modified with pausable transfers.
|
||||
**/
|
||||
contract ERC20Pausable is Initializable, ERC20, Pausable {
|
||||
|
||||
function initialize(address sender) public initializer {
|
||||
Pausable.initialize(sender);
|
||||
}
|
||||
|
||||
function transfer(
|
||||
address to,
|
||||
uint256 value
|
||||
)
|
||||
public
|
||||
whenNotPaused
|
||||
returns (bool)
|
||||
{
|
||||
function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
|
||||
return super.transfer(to, value);
|
||||
}
|
||||
|
||||
function transferFrom(
|
||||
address from,
|
||||
address to,
|
||||
uint256 value
|
||||
)
|
||||
public
|
||||
whenNotPaused
|
||||
returns (bool)
|
||||
{
|
||||
function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
|
||||
return super.transferFrom(from, to, value);
|
||||
}
|
||||
|
||||
function approve(
|
||||
address spender,
|
||||
uint256 value
|
||||
)
|
||||
public
|
||||
whenNotPaused
|
||||
returns (bool)
|
||||
{
|
||||
function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
|
||||
return super.approve(spender, value);
|
||||
}
|
||||
|
||||
function increaseAllowance(
|
||||
address spender,
|
||||
uint addedValue
|
||||
)
|
||||
public
|
||||
whenNotPaused
|
||||
returns (bool success)
|
||||
{
|
||||
function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool success) {
|
||||
return super.increaseAllowance(spender, addedValue);
|
||||
}
|
||||
|
||||
function decreaseAllowance(
|
||||
address spender,
|
||||
uint subtractedValue
|
||||
)
|
||||
public
|
||||
whenNotPaused
|
||||
returns (bool success)
|
||||
{
|
||||
function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool success) {
|
||||
return super.decreaseAllowance(spender, subtractedValue);
|
||||
}
|
||||
|
||||
uint256[50] private ______gap;
|
||||
}
|
||||
|
||||
@ -1,35 +1,23 @@
|
||||
pragma solidity ^0.4.24;
|
||||
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
/**
|
||||
* @title ERC20 interface
|
||||
* @dev see https://github.com/ethereum/EIPs/issues/20
|
||||
*/
|
||||
interface IERC20 {
|
||||
function transfer(address to, uint256 value) external returns (bool);
|
||||
|
||||
function approve(address spender, uint256 value) external returns (bool);
|
||||
|
||||
function transferFrom(address from, address to, uint256 value) external returns (bool);
|
||||
|
||||
function totalSupply() external view returns (uint256);
|
||||
|
||||
function balanceOf(address who) external view returns (uint256);
|
||||
|
||||
function allowance(address owner, address spender)
|
||||
external view returns (uint256);
|
||||
function allowance(address owner, address spender) external view returns (uint256);
|
||||
|
||||
function transfer(address to, uint256 value) external returns (bool);
|
||||
event Transfer(address indexed from, address indexed to, uint256 value);
|
||||
|
||||
function approve(address spender, uint256 value)
|
||||
external returns (bool);
|
||||
|
||||
function transferFrom(address from, address to, uint256 value)
|
||||
external returns (bool);
|
||||
|
||||
event Transfer(
|
||||
address indexed from,
|
||||
address indexed to,
|
||||
uint256 value
|
||||
);
|
||||
|
||||
event Approval(
|
||||
address indexed owner,
|
||||
address indexed spender,
|
||||
uint256 value
|
||||
);
|
||||
event Approval(address indexed owner, address indexed spender, uint256 value);
|
||||
}
|
||||
|
||||
@ -1,8 +1,7 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "./ERC20.sol";
|
||||
import "./IERC20.sol";
|
||||
|
||||
import "../../math/SafeMath.sol";
|
||||
|
||||
/**
|
||||
* @title SafeERC20
|
||||
@ -11,34 +10,31 @@ import "./IERC20.sol";
|
||||
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
|
||||
*/
|
||||
library SafeERC20 {
|
||||
function safeTransfer(
|
||||
IERC20 token,
|
||||
address to,
|
||||
uint256 value
|
||||
)
|
||||
internal
|
||||
{
|
||||
using SafeMath for uint256;
|
||||
|
||||
function safeTransfer(IERC20 token, address to, uint256 value) internal {
|
||||
require(token.transfer(to, value));
|
||||
}
|
||||
|
||||
function safeTransferFrom(
|
||||
IERC20 token,
|
||||
address from,
|
||||
address to,
|
||||
uint256 value
|
||||
)
|
||||
internal
|
||||
{
|
||||
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
|
||||
require(token.transferFrom(from, to, value));
|
||||
}
|
||||
|
||||
function safeApprove(
|
||||
IERC20 token,
|
||||
address spender,
|
||||
uint256 value
|
||||
)
|
||||
internal
|
||||
{
|
||||
function safeApprove(IERC20 token, address spender, uint256 value) internal {
|
||||
// safeApprove should only be called when setting an initial allowance,
|
||||
// or when resetting it to zero. To increase and decrease it, use
|
||||
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
|
||||
require((value == 0) || (token.allowance(msg.sender, spender) == 0));
|
||||
require(token.approve(spender, value));
|
||||
}
|
||||
|
||||
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
|
||||
uint256 newAllowance = token.allowance(address(this), spender).add(value);
|
||||
require(token.approve(spender, newAllowance));
|
||||
}
|
||||
|
||||
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
|
||||
uint256 newAllowance = token.allowance(address(this), spender).sub(value);
|
||||
require(token.approve(spender, newAllowance));
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
pragma solidity ^0.4.24;
|
||||
pragma solidity ^0.5.0;
|
||||
|
||||
import "zos-lib/contracts/Initializable.sol";
|
||||
import "./SafeERC20.sol";
|
||||
|
||||
|
||||
/**
|
||||
* @title TokenTimelock
|
||||
* @dev TokenTimelock is a token holder contract that will allow a
|
||||
@ -21,15 +20,7 @@ contract TokenTimelock is Initializable {
|
||||
// timestamp when token release is enabled
|
||||
uint256 private _releaseTime;
|
||||
|
||||
function initialize(
|
||||
IERC20 token,
|
||||
address beneficiary,
|
||||
uint256 releaseTime
|
||||
)
|
||||
public
|
||||
initializer
|
||||
{
|
||||
// solium-disable-next-line security/no-block-members
|
||||
function initialize (IERC20 token, address beneficiary, uint256 releaseTime) public initializer {
|
||||
require(releaseTime > block.timestamp);
|
||||
_token = token;
|
||||
_beneficiary = beneficiary;
|
||||
@ -39,21 +30,21 @@ contract TokenTimelock is Initializable {
|
||||
/**
|
||||
* @return the token being held.
|
||||
*/
|
||||
function token() public view returns(IERC20) {
|
||||
function token() public view returns (IERC20) {
|
||||
return _token;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the beneficiary of the tokens.
|
||||
*/
|
||||
function beneficiary() public view returns(address) {
|
||||
function beneficiary() public view returns (address) {
|
||||
return _beneficiary;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the time when the tokens are released.
|
||||
*/
|
||||
function releaseTime() public view returns(uint256) {
|
||||
function releaseTime() public view returns (uint256) {
|
||||
return _releaseTime;
|
||||
}
|
||||
|
||||
@ -61,7 +52,7 @@ contract TokenTimelock is Initializable {
|
||||
* @notice Transfers tokens held by timelock to beneficiary.
|
||||
*/
|
||||
function release() public {
|
||||
// solium-disable-next-line security/no-block-members
|
||||
// solhint-disable-next-line not-rely-on-time
|
||||
require(block.timestamp >= _releaseTime);
|
||||
|
||||
uint256 amount = _token.balanceOf(address(this));
|
||||
|
||||
Reference in New Issue
Block a user