-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpre-sale.sol
320 lines (249 loc) · 10.4 KB
/
pre-sale.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
pragma solidity ^0.8.4;
// SPDX-License-Identifier: Unlicensed
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return payable(msg.sender);
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
function owner() public view returns (address) {
return _owner;
}
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
abstract contract ReentrancyGuard {
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
contract Presale is ReentrancyGuard, Context, Ownable {
using SafeMath for uint256;
mapping (address => uint256) public _contributions;
IERC20 public _token;
uint256 private _tokenDecimals;
address payable public _wallet;
uint256 public _rate;
uint256 public _weiRaised;
uint256 public endICO;
uint public minPurchase;
uint public maxPurchase;
uint public hardCap;
uint public softCap;
uint public availableTokensICO;
bool public startRefund = false;
uint256 public refundStartDate;
event TokensPurchased(address purchaser, address beneficiary, uint256 value, uint256 amount);
event Refund(address recipient, uint256 amount);
constructor (uint256 rate, address payable wallet, IERC20 token, uint256 tokenDecimals) {
require(rate > 0, "Pre-Sale: rate is 0");
require(wallet != address(0), "Pre-Sale: wallet is the zero address");
require(address(token) != address(0), "Pre-Sale: token is the zero address");
_rate = rate;
_wallet = wallet;
_token = token;
_tokenDecimals = 18 - tokenDecimals;
}
receive () external payable {
if(endICO > 0 && block.timestamp < endICO){
buyTokens(_msgSender());
} else {
endICO = 0;
revert('Pre-Sale is closed');
}
}
//Start Pre-Sale
function startICO(uint endDate, uint _minPurchase, uint _maxPurchase, uint _softCap, uint _hardCap) external onlyOwner icoNotActive() {
startRefund = false;
refundStartDate = 0;
availableTokensICO = _token.balanceOf(address(this));
require(endDate > block.timestamp, 'duration should be > 0');
require(_softCap < _hardCap, "Softcap must be lower than Hardcap");
require(_minPurchase < _maxPurchase, "minPurchase must be lower than maxPurchase");
require(availableTokensICO > 0 , 'availableTokens must be > 0');
require(_minPurchase > 0, '_minPurchase should > 0');
endICO = endDate;
minPurchase = _minPurchase;
maxPurchase = _maxPurchase;
softCap = _softCap;
hardCap = _hardCap;
_weiRaised = 0;
}
function stopICO() external onlyOwner icoActive(){
endICO = 0;
if(_weiRaised >= softCap) {
_forwardFunds();
} else {
startRefund = true;
refundStartDate = block.timestamp;
}
}
//Pre-Sale
function buyTokens(address beneficiary) public nonReentrant icoActive payable {
uint256 weiAmount = msg.value;
_preValidatePurchase(beneficiary, weiAmount);
uint256 tokens = _getTokenAmount(weiAmount);
_weiRaised = _weiRaised.add(weiAmount);
availableTokensICO = availableTokensICO - tokens;
_contributions[beneficiary] = _contributions[beneficiary].add(weiAmount);
emit TokensPurchased(_msgSender(), beneficiary, weiAmount, tokens);
}
function _preValidatePurchase(address beneficiary, uint256 weiAmount) internal view {
require(beneficiary != address(0), "Crowdsale: beneficiary is the zero address");
require(weiAmount != 0, "Crowdsale: weiAmount is 0");
require(weiAmount >= minPurchase, 'have to send at least: minPurchase');
require(_contributions[beneficiary].add(weiAmount)<= maxPurchase, 'can\'t buy more than: maxPurchase');
require((_weiRaised+weiAmount) <= hardCap, 'Hard Cap reached');
this;
}
function claimTokens() external icoNotActive{
require(startRefund == false);
uint256 tokensAmt = _getTokenAmount(_contributions[msg.sender]);
_contributions[msg.sender] = 0;
_token.transfer(msg.sender, tokensAmt);
}
function _getTokenAmount(uint256 weiAmount) internal view returns (uint256) {
return weiAmount.mul(_rate).div(10**_tokenDecimals);
}
function _forwardFunds() internal {
_wallet.transfer(msg.value);
}
function withdraw() external onlyOwner icoNotActive{
require(startRefund == false || (refundStartDate + 3 days) < block.timestamp);
require(address(this).balance > 0, 'Contract has no money');
_wallet.transfer(address(this).balance);
}
function checkContribution(address addr) public view returns(uint256){
return _contributions[addr];
}
function setRate(uint256 newRate) external onlyOwner icoNotActive{
_rate = newRate;
}
function setAvailableTokens(uint256 amount) public onlyOwner icoNotActive{
availableTokensICO = amount;
}
function weiRaised() public view returns (uint256) {
return _weiRaised;
}
function setWalletReceiver(address payable newWallet) external onlyOwner(){
_wallet = newWallet;
}
function setHardCap(uint256 value) external onlyOwner{
hardCap = value;
}
function setSoftCap(uint256 value) external onlyOwner{
softCap = value;
}
function setMaxPurchase(uint256 value) external onlyOwner{
maxPurchase = value;
}
function setMinPurchase(uint256 value) external onlyOwner{
minPurchase = value;
}
function takeTokens(IERC20 tokenAddress) public onlyOwner icoNotActive{
IERC20 tokenBEP = tokenAddress;
uint256 tokenAmt = tokenBEP.balanceOf(address(this));
require(tokenAmt > 0, 'BEP-20 balance is 0');
tokenBEP.transfer(_wallet, tokenAmt);
}
function refundMe() public icoNotActive{
require(startRefund == true, 'no refund available');
uint amount = _contributions[msg.sender];
if (address(this).balance >= amount) {
_contributions[msg.sender] = 0;
if (amount > 0) {
address payable recipient = payable(msg.sender);
recipient.transfer(amount);
emit Refund(msg.sender, amount);
}
}
}
modifier icoActive() {
require(endICO > 0 && block.timestamp < endICO && availableTokensICO > 0, "ICO must be active");
_;
}
modifier icoNotActive() {
require(endICO < block.timestamp, 'ICO should not be active');
_;
}
}