-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherc20.sol
118 lines (97 loc) · 3.81 KB
/
erc20.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
pragma solidity '0.5.11';
/**
* ERC20 Token
* @author @code4mk <twiiter.com/@code4mk>
*/
contract ERC20 {
string the_name;
string the_symbol;
uint8 the_decimal;
uint256 the_supply;
address the_owner;
address payer;
address initial_owner;
string version = "0.0.1";
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
constructor(string memory _name,string memory _symbol,uint8 _decimal,uint256 _supply) public{
the_name = _name;
the_symbol = _symbol;
the_decimal = _decimal;
the_supply = _supply;
the_owner = msg.sender;
balances[msg.sender] = _supply;
}
modifier isOwner() {
require(msg.sender == the_owner);
_;
}
function name() public view returns (string memory){
return(the_name);
}
function symbol() public view returns (string memory){
return(the_symbol);
}
function decimals() public view returns (uint8){
return(the_decimal);
}
function totalSupply() public view returns (uint256) {
return(the_supply);
}
function balanceOf(address _owner) view public returns (uint256 balance) {
return balances[_owner];
}
function transfer(address _to, uint256 _value) public 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;
emit Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}
function transferFrom(address _from, address _to, uint256 _value) public 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;
emit Transfer(_from, _to, _value);
return true;
} else { return false; }
}
function approve(address _spender, uint256 _value) public returns (bool success) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) view public returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/* custom functions by @code4mk */
function addSupply(uint256 _quantity) public isOwner() {
the_supply = the_supply + _quantity;
}
function addBalance(uint256 _amount ) public isOwner() {
balances[msg.sender] = balances[msg.sender] + _amount;
}
function addReserve(uint256 _quantity) public isOwner() returns(bool){
if (balances[msg.sender] >= _quantity && _quantity > 0) {
balances[msg.sender] = balances[msg.sender] - _quantity;
} else {
return false;
}
}
function theOwner() view public returns (address) {
return (the_owner);
}
function transferOwnership(address _new) public isOwner() {
the_owner = _new;
}
}