-
Notifications
You must be signed in to change notification settings - Fork 0
/
FiveFeesToken.sol
609 lines (499 loc) · 19.5 KB
/
FiveFeesToken.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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
import './tools/SafeMath.sol';
import './tools/Address.sol';
import './tools/Ownable.sol';
import './tools/IUniswap.sol';
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 FiveFeesToken is Context, IERC20, Ownable {
using SafeMath for uint256;
using Address for address;
mapping (address => uint256) private _rOwned;
mapping (address => uint256) private _tOwned;
mapping (address => mapping (address => uint256)) private _allowances;
mapping (address => bool) private _isExcludedFromFee;
mapping (address => bool) private _isExcludedFromReward;
address[] private _excludedFromReward;
address BURN_ADDRESS = 0x0000000000000000000000000000000000000001;
address public _projectAddress;
address public _charityAddress;
address public _marketingAddress;
uint256 private constant MAX = ~uint256(0);
uint256 private _tTotal = 1000000000 * 10**18;
uint256 private _rTotal = (MAX - (MAX % _tTotal));
uint256 private _tHODLrRewardsTotal;
string private _name = "5 Fees";
string private _symbol = "FFT";
uint8 private _decimals = 18;
uint256 public _rewardFee = 1;
uint256 private _previousRewardFee = _rewardFee;
uint256 public _charityFee = 1;
uint256 private _previousCharityFee = _charityFee;
uint256 public _burnFee = 1;
uint256 private _previousBurnFee = _burnFee;
uint256 public _marketingFee = 1;
uint256 private _previousMarketingFee = _marketingFee;
uint256 public _projectFee = 3;
uint256 private _previousProjectFee = _projectFee;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
uint256 public _maxTxAmount = 1000000 * 10**18;
constructor ( address initialProjectAddress, address initialCharityAddress, address initialMarketingAddress ) {
require(
initialProjectAddress != address(0),
"Address should not be 0x00"
);
require(
initialMarketingAddress != address(0),
"Address should not be 0x00"
);
require(
initialCharityAddress != address(0),
"Address should not be 0x00"
);
_rOwned[_msgSender()] = _rTotal;
_projectAddress = initialProjectAddress;
_charityAddress = initialCharityAddress;
_marketingAddress = initialMarketingAddress;
//IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); // binance PANCAKE V2
//IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Ethereum mainnet, Ropsten, Rinkeby, Görli, and Kovan
IUniswapV2Router02 _uniswapV2Router =
IUniswapV2Router02(0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3); //TestNet BSC Pancake
// Create a uniswap pair for this new token
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
uniswapV2Router = _uniswapV2Router;
_isExcludedFromReward[address(this)] = true;
_isExcludedFromReward[BURN_ADDRESS] = true;
_isExcludedFromFee[owner()] = true;
_isExcludedFromFee[address(this)] = true;
_isExcludedFromFee[BURN_ADDRESS] = true;
_isExcludedFromFee[_charityAddress] = true;
_isExcludedFromFee[_marketingAddress] = true;
_isExcludedFromFee[_projectAddress] = true;
emit Transfer(address(0), _msgSender(), _tTotal);
}
function name() public view returns (string memory) {return _name;}
function symbol() public view returns (string memory) {return _symbol;}
function decimals() public view returns (uint8) {return _decimals;}
function totalSupply() public view override returns (uint256) {return _tTotal;}
function balanceOf(address account) public view override returns (uint256) {
if (_isExcludedFromReward[account]) return _tOwned[account];
return tokenFromReflection(_rOwned[account]);
}
function transfer(address recipient, uint256 amount) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(address owner, address spender) public view override returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
function totalHODLrRewards() public view returns (uint256) {
return _tHODLrRewardsTotal;
}
function totalBurned() public view returns (uint256) {
return balanceOf(BURN_ADDRESS);
}
function totalProject() public view returns (uint256) {
return balanceOf(_projectAddress);
}
function totalCharity() public view returns (uint256) {
return balanceOf(_charityAddress);
}
function totalMarketing() public view returns (uint256) {
return balanceOf(_marketingAddress);
}
function deliver(uint256 tAmount) public {
address sender = _msgSender();
require(!_isExcludedFromReward[sender], "Excluded addresses cannot call this function");
(uint256 rAmount,,,,,,,,) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rTotal = _rTotal.sub(rAmount);
_tHODLrRewardsTotal = _tHODLrRewardsTotal.add(tAmount);
}
function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
require(tAmount <= _tTotal, "Amount must be less than supply");
if (!deductTransferFee) {
(uint256 rAmount,,,,,,,,) = _getValues(tAmount);
return rAmount;
} else {
(,uint256 rTransferAmount,,,,,,,) = _getValues(tAmount);
return rTransferAmount;
}
}
function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
require(rAmount <= _rTotal, "Amount must be less than total reflections");
uint256 currentRate = _getRate();
return rAmount.div(currentRate);
}
function isExcludedFromReward(address account) public view returns (bool) {
return _isExcludedFromReward[account];
}
function excludeFromReward(address account) public onlyOwner {
require(!_isExcludedFromReward[account], "Account is already excluded");
if(_rOwned[account] > 0) {
_tOwned[account] = tokenFromReflection(_rOwned[account]);
}
_isExcludedFromReward[account] = true;
_excludedFromReward.push(account);
}
function includeInReward(address account) external onlyOwner {
require(_isExcludedFromReward[account], "Account is already excluded");
for (uint256 i = 0; i < _excludedFromReward.length; i++) {
if (_excludedFromReward[i] == account) {
_excludedFromReward[i] = _excludedFromReward[_excludedFromReward.length - 1];
_tOwned[account] = 0;
_isExcludedFromReward[account] = false;
_excludedFromReward.pop();
break;
}
}
}
function excludeFromFee(address account) public onlyOwner {
_isExcludedFromFee[account] = true;
}
function includeInFee(address account) public onlyOwner {
_isExcludedFromFee[account] = false;
}
function setRewardFeePercent(uint256 rewardFee) external onlyOwner {
_rewardFee = rewardFee;
}
function setBurnFeePercent(uint256 burnFee) external onlyOwner {
_burnFee = burnFee;
}
function setProjectFeePercent(uint256 projectFee) external onlyOwner {
_projectFee = projectFee;
}
function setMarketingFeePercent(uint256 marketingFee) external onlyOwner {
_marketingFee = marketingFee;
}
function setCharityFeePercent(uint256 charitytFee) external onlyOwner {
_charityFee = charitytFee;
}
function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
_maxTxAmount = _tTotal.mul(maxTxPercent).div(
10**2
);
}
receive() external payable {}
function _HODLrFee(uint256 rHODLrFee, uint256 tHODLrFee) private {
_rTotal = _rTotal.sub(rHODLrFee);
_tHODLrRewardsTotal = _tHODLrRewardsTotal.add(tHODLrFee);
}
function _getValues(uint256 tAmount)
private view returns (
uint256 rAmount,
uint256 rTransferAmount,
uint256 rReward,
uint256 tTransferAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing
)
{
( tTransferAmount, tReward, tProject, tCharity, tBurn, tMarketing
) = _getTValues(tAmount, tTransferAmount, tReward, tProject, tCharity, tBurn, tMarketing);
( rAmount, rTransferAmount, rReward, tReward
) = _getRValues(tAmount, tReward, tProject, tBurn, tCharity, tMarketing, _getRate());
return (
rAmount,
rTransferAmount,
rReward,
tTransferAmount,
tReward,
tProject,
tBurn,
tCharity,
tMarketing);
}
function _getTValues(
uint256 tAmount,
uint256 tTransferAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing
) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
tReward = calculateRewardFee(tAmount);
tProject = calculateProjectFee(tAmount);
tBurn = calculateBurnFee(tAmount);
tCharity = calculateCharityFee(tAmount);
tMarketing = calculateMarketingFee(tAmount);
tTransferAmount = tAmount.sub(tReward);
tTransferAmount = tTransferAmount.sub(tBurn);
tTransferAmount = tTransferAmount.sub(tCharity);
tTransferAmount = tTransferAmount.sub(tProject);
tTransferAmount = tTransferAmount.sub(tMarketing);
return (tTransferAmount, tReward, tProject, tCharity, tBurn, tMarketing);
}
function _getRValues(
uint256 tAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing,
uint256 currentRate
) private pure returns (
uint256 rAmount,
uint256 rTransferAmount,
uint256 rReward, uint256) {
rAmount = tAmount.mul(currentRate);
rReward = tReward.mul(currentRate);
rTransferAmount = rAmount.sub(rReward);
rTransferAmount = rTransferAmount.sub(tBurn.mul(currentRate));
rTransferAmount = rTransferAmount.sub(tCharity.mul(currentRate));
rTransferAmount = rTransferAmount.sub(tProject.mul(currentRate));
rTransferAmount = rTransferAmount.sub(tMarketing.mul(currentRate));
return (rAmount, rTransferAmount, rReward, tReward);
}
function _getRate() private view returns(uint256) {
(uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
return rSupply.div(tSupply);
}
function _getCurrentSupply() private view returns(uint256, uint256) {
uint256 rSupply = _rTotal;
uint256 tSupply = _tTotal;
for (uint256 i = 0; i < _excludedFromReward.length; i++) {
if (_rOwned[_excludedFromReward[i]] > rSupply || _tOwned[_excludedFromReward[i]] > tSupply)
return (_rTotal, _tTotal);
rSupply = rSupply.sub(_rOwned[_excludedFromReward[i]]);
tSupply = tSupply.sub(_tOwned[_excludedFromReward[i]]);
}
if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
return (rSupply, tSupply);
}
function calculateRewardFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_rewardFee).div(
10**2
);
}
function calculateBurnFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_burnFee).div(
10**2
);
}
function calculateCharityFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_charityFee).div(
10**2
);
}
function calculateMarketingFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_marketingFee).div(
10**2
);
}
function calculateProjectFee(uint256 _amount) private view returns (uint256) {
return _amount.mul(_projectFee).div(
10**2
);
}
function removeAllFee() private {
if(_rewardFee == 0 && _burnFee == 0 && _projectFee == 0 && _charityFee == 0 && _marketingFee == 0) return;
_previousRewardFee = _rewardFee;
_previousBurnFee = _burnFee;
_previousProjectFee = _projectFee;
_previousCharityFee = _charityFee;
_previousMarketingFee = _marketingFee;
_rewardFee = 0;
_burnFee = 0;
_projectFee = 0;
_charityFee = 0;
_marketingFee = 0;
}
function restoreAllFee() private {
_rewardFee = _previousRewardFee;
_burnFee = _previousBurnFee;
_projectFee = _previousProjectFee;
_charityFee = _previousCharityFee;
_marketingFee = _previousMarketingFee;
}
function isExcludedFromFee(address account) public view returns(bool) {
return _isExcludedFromFee[account];
}
function _approve(address owner, address spender, uint256 amount) private {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _transfer(
address from,
address to,
uint256 amount
) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
if(from != owner() && to != owner())
require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
bool takeFee = true;
if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){
takeFee = false;
}
_tokenTransfer(from,to,amount,takeFee);
}
function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
if(!takeFee)
removeAllFee();
if (_isExcludedFromReward[sender] && !_isExcludedFromReward[recipient]) {
_transferFromExcluded(sender, recipient, amount);
} else if (!_isExcludedFromReward[sender] && _isExcludedFromReward[recipient]) {
_transferToExcluded(sender, recipient, amount);
} else if (!_isExcludedFromReward[sender] && !_isExcludedFromReward[recipient]) {
_transferStandard(sender, recipient, amount);
} else if (_isExcludedFromReward[sender] && _isExcludedFromReward[recipient]) {
_transferBothExcluded(sender, recipient, amount);
} else {
_transferStandard(sender, recipient, amount);
}
if(!takeFee)
restoreAllFee();
}
function _transferBurn(address sender, uint256 tBurn) private {
uint256 currentRate = _getRate();
uint256 rBurn = tBurn.mul(currentRate);
_rOwned[BURN_ADDRESS] = _rOwned[BURN_ADDRESS].add(rBurn);
if(_isExcludedFromReward[BURN_ADDRESS])
_tOwned[BURN_ADDRESS] = _tOwned[BURN_ADDRESS].add(tBurn);
emit Transfer(sender, BURN_ADDRESS, tBurn);
}
function _transferProject(address sender, uint256 tProject) private {
uint256 currentRate = _getRate();
uint256 rProject = tProject.mul(currentRate);
_rOwned[_projectAddress] = _rOwned[_projectAddress].add(rProject);
if(_isExcludedFromReward[_projectAddress])
_tOwned[_projectAddress] = _tOwned[_projectAddress].add(tProject);
emit Transfer(sender, _projectAddress, tProject);
}
function _transferMarketing(address sender, uint256 tMarketing) private {
uint256 currentRate = _getRate();
uint256 rMarketing = tMarketing.mul(currentRate);
_rOwned[_marketingAddress] = _rOwned[_marketingAddress].add(rMarketing);
if(_isExcludedFromReward[_marketingAddress])
_tOwned[_marketingAddress] = _tOwned[_marketingAddress].add(tMarketing);
emit Transfer(sender, _marketingAddress, tMarketing);
}
function _transferCharity(address sender, uint256 tCharity) private {
uint256 currentRate = _getRate();
uint256 rCharity = tCharity.mul(currentRate);
_rOwned[_charityAddress] = _rOwned[_charityAddress].add(rCharity);
if(_isExcludedFromReward[_charityAddress])
_tOwned[_charityAddress] = _tOwned[_charityAddress].add(tCharity);
emit Transfer(sender, _charityAddress, tCharity);
}
function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
(
uint256 rAmount,
uint256 rTransferAmount,
uint256 rReward,
uint256 tTransferAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_transferBurn(sender, tBurn);
_transferProject(sender, tProject);
_transferCharity(sender, tCharity);
_transferMarketing(sender, tMarketing);
_HODLrFee(rReward, tReward);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
(
uint256 rAmount,
uint256 rTransferAmount,
uint256 rReward,
uint256 tTransferAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_transferBurn(sender, tBurn);
_transferProject(sender, tProject);
_transferCharity(sender, tCharity);
_transferMarketing(sender, tMarketing);
_HODLrFee(rReward, tReward);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferStandard(address sender, address recipient, uint256 tAmount)
private {
(
uint256 rAmount,
uint256 rTransferAmount,
uint256 rReward,
uint256 tTransferAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing) = _getValues(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_transferBurn(sender, tBurn);
_transferProject(sender, tProject);
_transferCharity(sender, tCharity);
_transferMarketing(sender, tMarketing);
_HODLrFee(rReward, tReward);
emit Transfer(sender, recipient, tTransferAmount);
}
function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
(
uint256 rAmount,
uint256 rTransferAmount,
uint256 rReward,
uint256 tTransferAmount,
uint256 tReward,
uint256 tProject,
uint256 tBurn,
uint256 tCharity,
uint256 tMarketing) = _getValues(tAmount);
_tOwned[sender] = _tOwned[sender].sub(tAmount);
_rOwned[sender] = _rOwned[sender].sub(rAmount);
_tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
_rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
_transferBurn(sender, tBurn);
_transferProject(sender, tProject);
_transferCharity(sender, tCharity);
_transferMarketing(sender, tMarketing);
_HODLrFee(rReward, tReward);
emit Transfer(sender, recipient, tTransferAmount);
}
}