-
Notifications
You must be signed in to change notification settings - Fork 1
/
fund-yourself-now.sol
770 lines (644 loc) · 26.8 KB
/
fund-yourself-now.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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
pragma solidity ^0.4.11;
/*
This FYN token contract is derived from the vSlice ICO contract, based on the ERC20 token contract.
Additional functionality has been integrated:
* the function mintTokens() only callable from wallet, which makes use of the currentSwapRate() and safeToAdd() helpers
* the function mintReserve() only callable from wallet, which at the end of the crowdsale will allow the owners to claim the unsold tokens
* the function stopToken() only callable from wallet, which in an emergency, will trigger a complete and irrecoverable shutdown of the token
* Contract tokens are locked when created, and no tokens including pre-mine can be moved until the crowdsale is over.
*/
// ERC20 Token Standard Interface
// https://github.com/ethereum/EIPs/issues/20
contract ERC20 {
function totalSupply() constant returns (uint);
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 Token is ERC20 {
string public constant name = "FundYourselfNow Token";
string public constant symbol = "FYN";
uint8 public constant decimals = 18; // 18 is the most common number of decimal places
uint256 public tokenCap = 12500000e18; // 12.5 million FYN cap
address public walletAddress;
uint256 public creationTime;
bool public transferStop;
mapping( address => uint ) _balances;
mapping( address => mapping( address => uint ) ) _approvals;
uint _supply;
event TokenMint(address newTokenHolder, uint amountOfTokens);
event TokenSwapOver();
event EmergencyStopActivated();
modifier onlyFromWallet {
if (msg.sender != walletAddress) throw;
_;
}
// Check if transfer should stop
modifier checkTransferStop {
if (transferStop == true) throw;
_;
}
/**
*
* Fix for the ERC20 short address attack
*
* http://vessenes.com/the-erc20-short-address-attack-explained/
*/
modifier onlyPayloadSize(uint size) {
if (!(msg.data.length == size + 4)) throw;
_;
}
function Token( uint initial_balance, address wallet, uint256 crowdsaleTime) {
_balances[msg.sender] = initial_balance;
_supply = initial_balance;
walletAddress = wallet;
creationTime = crowdsaleTime;
transferStop = true;
}
function totalSupply() constant returns (uint supply) {
return _supply;
}
function balanceOf( address who ) constant returns (uint value) {
return _balances[who];
}
function allowance(address owner, address spender) constant returns (uint _allowance) {
return _approvals[owner][spender];
}
// A helper to notify if overflow occurs
function safeToAdd(uint a, uint b) private constant returns (bool) {
return (a + b >= a && a + b >= b);
}
// A helper to notify if overflow occurs for multiplication
function safeToMultiply(uint _a, uint _b) private constant returns (bool) {
return (_b == 0 || ((_a * _b) / _b) == _a);
}
// A helper to notify if underflow occurs for subtraction
function safeToSub(uint a, uint b) private constant returns (bool) {
return (a >= b);
}
function transfer( address to, uint value)
checkTransferStop
onlyPayloadSize(2 * 32)
returns (bool ok) {
if (to == walletAddress) throw; // Reject transfers to wallet (wallet cannot interact with token contract)
if( _balances[msg.sender] < value ) {
throw;
}
if( !safeToAdd(_balances[to], value) ) {
throw;
}
_balances[msg.sender] -= value;
_balances[to] += value;
Transfer( msg.sender, to, value );
return true;
}
function transferFrom( address from, address to, uint value)
checkTransferStop
returns (bool ok) {
if (to == walletAddress) throw; // Reject transfers to wallet (wallet cannot interact with token contract)
// if you don't have enough balance, throw
if( _balances[from] < value ) {
throw;
}
// if you don't have approval, throw
if( _approvals[from][msg.sender] < value ) {
throw;
}
if( !safeToAdd(_balances[to], value) ) {
throw;
}
// transfer and return true
_approvals[from][msg.sender] -= value;
_balances[from] -= value;
_balances[to] += value;
Transfer( from, to, value );
return true;
}
function approve(address spender, uint value)
checkTransferStop
returns (bool ok) {
// 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
//
// Note that this doesn't prevent attacks; the user will have to personally
// check to ensure that the token count has not changed, before issuing
// a new approval. Increment/decrement is not commonly spec-ed, and
// changing to a check-my-approvals-before-changing would require user
// to find out his current approval for spender and change expected
// behaviour for ERC20.
if ((value!=0) && (_approvals[msg.sender][spender] !=0)) throw;
_approvals[msg.sender][spender] = value;
Approval( msg.sender, spender, value );
return true;
}
// The function currentSwapRate() returns the current exchange rate
// between FYN tokens and Ether during the token swap period
function currentSwapRate() constant returns(uint) {
uint presalePeriod = 3 days;
uint presaleTransitionWindow = 3 hours;
if (creationTime + presalePeriod > now) { // 2017-06-10 11am GMT+8
return 140; // Presale Window is triggered by both time and "Start Token Swap / End Token Swap". Restricted to announement range and basic testing.
}
else if (creationTime + presalePeriod + 3 weeks > now) { // 2017-06-13 11am GMT+8, but we will only Start Token Swap at 2pm
return 120;
}
else if (creationTime + presalePeriod + 6 weeks + 6 days + 3 hours + presaleTransitionWindow + 1 days > now) { // 2017-07-31 5pm GMT+8 (+1 day window )
// 1 day buffer to allow one final transaction from anyone to close everything
// otherwise wallet will receive ether but send 0 tokens
// we cannot throw as we will lose the state change to start swappability of tokens
// This is actually just a price guide, actual closing is done at the Wallet level
return 100;
}
else {
return 0;
}
}
// The function mintTokens is only usable by the chosen wallet
// contract to mint a number of tokens proportional to the
// amount of ether sent to the wallet contract. The function
// can only be called during the tokenswap period
function mintTokens(address newTokenHolder, uint etherAmount)
external
onlyFromWallet {
if (!safeToMultiply(currentSwapRate(), etherAmount)) throw;
uint tokensAmount = currentSwapRate() * etherAmount;
if(!safeToAdd(_balances[newTokenHolder],tokensAmount )) throw;
if(!safeToAdd(_supply,tokensAmount)) throw;
if ((_supply + tokensAmount) > tokenCap) throw;
_balances[newTokenHolder] += tokensAmount;
_supply += tokensAmount;
TokenMint(newTokenHolder, tokensAmount);
}
function mintReserve(address beneficiary)
external
onlyFromWallet {
if (tokenCap <= _supply) throw;
if(!safeToSub(tokenCap,_supply)) throw;
uint tokensAmount = tokenCap - _supply;
if(!safeToAdd(_balances[beneficiary], tokensAmount )) throw;
if(!safeToAdd(_supply,tokensAmount)) throw;
_balances[beneficiary] += tokensAmount;
_supply += tokensAmount;
TokenMint(beneficiary, tokensAmount);
}
// The function disableTokenSwapLock() is called by the wallet
// contract once the token swap has reached its end conditions
function disableTokenSwapLock()
external
onlyFromWallet {
transferStop = false;
TokenSwapOver();
}
// Once activated, a new token contract will need to be created, mirroring the current token holdings.
function stopToken() onlyFromWallet {
transferStop = true;
EmergencyStopActivated();
}
}
/*
The standard Wallet contract, retrievable at
https://github.com/ethereum/dapp-bin/blob/master/wallet/wallet.sol has been
modified to include additional functionality, in particular:
* An additional parent of wallet contract called tokenswap, implementing almost
all the changes:
- Functions for starting and stopping the tokenswap
- A set-only-once function for the token contract
- buyTokens(), which calls mintTokens() in the token contract
- Modifiers for enforcing tokenswap time limits, max ether cap, and max token cap
- withdrawEther(), for withdrawing unsold tokens after time cap
* the wallet fallback function calls the buyTokens function
* the wallet contract cannot selfdestruct during the tokenswap
*/
contract multiowned {
// TYPES
// struct for the status of a pending operation.
struct PendingState {
uint yetNeeded;
uint ownersDone;
uint index;
}
// EVENTS
// this contract only has six types of events: it can accept a confirmation, in which case
// we record owner and operation (hash) alongside it.
event Confirmation(address owner, bytes32 operation);
event Revoke(address owner, bytes32 operation);
// some others are in the case of an owner changing.
event OwnerChanged(address oldOwner, address newOwner);
event OwnerAdded(address newOwner);
event OwnerRemoved(address oldOwner);
// the last one is emitted if the required signatures change
event RequirementChanged(uint newRequirement);
// MODIFIERS
// simple single-sig function modifier.
modifier onlyowner {
if (isOwner(msg.sender))
_;
}
// multi-sig function modifier: the operation must have an intrinsic hash in order
// that later attempts can be realised as the same underlying operation and
// thus count as confirmations.
modifier onlymanyowners(bytes32 _operation) {
if (confirmAndCheck(_operation))
_;
}
// METHODS
// constructor is given number of sigs required to do protected "onlymanyowners" transactions
// as well as the selection of addresses capable of confirming them.
function multiowned(address[] _owners, uint _required) {
m_numOwners = _owners.length + 1;
m_owners[1] = uint(msg.sender);
m_ownerIndex[uint(msg.sender)] = 1;
for (uint i = 0; i < _owners.length; ++i)
{
m_owners[2 + i] = uint(_owners[i]);
m_ownerIndex[uint(_owners[i])] = 2 + i;
}
m_required = _required;
}
// Revokes a prior confirmation of the given operation
function revoke(bytes32 _operation) external {
uint ownerIndex = m_ownerIndex[uint(msg.sender)];
// make sure they're an owner
if (ownerIndex == 0) return;
uint ownerIndexBit = 2**ownerIndex;
var pending = m_pending[_operation];
if (pending.ownersDone & ownerIndexBit > 0) {
pending.yetNeeded++;
pending.ownersDone -= ownerIndexBit;
Revoke(msg.sender, _operation);
}
}
// Replaces an owner `_from` with another `_to`.
function changeOwner(address _from, address _to) onlymanyowners(sha3(msg.data)) external {
if (isOwner(_to)) return;
uint ownerIndex = m_ownerIndex[uint(_from)];
if (ownerIndex == 0) return;
clearPending();
m_owners[ownerIndex] = uint(_to);
m_ownerIndex[uint(_from)] = 0;
m_ownerIndex[uint(_to)] = ownerIndex;
OwnerChanged(_from, _to);
}
function addOwner(address _owner) onlymanyowners(sha3(msg.data)) external {
if (isOwner(_owner)) return;
clearPending();
if (m_numOwners >= c_maxOwners)
reorganizeOwners();
if (m_numOwners >= c_maxOwners)
return;
m_numOwners++;
m_owners[m_numOwners] = uint(_owner);
m_ownerIndex[uint(_owner)] = m_numOwners;
OwnerAdded(_owner);
}
function removeOwner(address _owner) onlymanyowners(sha3(msg.data)) external {
uint ownerIndex = m_ownerIndex[uint(_owner)];
if (ownerIndex == 0) return;
if (m_required > m_numOwners - 1) return;
m_owners[ownerIndex] = 0;
m_ownerIndex[uint(_owner)] = 0;
clearPending();
reorganizeOwners(); //make sure m_numOwner is equal to the number of owners and always points to the optimal free slot
OwnerRemoved(_owner);
}
function changeRequirement(uint _newRequired) onlymanyowners(sha3(msg.data)) external {
if (_newRequired > m_numOwners) return;
m_required = _newRequired;
clearPending();
RequirementChanged(_newRequired);
}
// Gets an owner by 0-indexed position (using numOwners as the count)
function getOwner(uint ownerIndex) external constant returns (address) {
return address(m_owners[ownerIndex + 1]);
}
function isOwner(address _addr) returns (bool) {
return m_ownerIndex[uint(_addr)] > 0;
}
function hasConfirmed(bytes32 _operation, address _owner) constant returns (bool) {
var pending = m_pending[_operation];
uint ownerIndex = m_ownerIndex[uint(_owner)];
// make sure they're an owner
if (ownerIndex == 0) return false;
// determine the bit to set for this owner.
uint ownerIndexBit = 2**ownerIndex;
return !(pending.ownersDone & ownerIndexBit == 0);
}
// INTERNAL METHODS
function confirmAndCheck(bytes32 _operation) internal returns (bool) {
// determine what index the present sender is:
uint ownerIndex = m_ownerIndex[uint(msg.sender)];
// make sure they're an owner
if (ownerIndex == 0) return;
var pending = m_pending[_operation];
// if we're not yet working on this operation, switch over and reset the confirmation status.
if (pending.yetNeeded == 0) {
// reset count of confirmations needed.
pending.yetNeeded = m_required;
// reset which owners have confirmed (none) - set our bitmap to 0.
pending.ownersDone = 0;
pending.index = m_pendingIndex.length++;
m_pendingIndex[pending.index] = _operation;
}
// determine the bit to set for this owner.
uint ownerIndexBit = 2**ownerIndex;
// make sure we (the message sender) haven't confirmed this operation previously.
if (pending.ownersDone & ownerIndexBit == 0) {
Confirmation(msg.sender, _operation);
// ok - check if count is enough to go ahead.
if (pending.yetNeeded <= 1) {
// enough confirmations: reset and run interior.
delete m_pendingIndex[m_pending[_operation].index];
delete m_pending[_operation];
return true;
}
else
{
// not enough: record that this owner in particular confirmed.
pending.yetNeeded--;
pending.ownersDone |= ownerIndexBit;
}
}
}
function reorganizeOwners() private {
uint free = 1;
while (free < m_numOwners)
{
while (free < m_numOwners && m_owners[free] != 0) free++;
while (m_numOwners > 1 && m_owners[m_numOwners] == 0) m_numOwners--;
if (free < m_numOwners && m_owners[m_numOwners] != 0 && m_owners[free] == 0)
{
m_owners[free] = m_owners[m_numOwners];
m_ownerIndex[m_owners[free]] = free;
m_owners[m_numOwners] = 0;
}
}
}
function clearPending() internal {
uint length = m_pendingIndex.length;
for (uint i = 0; i < length; ++i)
if (m_pendingIndex[i] != 0)
delete m_pending[m_pendingIndex[i]];
delete m_pendingIndex;
}
// FIELDS
// the number of owners that must confirm the same operation before it is run.
uint public m_required;
// pointer used to find a free slot in m_owners
uint public m_numOwners;
// list of owners
uint[256] m_owners;
uint constant c_maxOwners = 250;
// index on the list of owners to allow reverse lookup
mapping(uint => uint) m_ownerIndex;
// the ongoing operations.
mapping(bytes32 => PendingState) m_pending;
bytes32[] m_pendingIndex;
}
// inheritable "property" contract that enables methods to be protected by placing a linear limit (specifiable)
// on a particular resource per calendar day. is multiowned to allow the limit to be altered. resource that method
// uses is specified in the modifier.
contract daylimit is multiowned {
// MODIFIERS
// simple modifier for daily limit.
modifier limitedDaily(uint _value) {
if (underLimit(_value))
_;
}
// METHODS
// constructor - stores initial daily limit and records the present day's index.
function daylimit(uint _limit) {
m_dailyLimit = _limit;
m_lastDay = today();
}
// (re)sets the daily limit. needs many of the owners to confirm. doesn't alter the amount already spent today.
function setDailyLimit(uint _newLimit) onlymanyowners(sha3(msg.data)) external {
m_dailyLimit = _newLimit;
}
// resets the amount already spent today. needs many of the owners to confirm.
function resetSpentToday() onlymanyowners(sha3(msg.data)) external {
m_spentToday = 0;
}
// INTERNAL METHODS
// checks to see if there is at least `_value` left from the daily limit today. if there is, subtracts it and
// returns true. otherwise just returns false.
function underLimit(uint _value) internal onlyowner returns (bool) {
// reset the spend limit if we're on a different day to last time.
if (today() > m_lastDay) {
m_spentToday = 0;
m_lastDay = today();
}
// check if it's sending nothing (with or without data). This needs Multitransact
if (_value == 0) return false;
// check to see if there's enough left - if so, subtract and return true.
// overflow protection // dailyLimit check
if (m_spentToday + _value >= m_spentToday && m_spentToday + _value <= m_dailyLimit) {
m_spentToday += _value;
return true;
}
return false;
}
// determines today's index.
function today() private constant returns (uint) { return now / 1 days; }
// FIELDS
uint public m_dailyLimit;
uint public m_spentToday;
uint public m_lastDay;
}
// interface contract for multisig proxy contracts; see below for docs.
contract multisig {
// EVENTS
// logged events:
// Funds has arrived into the wallet (record how much).
event Deposit(address _from, uint value);
// Single transaction going out of the wallet (record who signed for it, how much, and to whom it's going).
event SingleTransact(address owner, uint value, address to, bytes data);
// Multi-sig transaction going out of the wallet (record who signed for it last, the operation hash, how much, and to whom it's going).
event MultiTransact(address owner, bytes32 operation, uint value, address to, bytes data);
// Confirmation still needed for a transaction.
event ConfirmationNeeded(bytes32 operation, address initiator, uint value, address to, bytes data);
// FUNCTIONS
// TODO: document
function changeOwner(address _from, address _to) external;
function execute(address _to, uint _value, bytes _data) external returns (bytes32);
function confirm(bytes32 _h) returns (bool);
}
contract tokenswap is multisig, multiowned {
Token public tokenCtr;
bool public tokenSwap;
uint public constant PRESALE_LENGTH = 3 days;
uint public constant TRANSITION_WINDOW = 3 hours; // We will turn on tokenSwap in this period and it will 120 FYN / ETH
uint public constant SWAP_LENGTH = PRESALE_LENGTH + TRANSITION_WINDOW + 6 weeks + 6 days + 3 hours;
uint public constant MAX_ETH = 75000 ether; // Hard cap, capped otherwise by total tokens sold (max 7.5M FYN)
uint public amountRaised;
modifier isUnderPresaleMinimum {
if (tokenCtr.creationTime() + PRESALE_LENGTH > now) {
if (msg.value < 20 ether) throw;
}
_;
}
modifier isZeroValue {
if (msg.value == 0) throw;
_;
}
modifier isOverCap {
if (amountRaised + msg.value > MAX_ETH) throw;
_;
}
modifier isOverTokenCap {
if (!safeToMultiply(tokenCtr.currentSwapRate(), msg.value)) throw;
uint tokensAmount = tokenCtr.currentSwapRate() * msg.value;
if(!safeToAdd(tokenCtr.totalSupply(),tokensAmount)) throw;
if (tokenCtr.totalSupply() + tokensAmount > tokenCtr.tokenCap()) throw;
_;
}
modifier isSwapStopped {
if (!tokenSwap) throw;
_;
}
modifier areConditionsSatisfied {
_;
// End token swap if sale period ended
// We can't throw to reverse the amount sent in or we will lose state
// , so we will accept it even though if it is after crowdsale
if (tokenCtr.creationTime() + SWAP_LENGTH < now) {
tokenCtr.disableTokenSwapLock();
tokenSwap = false;
}
// Check if cap has been reached in this tx
if (amountRaised == MAX_ETH) {
tokenCtr.disableTokenSwapLock();
tokenSwap = false;
}
// Check if token cap has been reach in this tx
if (tokenCtr.totalSupply() == tokenCtr.tokenCap()) {
tokenCtr.disableTokenSwapLock();
tokenSwap = false;
}
}
// A helper to notify if overflow occurs for addition
function safeToAdd(uint a, uint b) private constant returns (bool) {
return (a + b >= a && a + b >= b);
}
// A helper to notify if overflow occurs for multiplication
function safeToMultiply(uint _a, uint _b) private constant returns (bool) {
return (_b == 0 || ((_a * _b) / _b) == _a);
}
function startTokenSwap() onlyowner {
tokenSwap = true;
}
function stopTokenSwap() onlyowner {
tokenSwap = false;
}
function setTokenContract(address newTokenContractAddr) onlyowner {
if (newTokenContractAddr == address(0x0)) throw;
// Allow setting only once
if (tokenCtr != address(0x0)) throw;
tokenCtr = Token(newTokenContractAddr);
}
function buyTokens(address _beneficiary)
payable
isUnderPresaleMinimum
isZeroValue
isOverCap
isOverTokenCap
isSwapStopped
areConditionsSatisfied {
Deposit(msg.sender, msg.value);
tokenCtr.mintTokens(_beneficiary, msg.value);
if (!safeToAdd(amountRaised, msg.value)) throw;
amountRaised += msg.value;
}
function withdrawReserve(address _beneficiary) onlyowner {
if (tokenCtr.creationTime() + SWAP_LENGTH < now) {
tokenCtr.mintReserve(_beneficiary);
}
}
}
// usage:
// bytes32 h = Wallet(w).from(oneOwner).transact(to, value, data);
// Wallet(w).from(anotherOwner).confirm(h);
contract Wallet is multisig, multiowned, daylimit, tokenswap {
// TYPES
// Transaction structure to remember details of transaction lest it need be saved for a later call.
struct Transaction {
address to;
uint value;
bytes data;
}
// METHODS
// constructor - just pass on the owner array to the multiowned and
// the limit to daylimit
function Wallet(address[] _owners, uint _required, uint _daylimit)
multiowned(_owners, _required) daylimit(_daylimit) {
}
// kills the contract sending everything to `_to`.
function kill(address _to) onlymanyowners(sha3(msg.data)) external {
// ensure owners can't prematurely stop token sale
if (tokenSwap) throw;
// ensure owners can't kill wallet without stopping token
// otherwise token can never be stopped
if (tokenCtr.transferStop() == false) throw;
suicide(_to);
}
// Activates Emergency Stop for Token
function stopToken() onlymanyowners(sha3(msg.data)) external {
tokenCtr.stopToken();
}
// gets called when no other function matches
function()
payable {
buyTokens(msg.sender);
}
// Outside-visible transact entry point. Executes transaction immediately if below daily spend limit.
// If not, goes into multisig process. We provide a hash on return to allow the sender to provide
// shortcuts for the other confirmations (allowing them to avoid replicating the _to, _value
// and _data arguments). They still get the option of using them if they want, anyways.
function execute(address _to, uint _value, bytes _data) external onlyowner returns (bytes32 _r) {
// Disallow the wallet contract from calling token contract once it's set
// so tokens can't be minted arbitrarily once the sale starts.
// Tokens can be minted for premine before the sale opens and tokenCtr is set.
if (_to == address(tokenCtr)) throw;
// first, take the opportunity to check that we're under the daily limit.
if (underLimit(_value)) {
SingleTransact(msg.sender, _value, _to, _data);
// yes - just execute the call.
if(!_to.call.value(_value)(_data))
return 0;
}
// determine our operation hash.
_r = sha3(msg.data, block.number);
if (!confirm(_r) && m_txs[_r].to == 0) {
m_txs[_r].to = _to;
m_txs[_r].value = _value;
m_txs[_r].data = _data;
ConfirmationNeeded(_r, msg.sender, _value, _to, _data);
}
}
// confirm a transaction through just the hash. we use the previous transactions map, m_txs, in order
// to determine the body of the transaction from the hash provided.
function confirm(bytes32 _h) onlymanyowners(_h) returns (bool) {
if (m_txs[_h].to != 0) {
if (!m_txs[_h].to.call.value(m_txs[_h].value)(m_txs[_h].data)) // Bugfix: If successful, MultiTransact event should fire; if unsuccessful, we should throw
throw;
MultiTransact(msg.sender, _h, m_txs[_h].value, m_txs[_h].to, m_txs[_h].data);
delete m_txs[_h];
return true;
}
}
// INTERNAL METHODS
function clearPending() internal {
uint length = m_pendingIndex.length;
for (uint i = 0; i < length; ++i)
delete m_txs[m_pendingIndex[i]];
super.clearPending();
}
// FIELDS
// pending transactions we have at present.
mapping (bytes32 => Transaction) m_txs;
}