-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy path0xe8a1df958be379045e2b46a31a98b93a2ecdfded-ESZ-ESZCoin.sol
250 lines (222 loc) · 6.33 KB
/
0xe8a1df958be379045e2b46a31a98b93a2ecdfded-ESZ-ESZCoin.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
pragma solidity 0.4.19;
// implement safemath as a library
library SafeMath {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a * b;
require(a == 0 || c / a == b);
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a / b;
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a);
return a - b;
}
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
}
contract ESZCoin {
using SafeMath for uint256;
address public owner;
string public name;
string public symbol;
uint256 public totalSupply;
uint8 public decimals;
bool public globalTransferLock;
mapping (address => bool) public accountLock;
mapping (address => uint256) public balances;
mapping (address => mapping(address => uint256)) public allowed;
event Transfer(address indexed _sender, address indexed _recipient, uint256 _amount);
event Approval(address indexed _owner, address indexed _spender, uint256 _amount);
event GlobalTransfersLocked(bool indexed _transfersFrozenGlobally);
event GlobalTransfersUnlocked(bool indexed _transfersThawedGlobally);
event AccountTransfersFrozen(address indexed _eszHolder, bool indexed _accountTransfersFrozen);
event AccountTransfersThawed(address indexed _eszHolder, bool indexed _accountTransfersThawed);
/**
@dev Checks to ensure that msg.sender is the owner
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
@dev Checks to ensure that global transfers are not locked
*/
modifier transfersUnlocked() {
require(!globalTransferLock);
_;
}
/**CONSTRUCTOR*/
function ESZCoin() {
owner = msg.sender;
totalSupply = 10000000000000000000000000;
balances[msg.sender] = totalSupply;
name = "ESZCoin";
symbol = "ESZ";
decimals = 18;
globalTransferLock = false;
}
/**
@dev Freezes transfers globally
*/
function freezeGlobalTansfers()
public
onlyOwner
returns (bool)
{
globalTransferLock = true;
GlobalTransfersLocked(true);
return true;
}
/**
@dev Thaws transfers globally
*/
function thawGlobalTransfers()
public
onlyOwner
returns (bool)
{
globalTransferLock = false;
GlobalTransfersUnlocked(true);
}
/**
@dev Freezes a particular account, preventing them from making transfers
*/
function freezeAccountTransfers(
address _eszHolder
)
public
onlyOwner
returns (bool)
{
accountLock[_eszHolder] = true;
AccountTransfersFrozen(_eszHolder, true);
return true;
}
/**
@dev Thaws a particular account, allowing them to make transfers again
*/
function thawAccountTransfers(
address _eszHolder
)
public
onlyOwner
returns (bool)
{
accountLock[_eszHolder] = false;
AccountTransfersThawed(_eszHolder, true);
return true;
}
/**
@dev Used to transfers tokens
*/
function transfer(
address _recipient,
uint256 _amount
)
public
returns (bool)
{
require(accountLock[msg.sender] == false);
require(transferCheck(msg.sender, _recipient, _amount));
balances[msg.sender] = balances[msg.sender].sub(_amount);
balances[_recipient] = balances[_recipient].add(_amount);
Transfer(msg.sender, _recipient, _amount);
return true;
}
/**
@dev Used to transfers tokens to someone on behalf of the owner account. Must be approved
*/
function transferFrom(
address _owner,
address _recipient,
uint256 _amount
)
public
returns (bool)
{
require(accountLock[_owner] == false);
require(allowed[_owner][msg.sender] >= _amount);
require(transferCheck(_owner, _recipient, _amount));
allowed[_owner][msg.sender] = allowed[_owner][msg.sender].sub(_amount);
balances[_owner] = balances[_owner].sub(_amount);
balances[_recipient] = balances[_recipient].add(_amount);
Transfer(_owner, _recipient, _amount);
return true;
}
/**
@dev Used to approve another account to spend on your behalf
*/
function approve(
address _spender,
uint256 _amount
)
public
returns (bool)
{
allowed[msg.sender][_spender] = _amount;
Approval(msg.sender, _spender, _amount);
return true;
}
/** INTERNALS */
/**
@dev Does a sanity check of the parameters in a transfer, makes sure transfers are allowed
*/
function transferCheck(
address _sender,
address _recipient,
uint256 _amount
)
internal
view
transfersUnlocked
returns (bool)
{
require(_amount > 0);
require(balances[_sender] >= _amount);
require(balances[_sender].sub(_amount) >= 0);
require(balances[_recipient].add(_amount) > balances[_recipient]);
return true;
}
/** GETTERS */
/**
@dev Retrieves total supply
*/
function totalSupply()
public
view
returns (uint256)
{
return totalSupply;
}
/**
@dev Retrieves the balance of an ESZ holder
*/
function balanceOf(
address _eszHolder
)
public
view
returns (uint256)
{
return balances[_eszHolder];
}
/**
@dev Retrieves the balance of spender for owner
*/
function allowance(
address _owner,
address _spender
)
public
view
returns (uint256)
{
return allowed[_owner][_spender];
}
}