-
Notifications
You must be signed in to change notification settings - Fork 0
/
BasicERC20Token.sol
82 lines (68 loc) · 3.06 KB
/
BasicERC20Token.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
73
74
75
76
77
78
79
80
81
pragma solidity ^0.4.11;
contract BasicERC20Token {
/* Public variables of the token */
string public standard = 'Token 0.1';
string public name = 'Ivan\'s Trackable Token';
string public symbol = 'ITT';
uint8 public decimals = 18;
uint256 public totalSupply = 0;
/* This creates an array with all balances */
mapping (address => uint256) public balances;
mapping (address => mapping (address => uint256)) public allowed;
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
event BalanceCheck(uint256 balance);
function transfer(address _to, uint256 _value) returns (bool success) {
//Default assumes totalSupply can't be over max (2^256 - 1).
//If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
//Replace the if with this one instead.
//if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
//same as above. Replace this line with the following if you want to protect against wrapping uints.
//if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else { return false; }
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/* Functions below are specific to this token and
* not part of the ERC-20 standard */
function deposit() payable returns (bool success) {
if (msg.value == 0) return false;
balances[msg.sender] += msg.value;
totalSupply += msg.value;
return true;
}
function withdraw(uint256 amount) returns (bool success) {
if (balances[msg.sender] < amount) return false;
balances[msg.sender] -= amount;
totalSupply -= amount;
if (!msg.sender.send(amount)) {
balances[msg.sender] += amount;
totalSupply += amount;
return false;
}
return true;
}
}