You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
pragma solidity ^0.4.24;
|
|
|
|
|
|
import "./ERC20Basic.sol";
|
|
import "../../math/SafeMath.sol";
|
|
|
|
|
|
/**
|
|
* @title Basic token
|
|
* @dev Basic version of StandardToken, with no allowances.
|
|
*/
|
|
contract BasicToken is ERC20Basic {
|
|
using SafeMath for uint256;
|
|
|
|
mapping(address => uint256) balances;
|
|
|
|
uint256 totalSupply_;
|
|
|
|
/**
|
|
* @dev Total number of tokens in existence
|
|
*/
|
|
function totalSupply() public view returns (uint256) {
|
|
return totalSupply_;
|
|
}
|
|
|
|
/**
|
|
* @dev Transfer token for a specified address
|
|
* @param _to The address to transfer to.
|
|
* @param _value The amount to be transferred.
|
|
*/
|
|
function transfer(address _to, uint256 _value) public returns (bool) {
|
|
require(_to != address(0));
|
|
require(_value <= balances[msg.sender]);
|
|
|
|
balances[msg.sender] = balances[msg.sender].sub(_value);
|
|
balances[_to] = balances[_to].add(_value);
|
|
emit Transfer(msg.sender, _to, _value);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @dev Gets the balance of the specified address.
|
|
* @param _owner The address to query the the balance of.
|
|
* @return An uint256 representing the amount owned by the passed address.
|
|
*/
|
|
function balanceOf(address _owner) public view returns (uint256) {
|
|
return balances[_owner];
|
|
}
|
|
|
|
}
|
|
|