ens-usernames/contracts/token/StandardToken.sol

129 lines
3.1 KiB
Solidity
Raw Normal View History

pragma solidity ^0.4.24;
2018-04-23 04:58:58 +00:00
import "./ERC20Token.sol";
contract StandardToken is ERC20Token {
2018-05-08 02:37:45 +00:00
uint256 private supply;
2018-04-23 05:04:49 +00:00
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
constructor() internal { }
2018-04-23 05:04:49 +00:00
function transfer(
address _to,
uint256 _value
)
external
2018-04-23 05:04:49 +00:00
returns (bool success)
{
return transfer(msg.sender, _to, _value);
2018-04-23 04:58:58 +00:00
}
function approve(
address _to,
uint256 _value
)
external
returns (bool success)
{
return approve(msg.sender, _to, _value);
}
2018-04-23 05:04:49 +00:00
function transferFrom(
address _from,
address _to,
uint256 _value
)
2018-05-08 02:37:45 +00:00
external
2018-04-23 05:04:49 +00:00
returns (bool success)
{
if (balances[_from] >= _value &&
allowed[_from][msg.sender] >= _value &&
2018-04-23 05:04:49 +00:00
_value > 0) {
2018-04-23 04:58:58 +00:00
allowed[_from][msg.sender] -= _value;
2018-04-23 05:04:49 +00:00
return transfer(_from, _to, _value);
} else {
return false;
2018-04-23 05:04:49 +00:00
}
2018-04-23 04:58:58 +00:00
}
function allowance(address _owner, address _spender)
external
view
2018-04-23 05:04:49 +00:00
returns (uint256 remaining)
{
return allowed[_owner][_spender];
2018-04-23 04:58:58 +00:00
}
function balanceOf(address _owner)
external
view
returns (uint256 balance)
2018-04-23 05:04:49 +00:00
{
return balances[_owner];
2018-04-23 04:58:58 +00:00
}
function totalSupply()
external
view
returns(uint256 currentTotalSupply)
2018-05-08 02:37:45 +00:00
{
return supply;
}
/**
* @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender.
* @param _from The address that is approving the spend
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _from, address _spender, uint256 _value) internal returns (bool) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
require((_value == 0) || (allowed[_from][_spender] == 0), "Bad usage");
allowed[_from][_spender] = _value;
emit Approval(_from, _spender, _value);
return true;
}
2018-05-08 02:37:45 +00:00
function mint(
address _to,
uint256 _amount
)
2018-05-08 02:37:45 +00:00
internal
{
balances[_to] += _amount;
supply += _amount;
emit Transfer(0x0, _to, _amount);
}
2018-04-23 04:58:58 +00:00
2018-04-23 05:04:49 +00:00
function transfer(
address _from,
2018-04-23 05:04:49 +00:00
address _to,
uint256 _value
)
internal
2018-04-23 05:04:49 +00:00
returns (bool success)
{
if (balances[_from] >= _value && _value > 0) {
balances[_from] -= _value;
if(_to == address(0)) {
supply -= _value;
} else {
balances[_to] += _value;
}
2018-04-23 05:04:49 +00:00
emit Transfer(_from, _to, _value);
return true;
} else {
return false;
2018-04-23 05:04:49 +00:00
}
2018-04-23 04:58:58 +00:00
}
2018-04-23 05:04:49 +00:00
2018-04-23 04:58:58 +00:00
}