2018-10-24 12:52:11 +00:00
|
|
|
pragma solidity >=0.0;
|
2017-07-05 10:28:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// @title Test token contract - Allows testing of token transfers with multisig wallet.
|
|
|
|
contract TestToken {
|
|
|
|
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
event Approval(address indexed owner, address indexed spender, uint256 value);
|
|
|
|
|
|
|
|
mapping (address => uint256) balances;
|
|
|
|
mapping (address => mapping (address => uint256)) allowed;
|
|
|
|
uint256 public totalSupply;
|
|
|
|
|
|
|
|
string constant public name = "Test Token";
|
|
|
|
string constant public symbol = "TT";
|
|
|
|
uint8 constant public decimals = 1;
|
|
|
|
|
|
|
|
function issueTokens(address _to, uint256 _value)
|
|
|
|
public
|
|
|
|
{
|
|
|
|
balances[_to] += _value;
|
|
|
|
totalSupply += _value;
|
|
|
|
}
|
|
|
|
|
|
|
|
function transfer(address _to, uint256 _value)
|
|
|
|
public
|
|
|
|
returns (bool success)
|
|
|
|
{
|
|
|
|
if (balances[msg.sender] < _value) {
|
2018-07-11 23:49:00 +00:00
|
|
|
revert();
|
2017-07-05 10:28:15 +00:00
|
|
|
}
|
|
|
|
balances[msg.sender] -= _value;
|
|
|
|
balances[_to] += _value;
|
2018-06-27 08:35:38 +00:00
|
|
|
emit Transfer(msg.sender, _to, _value);
|
2017-07-05 10:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function transferFrom(address _from, address _to, uint256 _value)
|
|
|
|
public
|
|
|
|
returns (bool success)
|
|
|
|
{
|
|
|
|
if (balances[_from] < _value || allowed[_from][msg.sender] < _value) {
|
2018-07-11 23:49:00 +00:00
|
|
|
revert();
|
2017-07-05 10:28:15 +00:00
|
|
|
}
|
|
|
|
balances[_to] += _value;
|
|
|
|
balances[_from] -= _value;
|
|
|
|
allowed[_from][msg.sender] -= _value;
|
2018-06-27 08:35:38 +00:00
|
|
|
emit Transfer(_from, _to, _value);
|
2017-07-05 10:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function approve(address _spender, uint256 _value)
|
|
|
|
public
|
|
|
|
returns (bool success)
|
|
|
|
{
|
|
|
|
allowed[msg.sender][_spender] = _value;
|
2018-06-27 08:35:38 +00:00
|
|
|
emit Approval(msg.sender, _spender, _value);
|
2017-07-05 10:28:15 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function allowance(address _owner, address _spender)
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-05 10:28:15 +00:00
|
|
|
public
|
|
|
|
returns (uint256 remaining)
|
|
|
|
{
|
|
|
|
return allowed[_owner][_spender];
|
|
|
|
}
|
|
|
|
|
|
|
|
function balanceOf(address _owner)
|
2018-07-02 09:14:28 +00:00
|
|
|
view
|
2017-07-05 10:28:15 +00:00
|
|
|
public
|
|
|
|
returns (uint256 balance)
|
|
|
|
{
|
|
|
|
return balances[_owner];
|
|
|
|
}
|
|
|
|
}
|