forked from blockchainsllc/DAO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DAOTokenCreationProxyTransferer.sol
63 lines (50 loc) · 2.07 KB
/
DAOTokenCreationProxyTransferer.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
/*
This file is part of the DAO.
The DAO is free software: you can redistribute it and/or modify
it under the terms of the GNU lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The DAO is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU lesser General Public License for more details.
You should have received a copy of the GNU lesser General Public License
along with the DAO. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* By default, token creation can be executed on behalf of another address using
* the TokenCreation.sol createTokenProxy() function This contract is used as a
* fall back in case an exchange doesn't implement the "add data to a
* transaction" feature in a timely manner, preventing it from calling
* createTokenProxy(). Calling this contract automatically triggers a call to
* createTokenProxy() using the correct parameters for a given participant in
* the token creation. A unique instance of such a contract would have to be
* deployed per participant, usually using a middleware layer on a webserver,
* for example.
*/
import "./TokenCreation.sol";
contract DAOTokenCreationProxyTransferer {
address public owner;
address public dao;
//constructor
function DAOTokenCreationProxyTransferer(address _owner, address _dao) {
owner = _owner;
dao = _dao;
// just in case somebody already added values to this address,
// we will forward it right now.
sendValues();
}
// default-function called when values are sent.
function () {
sendValues();
}
function sendValues() {
if (this.balance == 0)
return;
TokenCreationInterface fueling = TokenCreationInterface(dao);
if (now > fueling.closingTime() ||
!fueling.createTokenProxy.value(this.balance)(owner)) {
owner.send(this.balance);
}
}
}