-
Notifications
You must be signed in to change notification settings - Fork 14
/
AmisToken.sol
327 lines (275 loc) · 11.9 KB
/
AmisToken.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
pragma solidity ^0.4.8;
/**
* https://github.com/amisolution/ERC20-AMIS/AmisToken.sol
* Overflow aware uint math functions.
*
* Inspired by https://github.com/MakerDAO/maker-otc/blob/master/contracts/simple_market.sol
*/
contract SafeMath {
//internals
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || 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 assert(bool assertion) internal {
if (!assertion) throw;
}
}
/**
* ERC 20 token
*
* https://github.com/ethereum/EIPs/issues/20
*/
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance) {}
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) returns (bool success) {}
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
/// @param _from The address of the sender
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}
/// @notice `msg.sender` approves `_addr` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of wei to be approved for transfer
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) returns (bool success) {}
/// @param _owner The address of the account owning tokens
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
/**
* ERC 20 token
*
* https://github.com/ethereum/EIPs/issues/20
*/
contract StandardToken is Token {
/**
* Reviewed:
* - Interger overflow = OK, checked
*/
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];
}
mapping(address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
uint256 public totalSupply = 20000000000000000;
}
/**
* Amis crowdsale crowdsale contract.
*
* Security criteria evaluated against http://ethereum.stackexchange.com/questions/8551/methodological-security-review-of-a-smart-contract
*
*
*/
contract AmisToken is StandardToken, SafeMath {
string public name = "AMIS";
string public symbol = "AMIS";
uint public decimals = 3;
uint public startBlock = 3182017; // crowdsale start block (set in constructor)
uint public endBlock = 3661966; //crowdsale end block (set in constructor)
// Initial multisig address (set in constructor)
// All deposited ETH will be instantly forwarded to this address.
// Address is a multisig wallet.
address public multisig = 0xB585FC61C9590EE27Eb1d955ac3AdDC5d2a14B3a;
address public founder = 0xaefcD0F8a1cbD231CecAA9bfd9Ffb82a6eaaa462;
address public developer = 0x3D48587aA16D91a2e37198B5B428674bDADdf038;
address public rewards = 0x0;
bool public rewardAddressesSet = false;
address public owner = 0xaefcD0F8a1cbD231CecAA9bfd9Ffb82a6eaaa462;
bool public marketactive = false;
uint public etherCap = 6720 * 10**3; //max amount raised during crowdsale (6720ETH worth of ether will be measured with a moving average market price at beginning of the crowdsale)
uint public rewardsAllocation = 2; //2% tokens allocated post-crowdsale for swarm rewards
uint public developerAllocation = 6 ; //6% of token supply allocated post-crowdsale for the developer fund
uint public founderAllocation = 8; //8% of token supply allocated post-crowdsale for the founder allocation
bool public allocated = false; //this will change to true when the rewards are allocated
uint public presaleTokenSupply = 0; //this will keep track of the token supply created during the crowdsale
uint public presaleEtherRaised = 0; //this will keep track of the Ether raised during the crowdsale
bool public halted = false; //the founder address can set this to true to halt the crowdsale due to emergency
event Buy(address indexed sender, uint eth, uint fbt);
function AmisToken(address multisigInput, uint startBlockInput, uint endBlockInput) {
owner = msg.sender;
multisig = multisigInput;
startBlock = startBlockInput;
endBlock = endBlockInput;
// added for testing the AMIS->SIM conversion
balances[msg.sender] = 1000 * 1 ether;
}
function setRewardAddresses(address founderInput, address developerInput, address rewardsInput){
if (msg.sender != owner) throw;
if (rewardAddressesSet) throw;
founder = founderInput;
developer = developerInput;
rewards = rewardsInput;
rewardAddressesSet = true;
}
function price() constant returns(uint) {
return testPrice(block.number);
}
// price() exposed for unit tests
function testPrice(uint blockNumber) constant returns(uint) {
if (blockNumber>=startBlock && blockNumber<startBlock+250) return 125; //power hour
if (blockNumber<startBlock || blockNumber>endBlock) return 75; //default price
return 75 + 4*(endBlock - blockNumber)/(endBlock - startBlock + 1)*34/4; //crowdsale price
}
/**
* Main token buy function.
*
* Security review
*
* - Integer math: ok - using SafeMath
*
* - halt flag added - ok
*
* Applicable tests:
*
* - Test halting, buying, and failing
* - Test buying on behalf of a recipient
* - Test buy
* - Test unhalting, buying, and succeeding
* - Test buying after the sale ends
*
*/
function buyRecipient(address recipient) payable{
if (block.number<startBlock || block.number>endBlock || safeAdd(presaleEtherRaised,msg.value)>etherCap || halted) throw;
uint tokens = safeMul(msg.value, price());
balances[recipient] = safeAdd(balances[recipient], tokens);
totalSupply = safeAdd(totalSupply, tokens);
presaleEtherRaised = safeAdd(presaleEtherRaised, msg.value);
if (!multisig.send(msg.value)) throw; //immediately send Ether to multisig address
// if etherCap is reached - activate the market
if (presaleEtherRaised == etherCap && !marketactive){
marketactive = true;
}
Buy(recipient, msg.value, tokens);
}
/**
* Set up founder address token balance.
*
* allocateBountyAndEcosystemTokens() must be calld first.
*
* Security review
*
* - Integer math: ok - only called once with fixed parameters
*
* Applicable tests:
*
* - Test bounty and ecosystem allocation
* - Test bounty and ecosystem allocation twice
*
*/
function allocateTokens() {
// make sure founder/developer/rewards addresses are configured
if(founder == 0x0 || developer == 0x0 || rewards == 0x0) throw;
// owner/founder/developer/rewards addresses can call this function
if (msg.sender != owner && msg.sender != founder && msg.sender != developer && msg.sender != rewards ) throw;
// it should only continue if endBlock has passed OR presaleEtherRaised has reached the cap
if (block.number <= endBlock && presaleEtherRaised < etherCap) throw;
if (allocated) throw;
presaleTokenSupply = totalSupply;
// total token allocations add up to 16% of total coins, so formula is reward=allocation_in_percent/84 .
balances[founder] = safeAdd(balances[founder], presaleTokenSupply * founderAllocation / 84 );
totalSupply = safeAdd(totalSupply, presaleTokenSupply * founderAllocation / 84);
balances[developer] = safeAdd(balances[developer], presaleTokenSupply * developerAllocation / 84);
totalSupply = safeAdd(totalSupply, presaleTokenSupply * developerAllocation / 84);
balances[rewards] = safeAdd(balances[rewards], presaleTokenSupply * rewardsAllocation / 84);
totalSupply = safeAdd(totalSupply, presaleTokenSupply * rewardsAllocation / 84);
allocated = true;
}
/**
* Emergency Stop crowdsale.
*
* Applicable tests:
*
* - Test unhalting, buying, and succeeding
*/
function halt() {
if (msg.sender!=founder && msg.sender != developer) throw;
halted = true;
}
function unhalt() {
if (msg.sender!=founder && msg.sender != developer) throw;
halted = false;
}
/**
* ERC 20 Standard Token interface transfer function
*
* Prevent transfers until token sale is over.
*
* Applicable tests:
*
* - Test transfer after restricted period
* - Test transfer after market activated
*/
function transfer(address _to, uint256 _value) returns (bool success) {
if (block.number <= endBlock && marketactive == false) throw;
return super.transfer(_to, _value);
}
/**
* ERC 20 Standard Token interface transfer function
*
* Prevent transfers until token sale is over.
*/
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
if (block.number <= endBlock && marketactive == false) throw;
return super.transferFrom(_from, _to, _value);
}
/**
* Direct deposits buys tokens
*/
function() payable {
buyRecipient(msg.sender);
}
}