solidity/test/compilationTests/zeppelin/token/BasicToken.sol

38 lines
961 B
Solidity
Raw Normal View History

2017-07-05 10:28:15 +00:00
pragma solidity ^0.4.11;
import './ERC20Basic.sol';
import '../math/SafeMath.sol';
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
2017-07-05 10:28:15 +00:00
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) balances;
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
2018-07-04 17:20:51 +00:00
function transfer(address _to, uint256 _value) public {
2017-07-05 10:28:15 +00:00
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
2018-06-27 08:35:38 +00:00
emit Transfer(msg.sender, _to, _value);
2017-07-05 10:28:15 +00:00
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
2017-07-05 10:28:15 +00:00
* @return An uint256 representing the amount owned by the passed address.
*/
2018-07-04 17:20:51 +00:00
function balanceOf(address _owner) public view returns (uint256 balance) {
2017-07-05 10:28:15 +00:00
return balances[_owner];
}
}