btw , how if min goal not reached ?
and how about unsold tokens ?
will be burned ?
Hi there. If min goal not reached, every investor can get eth back.
This is the part of contract code approve this
function refund() //allows get eth back if min goal not reached
{
if (total_raised >= goal || closed == false) revert();
var amount = funded[msg.sender];
if (amount > 0)
{
funded[msg.sender] = 0;
msg.sender.transfer(amount);
}
}
If min goal reached tokens will be unlocked and become transfarable. All unsold tokens go to the game balance, and after migration will gradually move to the ground. But this does not mean that gold will be faster or easier to extract.