Main pepole with huge ROI on cryptos are the ones who forgot about them. But this days its not so easy to forget, you may also get cold feet, get drunk and have odd ideas or so.
So few guys came out with a fun contract for ETH which will hold your funds till July 30, 2020
The contract address is 0x1bb28e79f2482df6bf60efc7a33365703bcf1536
and here is full source code of it
pragma solidity ^0.4.11;
contract hodlEthereum {
event Hodl(address indexed hodler, uint indexed amount);
event Party(address indexed hodler, uint indexed amount);
mapping (address => uint) public hodlers;
uint constant partyTime = 1596067200; // 30th July 2020
function() payable {
hodlers[msg.sender] += msg.value;
Hodl(msg.sender, msg.value);
}
function party() {
require (block.timestamp > partyTime && hodlers[msg.sender] > 0);
uint value = hodlers[msg.sender];
hodlers[msg.sender] = 0;
msg.sender.transfer(value);
Party(msg.sender, value);
}
}
Audit of code was made by few known ETH people
Want to try ? Visit https://hodlethereum.com/
Buen ROI seguid avanzando brothers (y)