47 lines
1.3 KiB
Solidity
47 lines
1.3 KiB
Solidity
pragma solidity ^0.5.0;
|
|
|
|
import "zos-lib/contracts/Initializable.sol";
|
|
import "../validation/TimedCrowdsale.sol";
|
|
import "../../math/SafeMath.sol";
|
|
|
|
/**
|
|
* @title PostDeliveryCrowdsale
|
|
* @dev Crowdsale that locks tokens from withdrawal until it ends.
|
|
*/
|
|
contract PostDeliveryCrowdsale is Initializable, TimedCrowdsale {
|
|
using SafeMath for uint256;
|
|
|
|
mapping(address => uint256) private _balances;
|
|
|
|
/**
|
|
* @dev Withdraw tokens only after crowdsale ends.
|
|
* @param beneficiary Whose tokens will be withdrawn.
|
|
*/
|
|
function withdrawTokens(address beneficiary) public {
|
|
require(hasClosed());
|
|
uint256 amount = _balances[beneficiary];
|
|
require(amount > 0);
|
|
_balances[beneficiary] = 0;
|
|
_deliverTokens(beneficiary, amount);
|
|
}
|
|
|
|
/**
|
|
* @return the balance of an account.
|
|
*/
|
|
function balanceOf(address account) public view returns (uint256) {
|
|
return _balances[account];
|
|
}
|
|
|
|
/**
|
|
* @dev Overrides parent by storing balances instead of issuing tokens right away.
|
|
* @param beneficiary Token purchaser
|
|
* @param tokenAmount Amount of tokens purchased
|
|
*/
|
|
function _processPurchase(address beneficiary, uint256 tokenAmount) internal {
|
|
_balances[beneficiary] = _balances[beneficiary].add(tokenAmount);
|
|
}
|
|
|
|
|
|
uint256[50] private ______gap;
|
|
}
|