-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy path0x4e260e3ca268e40133c84b142de73108a7c1ec99-YC-YoshiCoin.sol
251 lines (170 loc) · 6.85 KB
/
0x4e260e3ca268e40133c84b142de73108a7c1ec99-YC-YoshiCoin.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
251
pragma solidity ^0.4.14;
//YoshiCoin token buying contract
contract SafeMath {
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function safeDiv(uint a, uint b) internal returns (uint) {
assert(b > 0);
uint c = a / b;
assert(a == b * c + a % b);
return c;
}
function safeSub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function safeAdd(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c>=a && c>=b);
return c;
}
function max64(uint64 a, uint64 b) internal constant returns (uint64) {
return a >= b ? a : b;
}
function min64(uint64 a, uint64 b) internal constant returns (uint64) {
return a < b ? a : b;
}
function max256(uint256 a, uint256 b) internal constant returns (uint256) {
return a >= b ? a : b;
}
function min256(uint256 a, uint256 b) internal constant returns (uint256) {
return a < b ? a : b;
}
function assert(bool assertion) internal {
if (!assertion) {
throw;
}
}
}
contract ERC20 {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function allowance(address owner, address spender) constant returns (uint);
function transfer(address to, uint value) returns (bool ok);
function transferFrom(address from, address to, uint value) returns (bool ok);
function approve(address spender, uint value) returns (bool ok);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
contract StandardToken is ERC20, SafeMath {
/* Token supply got increased and a new owner received these tokens */
event Minted(address receiver, uint amount);
/* Actual balances of token holders */
mapping(address => uint) balances;
/* approve() allowances */
mapping (address => mapping (address => uint)) allowed;
/* Interface declaration */
function isToken() public constant returns (bool weAre) {
return true;
}
function transfer(address _to, uint _value) returns (bool success) {
if (_value < 1) {
revert();
}
balances[msg.sender] = safeSub(balances[msg.sender], _value);
balances[_to] = safeAdd(balances[_to], _value);
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint _value) returns (bool success) {
if (_value < 1) {
revert();
}
uint _allowance = allowed[_from][msg.sender];
balances[_to] = safeAdd(balances[_to], _value);
balances[_from] = safeSub(balances[_from], _value);
allowed[_from][msg.sender] = safeSub(_allowance, _value);
Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) constant returns (uint balance) {
return balances[_owner];
}
function approve(address _spender, uint _value) returns (bool success) {
// To change the approve amount you first have to reduce the addresses`
// allowance to zero by calling `approve(_spender, 0)` if it is not
// already 0 to mitigate the race condition described here:
// https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw;
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint remaining) {
return allowed[_owner][_spender];
}
}
//YoshiCoin token buying contract
contract YoshiCoin is StandardToken {
uint256 public rate = 50; //Each ETH will get you 50 Yoshi Coins - Minimum: 0.02 ETH for 1 YoshiCoin
address public owner = msg.sender; //Record the owner of the contract
uint256 public tokenAmount;
function name() constant returns (string) { return "YoshiCoin"; }
function symbol() constant returns (string) { return "YC"; }
function decimals() constant returns (uint8) { return 0; }
function mint(address receiver, uint amount) public {
tokenAmount = ((msg.value*rate)/(1 ether)); //calculate the amount of tokens to give
if (totalSupply > 371) { //Make sure that no more than 372 Yoshi Coins can be made.
revert();
}
if (balances[msg.sender] > 4) { //Make sure a buyer can't buy more than 5.
revert();
}
if (balances[msg.sender]+tokenAmount > 5) { //Make sure a buyer can't buy more than 5.
revert();
}
if (tokenAmount > 5) { //Make sure a buyer can't buy more than 5.
revert();
}
if ((tokenAmount+totalSupply) > 372) { //Make sure that no more than 372 Yoshi Coins can be made.
revert();
}
if (amount != ((msg.value*rate)/1 ether)) { //prevent minting tokens by calling this function directly.
revert();
}
if (msg.value <= 0) { //Extra precaution to contract attack
revert();
}
if (amount < 1) { //Extra precaution to contract attack
revert();
}
totalSupply = safeAdd(totalSupply, amount);
balances[receiver] = safeAdd(balances[receiver], amount);
// This will make the mint transaction apper in EtherScan.io
// We can remove this after there is a standardized minting event
Transfer(0, receiver, amount);
}
//This function is called when Ether is sent to the contract address
//Even if 0 ether is sent.
function () payable {
if (balances[msg.sender] > 4) { //Make sure a buyer can't buy more than 5.
revert();
}
if (totalSupply > 371) { //Make sure that no more than 372 Yoshi Coins can be made.
revert();
}
if (msg.value <= 0) { //If zero or less ether is sent, refund user.
revert();
}
tokenAmount = 0; //set the 'amount' var back to zero
tokenAmount = ((msg.value*rate)/(1 ether)); //calculate the amount of tokens to give
if (balances[msg.sender]+tokenAmount > 5) { //Make sure a buyer can't buy more than 5.
revert();
}
if (tokenAmount > 5) { //Make sure a buyer can't buy more than 5.
revert();
}
if (tokenAmount < 1) {
revert();
}
if ((tokenAmount+totalSupply) > 372) { //Make sure that no more than 372 Yoshi Coins can be made.
revert();
}
mint(msg.sender, tokenAmount);
tokenAmount = 0; //set the 'amount' var back to zero
owner.transfer(msg.value); //Send the ETH
}
}