You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.6 KiB
72 lines
1.6 KiB
pragma solidity ^0.4.24;
|
|
|
|
|
|
import "../../math/SafeMath.sol";
|
|
import "./FinalizableCrowdsale.sol";
|
|
import "../../payment/RefundEscrow.sol";
|
|
|
|
|
|
/**
|
|
* @title RefundableCrowdsale
|
|
* @dev Extension of Crowdsale contract that adds a funding goal, and
|
|
* the possibility of users getting a refund if goal is not met.
|
|
*/
|
|
contract RefundableCrowdsale is FinalizableCrowdsale {
|
|
using SafeMath for uint256;
|
|
|
|
// minimum amount of funds to be raised in weis
|
|
uint256 public goal;
|
|
|
|
// refund escrow used to hold funds while crowdsale is running
|
|
RefundEscrow private escrow_;
|
|
|
|
/**
|
|
* @dev Constructor, creates RefundEscrow.
|
|
* @param _goal Funding goal
|
|
*/
|
|
constructor(uint256 _goal) public {
|
|
require(_goal > 0);
|
|
escrow_ = new RefundEscrow(wallet);
|
|
goal = _goal;
|
|
}
|
|
|
|
/**
|
|
* @dev Investors can claim refunds here if crowdsale is unsuccessful
|
|
*/
|
|
function claimRefund() public {
|
|
require(isFinalized);
|
|
require(!goalReached());
|
|
|
|
escrow_.withdraw(msg.sender);
|
|
}
|
|
|
|
/**
|
|
* @dev Checks whether funding goal was reached.
|
|
* @return Whether funding goal was reached
|
|
*/
|
|
function goalReached() public view returns (bool) {
|
|
return weiRaised >= goal;
|
|
}
|
|
|
|
/**
|
|
* @dev escrow finalization task, called when owner calls finalize()
|
|
*/
|
|
function finalization() internal {
|
|
if (goalReached()) {
|
|
escrow_.close();
|
|
escrow_.beneficiaryWithdraw();
|
|
} else {
|
|
escrow_.enableRefunds();
|
|
}
|
|
|
|
super.finalization();
|
|
}
|
|
|
|
/**
|
|
* @dev Overrides Crowdsale fund forwarding, sending funds to escrow.
|
|
*/
|
|
function _forwardFunds() internal {
|
|
escrow_.deposit.value(msg.value)(msg.sender);
|
|
}
|
|
|
|
}
|
|
|