-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy path0xe26517a9967299453d3f1b48aa005e6127e67210-NIMFA-NIMFA_Token.sol
410 lines (311 loc) · 11.5 KB
/
0xe26517a9967299453d3f1b48aa005e6127e67210-NIMFA-NIMFA_Token.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
pragma solidity ^0.4.11;
/**
* Math operations with safety checks
*/
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint a, uint b) internal returns (uint) {
// assert(b > 0); // Solidity automatically throws when dividing by 0
uint c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function sub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function add(uint a, uint b) internal returns (uint) {
uint c = a + b;
assert(c >= a);
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;
}
}
}
/////////////////////////////////////////////////////////////////////////////
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20Basic {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function transfer(address to, uint value);
event Transfer(address indexed from, address indexed to, uint value);
}
////////////////////////////////////////////////
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address owner, address spender) constant returns (uint);
function transferFrom(address from, address to, uint value);
function approve(address spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
///////////////////////////////////////////////
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint;
mapping(address => uint) balances;
/**
* @dev Fix for the ERC20 short address attack.
*/
modifier onlyPayloadSize(uint size) {
if(msg.data.length < size + 4) {
throw;
}
_;
}
/**
* @dev transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint _value) onlyPayloadSize(2 * 32) {
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
Transfer(msg.sender, _to, _value);
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint representing the amount owned by the passed address.
*/
function balanceOf(address _owner) constant returns (uint balance) {
return balances[_owner];
}
}
////////////////////////////////////////////////
/**
* @title Standard ERC20 token
*
* @dev Implemantation of the basic standart token.
* @dev https://github.com/ethereum/EIPs/issues/20
* @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is BasicToken, ERC20 {
mapping (address => mapping (address => uint)) allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint the amout of tokens to be transfered
*/
function transferFrom(address _from, address _to, uint _value) onlyPayloadSize(3 * 32) {
var _allowance = allowed[_from][msg.sender];
// Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
// if (_value > _allowance) throw;
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
allowed[_from][msg.sender] = _allowance.sub(_value);
Transfer(_from, _to, _value);
}
/**
* @dev Aprove the passed address to spend the specified amount of tokens on beahlf of msg.sender.
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint _value) {
// 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);
}
/**
* @dev Function to check the amount of tokens than an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint specifing the amount of tokens still avaible for the spender.
*/
function allowance(address _owner, address _spender) constant returns (uint remaining) {
return allowed[_owner][_spender];
}
}
///////////////////////////////////////////////////////////////////////////////////////////////////
contract NIMFAToken is StandardToken {
using SafeMath for uint256;
event CreatedNIMFA(address indexed _creator, uint256 _amountOfNIMFA);
// Token data
string public constant name = "NIMFA Token";
string public constant symbol = "NIMFA";
uint256 public constant decimals = 18;
string public version = "1.0";
// Addresses and contracts
address public executor;
address public teamETHAddress;
address public teamNIMFAAddress;
address public creditFundNIMFAAddress;
address public reserveNIMFAAddress;
bool public preSaleHasEnded;
bool public saleHasEnded;
bool public allowTransfer;
bool public maxPreSale; // 1000000 NIMFA for pre sale price
mapping (address => uint256) public ETHContributed;
uint256 public totalETH;
uint256 public preSaleStartBlock;
uint256 public preSaleEndBlock;
uint256 public saleStartBlock;
uint256 public saleEndBlock;
uint256 public constant NIMFA_PER_ETH_PRE_SALE = 1100; // 1100 NIMFA = 1 ETH
uint256 public constant NIMFA_PER_ETH_SALE = 110; // 110 NIMFA = 1 ETH
function NIMFAToken(
address _teamETHAddress,
address _teamNIMFAAddress,
address _creditFundNIMFAAddress,
address _reserveNIMFAAddress,
uint256 _preSaleStartBlock,
uint256 _preSaleEndBlock
) {
if (_teamETHAddress == address(0x0)) throw;
if (_teamNIMFAAddress == address(0x0)) throw;
if (_creditFundNIMFAAddress == address(0x0)) throw;
if (_reserveNIMFAAddress == address(0x0)) throw;
// Reject if sale ends before the current block
if (_preSaleEndBlock <= block.number) throw;
// Reject if the sale end time is less than the sale start time
if (_preSaleEndBlock <= _preSaleStartBlock) throw;
executor = msg.sender;
preSaleHasEnded = false;
saleHasEnded = false;
allowTransfer = false;
maxPreSale = false;
teamETHAddress = _teamETHAddress;
teamNIMFAAddress = _teamNIMFAAddress;
creditFundNIMFAAddress = _creditFundNIMFAAddress;
reserveNIMFAAddress = _reserveNIMFAAddress;
totalETH = 0;
preSaleStartBlock = _preSaleStartBlock;
preSaleEndBlock = _preSaleEndBlock;
saleStartBlock = _preSaleStartBlock;
saleEndBlock = _preSaleEndBlock;
totalSupply = 0;
}
function investment() payable external {
// If preSale/Sale is not active, do not create NIMFA
if (preSaleHasEnded && saleHasEnded) throw;
if (!preSaleHasEnded) {
if (block.number < preSaleStartBlock) throw;
if (block.number > preSaleEndBlock) throw;
}
if (block.number < saleStartBlock) throw;
if (block.number > saleEndBlock) throw;
uint256 newEtherBalance = totalETH.add(msg.value);
// Do not do anything if the amount of ether sent is 0
if (0 == msg.value) throw;
// Calculate the amount of NIMFA being purchased
uint256 amountOfNIMFA = msg.value.mul(NIMFA_PER_ETH_PRE_SALE);
if (preSaleHasEnded || maxPreSale) amountOfNIMFA = msg.value.mul(NIMFA_PER_ETH_SALE);
if (100000 ether < amountOfNIMFA) throw;
// Ensure that the transaction is safe
uint256 totalSupplySafe = totalSupply.add(amountOfNIMFA);
uint256 balanceSafe = balances[msg.sender].add(amountOfNIMFA);
uint256 contributedSafe = ETHContributed[msg.sender].add(msg.value);
// Update balances
totalSupply = totalSupplySafe;
if (totalSupply > 2000000 ether) maxPreSale = true;
balances[msg.sender] = balanceSafe;
totalETH = newEtherBalance;
ETHContributed[msg.sender] = contributedSafe;
if (!preSaleHasEnded) teamETHAddress.transfer(msg.value);
CreatedNIMFA(msg.sender, amountOfNIMFA);
}
function endPreSale() {
// Do not end an already ended sale
if (preSaleHasEnded) throw;
// Only allow the owner
if (msg.sender != executor) throw;
preSaleHasEnded = true;
}
function endSale() {
if (!preSaleHasEnded) throw;
// Do not end an already ended sale
if (saleHasEnded) throw;
// Only allow the owner
if (msg.sender != executor) throw;
saleHasEnded = true;
uint256 EtherAmount = this.balance;
teamETHAddress.transfer(EtherAmount);
uint256 creditFund = totalSupply.mul(3);
uint256 reserveNIMFA = totalSupply.div(2);
uint256 teamNIMFA = totalSupply.div(2);
uint256 totalSupplySafe = totalSupply.add(creditFund).add(reserveNIMFA).add(teamNIMFA);
totalSupply = totalSupplySafe;
balances[creditFundNIMFAAddress] = creditFund;
balances[reserveNIMFAAddress] = reserveNIMFA;
balances[teamNIMFAAddress] = teamNIMFA;
CreatedNIMFA(creditFundNIMFAAddress, creditFund);
CreatedNIMFA(reserveNIMFAAddress, reserveNIMFA);
CreatedNIMFA(teamNIMFAAddress, teamNIMFA);
}
function changeTeamETHAddress(address _newAddress) {
if (msg.sender != executor) throw;
teamETHAddress = _newAddress;
}
function changeTeamNIMFAAddress(address _newAddress) {
if (msg.sender != executor) throw;
teamNIMFAAddress = _newAddress;
}
function changeCreditFundNIMFAAddress(address _newAddress) {
if (msg.sender != executor) throw;
creditFundNIMFAAddress = _newAddress;
}
/*
* Allow transfer only after sales
*/
function changeAllowTransfer() {
if (msg.sender != executor) throw;
allowTransfer = true;
}
/*
*
*/
function changeSaleStartBlock(uint256 _saleStartBlock) {
if (msg.sender != executor) throw;
saleStartBlock = _saleStartBlock;
}
/*
*
*/
function changeSaleEndBlock(uint256 _saleEndBlock) {
if (msg.sender != executor) throw;
saleEndBlock = _saleEndBlock;
}
function transfer(address _to, uint _value) {
// Cannot transfer unless the minimum cap is hit
if (!allowTransfer) throw;
super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint _value) {
// Cannot transfer unless the minimum cap is hit
if (!allowTransfer) throw;
super.transferFrom(_from, _to, _value);
}
}