This repository has been archived by the owner on Apr 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathTestToken.sol
72 lines (61 loc) · 1.98 KB
/
TestToken.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
pragma solidity ^0.4.14;
/// @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) public balanceOf;
mapping (address => mapping (address => uint256)) allowed;
uint256 public totalSupply;
string public name;
string public symbol;
uint8 public decimals;
function TestToken(string _name, string _symbol, uint8 _decimals) {
require(bytes(_name).length > 0);
require(bytes(_symbol).length > 0);
name = _name;
symbol = _symbol;
decimals = _decimals;
}
function issueTokens(address _to, uint256 _value)
public
{
balanceOf[_to] += _value;
totalSupply += _value;
}
function transfer(address _to, uint256 _value)
public
returns (bool success)
{
return transfer(msg.sender, _to, _value);
}
function transferFrom(address _from, address _to, uint256 _value)
public
returns (bool success)
{
require(allowed[_from][msg.sender] >= _value);
allowed[_from][msg.sender] -= _value;
return transfer(_from, _to, _value);
}
function approve(address _spender, uint256 _value)
public
returns (bool success)
{
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender)
constant
public
returns (uint256 remaining)
{
return allowed[_owner][_spender];
}
function transfer(address _from, address _to, uint256 _value) private returns(bool) {
require(balanceOf[_from] >= _value);
Transfer(_from, _to, _value);
balanceOf[_from] -= _value;
balanceOf[_to] += _value;
return true;
}
}