SafePlus Token Logo

SPLUS [SafePlus] Token

About SPLUS

Listings

Token 2 years
white paper

What is SafePlus?

SafePlus Token is the first token that gives you 6 different forms of passive income

Presale ENDED on 2021-11-25 in 9 MINUTES!!

LAUNCHED AT 20:15UTC ON 2021-11-26

STAY TUNED ON THE INTERNATIONAL GROUP!!

1. Reflections in BUSD

2. Reflections in SAFEMOON

3. ""Native"" reflections by SAFEMOON

4. Staking SAFEPLUS

5. Staking BUSD

6. PLUS ACADEMY

Our smart contract exclude 61,3% of the supply from reflections thus redistributing more tokens to the holders

Tokenomics

1% marketing/development

2% buyback

2% liquidity pool

1% green moon

9% reflections : 4% in BUSD / 5% in Safemoon

Website:

https://safeplustoken.com/

Telegram:

https://t.me/safeplusinternational

TOTAL SUPPLY, YOU WILL FIND DOWN HERE, IS "" 1Quadrillion - 30% ""

Laser Scorebeta Last Audit: 7 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

SafePlus.addLiquidity(uint256,uint256) (#1142-1156) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1097)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#451)
- _balances[recipient] = _balances[recipient].add(amount) (#452)
- super._transfer(from,to,amount) (#1100)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#451)
- _balances[recipient] = _balances[recipient].add(amount) (#452)
- swapping = false (#1087)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

DividendPayingToken._withdrawDividendOfUser(address) (#1276-1292) has external calls inside a loop: success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#1281)
Favor pull over push strategy for external calls.

Additional information: link

SafePlus._transfer(address,address,uint256) (#1026-1124) performs a multiplication on the result of a division:
-liqTokens = contractTokenBalance.div(totalFees).mul(liquidityFee) (#1073)
SafePlus._transfer(address,address,uint256) (#1026-1124) performs a multiplication on the result of a division:
-fees = amount.div(100).mul(totalFees) (#1093)
SafePlus._transfer(address,address,uint256) (#1026-1124) performs a multiplication on the result of a division:
-busdTokens = contractTokenBalance.div(totalFees).mul(busdDividendRewardsFee) (#1078)
SafePlus._transfer(address,address,uint256) (#1026-1124) performs a multiplication on the result of a division:
-swapTokens = contractTokenBalance.div(totalFees).mul(marketingFee) (#1066)
SafePlus._transfer(address,address,uint256) (#1026-1124) performs a multiplication on the result of a division:
-safemoonTokens = contractTokenBalance.div(totalFees).mul(safemoonDividendRewardsFee) (#1083)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1276-1292):
External calls:
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#1281)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1284)
Reentrancy in SafePlus.updatebusdDividendTracker(address) (#784-799):
External calls:
- newbusdDividendTracker.excludeFromDividends(address(newbusdDividendTracker)) (#791)
- newbusdDividendTracker.excludeFromDividends(address(this)) (#792)
- newbusdDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#793)
- newbusdDividendTracker.excludeFromDividends(address(deadAddress)) (#794)
State variables written after the call(s):
- busdDividendTracker = newbusdDividendTracker (#798)
Reentrancy in SafePlus.updatesafemoonDividendTracker(address) (#801-816):
External calls:
- newsafemoonDividendTracker.excludeFromDividends(address(newsafemoonDividendTracker)) (#808)
- newsafemoonDividendTracker.excludeFromDividends(address(this)) (#809)
- newsafemoonDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#810)
- newsafemoonDividendTracker.excludeFromDividends(address(deadAddress)) (#811)
State variables written after the call(s):
- safemoonDividendTracker = newsafemoonDividendTracker (#815)
Apply the check-effects-interactions pattern.

Additional information: link

SafePlus._transfer(address,address,uint256).claims_scope_1 (#1117) is a local variable never initialized
SafePlus._transfer(address,address,uint256).lastProcessedIndex (#1110) is a local variable never initialized
SafePlus._transfer(address,address,uint256).lastProcessedIndex_scope_2 (#1117) is a local variable never initialized
SafePlus._transfer(address,address,uint256).iterations (#1110) is a local variable never initialized
SafePlus._transfer(address,address,uint256).iterations_scope_0 (#1117) is a local variable never initialized
SafePlus._transfer(address,address,uint256).claims (#1110) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

SafePlus.claim() (#993-996) ignores return value by busdDividendTracker.processAccount(address(msg.sender),false) (#994)
SafePlus.claim() (#993-996) ignores return value by safemoonDividendTracker.processAccount(address(msg.sender),false) (#995)
SafePlus._transfer(address,address,uint256) (#1026-1124) ignores return value by busdDividendTracker.process(gas) (#1110-1115)
SafePlus._transfer(address,address,uint256) (#1026-1124) ignores return value by safemoonDividendTracker.process(gas) (#1117-1122)
SafePlus.addLiquidity(uint256,uint256) (#1142-1156) ignores return value by uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string,address)._name (#1245) shadows:
- ERC20._name (#385) (state variable)
DividendPayingToken.constructor(string,string,address)._symbol (#1245) shadows:
- ERC20._symbol (#386) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1295) shadows:
- Ownable._owner (#345) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1299) shadows:
- Ownable._owner (#345) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1303) shadows:
- Ownable._owner (#345) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1308) shadows:
- Ownable._owner (#345) (state variable)
Rename the local variables that shadow another component.

Additional information: link

SafePlus.setWalletBalance(uint256) (#658-660) should emit an event for:
- maxWalletBalance = _maxWalletBalance (#659)
SafePlus.setMaxBuyTransaction(uint256) (#662-664) should emit an event for:
- maxBuyTransactionAmount = _maxTxn * (10 ** 18) (#663)
SafePlus.setMaxSellTransaction(uint256) (#666-668) should emit an event for:
- maxSellTransactionAmount = _maxTxn * (10 ** 18) (#667)
SafePlus.setmaxSellinTime(uint256) (#670-672) should emit an event for:
- maxSellinTime = _max (#671)
SafePlus.setmaxSellTime(uint256) (#674-676) should emit an event for:
- maxSellTime = _max (#675)
SafePlus.setSwapTokensAtAmount(uint256) (#705-707) should emit an event for:
- swapTokensAtAmount = _swapAmount (#706)
SafePlus.updateBusdDividendRewardFee(uint8) (#818-821) should emit an event for:
- busdDividendRewardsFee = newFee (#819)
- totalFees = busdDividendRewardsFee.add(marketingFee).add(safemoonDividendRewardsFee).add(liquidityFee) (#820)
SafePlus.updateSafemoonDividendRewardFee(uint8) (#823-826) should emit an event for:
- safemoonDividendRewardsFee = newFee (#824)
- totalFees = safemoonDividendRewardsFee.add(busdDividendRewardsFee).add(marketingFee).add(liquidityFee) (#825)
SafePlus.updateMarketingFee(uint8) (#828-831) should emit an event for:
- marketingFee = newFee (#829)
- totalFees = marketingFee.add(busdDividendRewardsFee).add(safemoonDividendRewardsFee).add(liquidityFee) (#830)
SafePlus.updateLiquidityFee(uint8) (#833-836) should emit an event for:
- liquidityFee = newFee (#834)
- totalFees = marketingFee.add(busdDividendRewardsFee).add(safemoonDividendRewardsFee).add(liquidityFee) (#835)
Emit an event for critical parameter changes.

Additional information: link

SafePlus.whitelistPreSale(address,address)._presaleAddress (#641) lacks a zero-check on :
- presaleAddress = _presaleAddress (#642)
SafePlus.updateSafemoonDividendToken(address)._newContract (#682) lacks a zero-check on :
- safemoonDividendToken = _newContract (#683)
SafePlus.updateBusdDividendToken(address)._newContract (#687) lacks a zero-check on :
- busdDividendToken = _newContract (#688)
DividendPayingToken.constructor(string,string,address)._token (#1245) lacks a zero-check on :
- dividendToken = _token (#1246)
BUSDDividendTracker.setDividendTokenAddress(address).newToken (#1381) lacks a zero-check on :
- dividendToken = newToken (#1382)
SAFEMOONDividendTracker.setDividendTokenAddress(address).newToken (#1598) lacks a zero-check on :
- dividendToken = newToken (#1599)
Check that the address is not zero.

Additional information: link

Variable 'SafePlus._transfer(address,address,uint256).claims (#1110)' in SafePlus._transfer(address,address,uint256) (#1026-1124) potentially used before declaration: ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1111)
Variable 'SafePlus._transfer(address,address,uint256).iterations (#1110)' in SafePlus._transfer(address,address,uint256) (#1026-1124) potentially used before declaration: ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1111)
Variable 'SafePlus._transfer(address,address,uint256).lastProcessedIndex (#1110)' in SafePlus._transfer(address,address,uint256) (#1026-1124) potentially used before declaration: ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1111)
Variable 'SafePlus._transfer(address,address,uint256).claims_scope_1 (#1117)' in SafePlus._transfer(address,address,uint256) (#1026-1124) potentially used before declaration: ProcessedsafemoonDividendTracker(iterations_scope_0,claims_scope_1,lastProcessedIndex_scope_2,true,gas,tx.origin) (#1118)
Variable 'SafePlus._transfer(address,address,uint256).lastProcessedIndex_scope_2 (#1117)' in SafePlus._transfer(address,address,uint256) (#1026-1124) potentially used before declaration: ProcessedsafemoonDividendTracker(iterations_scope_0,claims_scope_1,lastProcessedIndex_scope_2,true,gas,tx.origin) (#1118)
Variable 'SafePlus._transfer(address,address,uint256).iterations_scope_0 (#1117)' in SafePlus._transfer(address,address,uint256) (#1026-1124) potentially used before declaration: ProcessedsafemoonDividendTracker(iterations_scope_0,claims_scope_1,lastProcessedIndex_scope_2,true,gas,tx.origin) (#1118)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
State variables written after the call(s):
- swapAndLiquify(liqTokens) (#1074)
- _allowances[owner][spender] = amount (#480)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
State variables written after the call(s):
- swapAndSendBusdDividends(busdTokens) (#1079)
- _allowances[owner][spender] = amount (#480)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
State variables written after the call(s):
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- _allowances[owner][spender] = amount (#480)
Reentrancy in SafePlus.constructor() (#593-635):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#604-605)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#608)
- uniswapV2Router = _uniswapV2Router (#607)
Reentrancy in SafePlus.constructor() (#593-635):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#604-605)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#610)
- busdDividendTracker.excludeFromDividends(pair) (#874)
- safemoonDividendTracker.excludeFromDividends(pair) (#875)
- excludeFromDividend(address(busdDividendTracker)) (#612)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(safemoonDividendTracker)) (#613)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(this)) (#614)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(_uniswapV2Router)) (#615)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(deadAddress) (#616)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
State variables written after the call(s):
- excludeFromFees(marketingWallet,true) (#619)
- isExcludedFromFees[account] = excluded (#845)
- excludeFromFees(address(this),true) (#620)
- isExcludedFromFees[account] = excluded (#845)
- excludeFromFees(deadAddress,true) (#621)
- isExcludedFromFees[account] = excluded (#845)
- excludeFromFees(owner(),true) (#622)
- isExcludedFromFees[account] = excluded (#845)
Reentrancy in SafePlus.constructor() (#593-635):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#604-605)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#610)
- busdDividendTracker.excludeFromDividends(pair) (#874)
- safemoonDividendTracker.excludeFromDividends(pair) (#875)
- excludeFromDividend(address(busdDividendTracker)) (#612)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(safemoonDividendTracker)) (#613)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(this)) (#614)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(_uniswapV2Router)) (#615)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(deadAddress) (#616)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- setAuthOnDividends(owner()) (#624)
- busdDividendTracker.setAuth(account) (#714)
- safemoonDividendTracker.setAuth(account) (#715)
State variables written after the call(s):
- _mint(owner(),1e15 * (10 ** 18)) (#630)
- _balances[account] = _balances[account].add(amount) (#462)
- _mint(owner(),1e15 * (10 ** 18)) (#630)
- _totalSupply = _totalSupply.add(amount) (#461)
- maxBuyTransactionAmount = totalSupply().mul(1).div(100) (#631)
- maxSellTransactionAmount = totalSupply().div(2000) (#632)
- maxSellinTime = totalSupply().div(2000) (#633)
- maxWalletBalance = totalSupply().mul(1).div(100) (#634)
Reentrancy in SafePlus.prepareForPartherOrExchangeListing(address) (#652-656):
External calls:
- busdDividendTracker.excludeFromDividends(_partnerOrExchangeAddress) (#653)
- safemoonDividendTracker.excludeFromDividends(_partnerOrExchangeAddress) (#654)
State variables written after the call(s):
- excludeFromFees(_partnerOrExchangeAddress,true) (#655)
- isExcludedFromFees[account] = excluded (#845)
Reentrancy in BUSDDividendTracker.processAccount(address,bool) (#1552-1562):
External calls:
- amount = _withdrawDividendOfUser(account) (#1553)
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#1281)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1556)
Reentrancy in SAFEMOONDividendTracker.processAccount(address,bool) (#1769-1779):
External calls:
- amount = _withdrawDividendOfUser(account) (#1770)
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#1281)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1773)
Reentrancy in SafePlus.swapAndLiquify(uint256) (#1126-1140):
External calls:
- swapTokensForBNB(half) (#1133)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1137)
- _allowances[owner][spender] = amount (#480)
Reentrancy in SafePlus.whitelistPreSale(address,address) (#641-650):
External calls:
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#643)
- safemoonDividendTracker.excludeFromDividends(_presaleAddress) (#644)
State variables written after the call(s):
- excludeFromFees(_presaleAddress,true) (#645)
- isExcludedFromFees[account] = excluded (#845)
Reentrancy in SafePlus.whitelistPreSale(address,address) (#641-650):
External calls:
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#643)
- safemoonDividendTracker.excludeFromDividends(_presaleAddress) (#644)
- busdDividendTracker.excludeFromDividends(_routerAddress) (#647)
- safemoonDividendTracker.excludeFromDividends(_routerAddress) (#648)
State variables written after the call(s):
- excludeFromFees(_routerAddress,true) (#649)
- isExcludedFromFees[account] = excluded (#845)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SafePlus._setAutomatedMarketMakerPair(address,bool) (#869-879):
External calls:
- busdDividendTracker.excludeFromDividends(pair) (#874)
- safemoonDividendTracker.excludeFromDividends(pair) (#875)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#878)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#481)
- swapAndLiquify(liqTokens) (#1074)
- SwapAndLiquify(half,newBalance,otherHalf) (#1139)
- swapAndLiquify(liqTokens) (#1074)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#481)
- swapAndSendBusdDividends(busdTokens) (#1079)
- SendDividends(amount) (#1216)
- swapAndSendBusdDividends(busdTokens) (#1079)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#481)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- SendDividends(amount) (#1216)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- Transfer(sender,recipient,amount) (#453)
- super._transfer(from,to,amount) (#1100)
- Transfer(sender,recipient,amount) (#453)
- super._transfer(from,address(this),fees) (#1097)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- busdDividendTracker.setBalance(address(from),balanceOf(from)) (#1102)
- safemoonDividendTracker.setBalance(address(from),balanceOf(from)) (#1103)
- busdDividendTracker.setBalance(address(to),balanceOf(to)) (#1104)
- safemoonDividendTracker.setBalance(address(to),balanceOf(to)) (#1105)
- busdDividendTracker.process(gas) (#1110-1115)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Event emitted after the call(s):
- ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1111)
Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- swapTokensForBNB(swapTokens) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- swapAndSendBusdDividends(busdTokens) (#1079)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- busdDividendTracker.setBalance(address(from),balanceOf(from)) (#1102)
- safemoonDividendTracker.setBalance(address(from),balanceOf(from)) (#1103)
- busdDividendTracker.setBalance(address(to),balanceOf(to)) (#1104)
- safemoonDividendTracker.setBalance(address(to),balanceOf(to)) (#1105)
- busdDividendTracker.process(gas) (#1110-1115)
- safemoonDividendTracker.process(gas) (#1117-1122)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Event emitted after the call(s):
- ProcessedsafemoonDividendTracker(iterations_scope_0,claims_scope_1,lastProcessedIndex_scope_2,true,gas,tx.origin) (#1118)
Reentrancy in SafePlus.constructor() (#593-635):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#604-605)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#610)
- busdDividendTracker.excludeFromDividends(pair) (#874)
- safemoonDividendTracker.excludeFromDividends(pair) (#875)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#878)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#610)
Reentrancy in SafePlus.constructor() (#593-635):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#604-605)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#610)
- busdDividendTracker.excludeFromDividends(pair) (#874)
- safemoonDividendTracker.excludeFromDividends(pair) (#875)
- excludeFromDividend(address(busdDividendTracker)) (#612)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(safemoonDividendTracker)) (#613)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(this)) (#614)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(_uniswapV2Router)) (#615)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(deadAddress) (#616)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(address(this),true) (#620)
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(marketingWallet,true) (#619)
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(deadAddress,true) (#621)
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(owner(),true) (#622)
Reentrancy in SafePlus.constructor() (#593-635):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#604-605)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#610)
- busdDividendTracker.excludeFromDividends(pair) (#874)
- safemoonDividendTracker.excludeFromDividends(pair) (#875)
- excludeFromDividend(address(busdDividendTracker)) (#612)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(safemoonDividendTracker)) (#613)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(this)) (#614)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(address(_uniswapV2Router)) (#615)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- excludeFromDividend(deadAddress) (#616)
- busdDividendTracker.excludeFromDividends(address(account)) (#851)
- safemoonDividendTracker.excludeFromDividends(address(account)) (#852)
- setAuthOnDividends(owner()) (#624)
- busdDividendTracker.setAuth(account) (#714)
- safemoonDividendTracker.setAuth(account) (#715)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#463)
- _mint(owner(),1e15 * (10 ** 18)) (#630)
Reentrancy in SafePlus.prepareForPartherOrExchangeListing(address) (#652-656):
External calls:
- busdDividendTracker.excludeFromDividends(_partnerOrExchangeAddress) (#653)
- safemoonDividendTracker.excludeFromDividends(_partnerOrExchangeAddress) (#654)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(_partnerOrExchangeAddress,true) (#655)
Reentrancy in BUSDDividendTracker.processAccount(address,bool) (#1552-1562):
External calls:
- amount = _withdrawDividendOfUser(account) (#1553)
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#1281)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1557)
Reentrancy in SAFEMOONDividendTracker.processAccount(address,bool) (#1769-1779):
External calls:
- amount = _withdrawDividendOfUser(account) (#1770)
- success = IERC20(dividendToken).transfer(user,_withdrawableDividend) (#1281)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1774)
Reentrancy in SafePlus.processDividendTracker(uint256) (#985-991):
External calls:
- (busdIterations,busdClaims,busdLastProcessedIndex) = busdDividendTracker.process(gas) (#986)
Event emitted after the call(s):
- ProcessedbusdDividendTracker(busdIterations,busdClaims,busdLastProcessedIndex,false,gas,tx.origin) (#987)
Reentrancy in SafePlus.processDividendTracker(uint256) (#985-991):
External calls:
- (busdIterations,busdClaims,busdLastProcessedIndex) = busdDividendTracker.process(gas) (#986)
- (safemoonIterations,safemoonClaims,safemoonLastProcessedIndex) = safemoonDividendTracker.process(gas) (#989)
Event emitted after the call(s):
- ProcessedsafemoonDividendTracker(safemoonIterations,safemoonClaims,safemoonLastProcessedIndex,false,gas,tx.origin) (#990)
Reentrancy in SafePlus.swapAndLiquify(uint256) (#1126-1140):
External calls:
- swapTokensForBNB(half) (#1133)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1167-1173)
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#481)
- addLiquidity(otherHalf,newBalance) (#1137)
- SwapAndLiquify(half,newBalance,otherHalf) (#1139)
Reentrancy in SafePlus.swapAndSendBusdDividends(uint256) (#1195-1199):
External calls:
- swapTokensForDividendToken(tokens,address(this),busdDividendToken) (#1196)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- transferDividends(busdDividendToken,address(busdDividendTracker),busdDividendTracker,busdDividends) (#1198)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
Event emitted after the call(s):
- SendDividends(amount) (#1216)
- transferDividends(busdDividendToken,address(busdDividendTracker),busdDividendTracker,busdDividends) (#1198)
Reentrancy in SafePlus.swapAndSendSafemoonDividends(uint256) (#1201-1205):
External calls:
- swapTokensForDividendToken(tokens,address(this),safemoonDividendToken) (#1202)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(_tokenAmount,0,path,_recipient,block.timestamp) (#1186-1192)
- transferDividends(safemoonDividendToken,address(safemoonDividendTracker),safemoonDividendTracker,safemoonDividends) (#1204)
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
Event emitted after the call(s):
- SendDividends(amount) (#1216)
- transferDividends(safemoonDividendToken,address(safemoonDividendTracker),safemoonDividendTracker,safemoonDividends) (#1204)
Reentrancy in SafePlus.transferDividends(address,address,DividendPayingToken,uint256) (#1211-1218):
External calls:
- success = IERC20(dividendToken).transfer(dividendTracker,amount) (#1212)
- dividendPayingTracker.distributeDividends(amount) (#1215)
Event emitted after the call(s):
- SendDividends(amount) (#1216)
Reentrancy in SafePlus.updatebusdDividendTracker(address) (#784-799):
External calls:
- newbusdDividendTracker.excludeFromDividends(address(newbusdDividendTracker)) (#791)
- newbusdDividendTracker.excludeFromDividends(address(this)) (#792)
- newbusdDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#793)
- newbusdDividendTracker.excludeFromDividends(address(deadAddress)) (#794)
Event emitted after the call(s):
- UpdatebusdDividendTracker(newAddress,address(busdDividendTracker)) (#796)
Reentrancy in SafePlus.updatesafemoonDividendTracker(address) (#801-816):
External calls:
- newsafemoonDividendTracker.excludeFromDividends(address(newsafemoonDividendTracker)) (#808)
- newsafemoonDividendTracker.excludeFromDividends(address(this)) (#809)
- newsafemoonDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#810)
- newsafemoonDividendTracker.excludeFromDividends(address(deadAddress)) (#811)
Event emitted after the call(s):
- UpdatesafemoonDividendTracker(newAddress,address(safemoonDividendTracker)) (#813)
Reentrancy in SafePlus.whitelistPreSale(address,address) (#641-650):
External calls:
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#643)
- safemoonDividendTracker.excludeFromDividends(_presaleAddress) (#644)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(_presaleAddress,true) (#645)
Reentrancy in SafePlus.whitelistPreSale(address,address) (#641-650):
External calls:
- busdDividendTracker.excludeFromDividends(_presaleAddress) (#643)
- safemoonDividendTracker.excludeFromDividends(_presaleAddress) (#644)
- busdDividendTracker.excludeFromDividends(_routerAddress) (#647)
- safemoonDividendTracker.excludeFromDividends(_routerAddress) (#648)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#847)
- excludeFromFees(_routerAddress,true) (#649)
Apply the check-effects-interactions pattern.

Additional information: link

SafePlus.check_sell_timer(address) (#1014-1024) uses timestamp for comparisons
Dangerous comparisons:
- last_sell_trigger = (cannot_sell_until[_target].last_sell_time + maxSellTime > block.timestamp) (#1017)
- amount_exceeded && last_sell_trigger (#1019)
BUSDDividendTracker.getAccount(address) (#1416-1459) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1456-1458)
BUSDDividendTracker.canAutoClaim(uint256) (#1480-1486) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1481)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1485)
SAFEMOONDividendTracker.getAccount(address) (#1633-1676) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1673-1675)
SAFEMOONDividendTracker.canAutoClaim(uint256) (#1697-1703) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1698)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1702)
Avoid relying on block.timestamp.

Additional information: link

SafePlus.setBusdDividendEnabled(bool) (#724-737) compares to a boolean constant:
-_enabled == false (#726)
SafePlus.setSafemoonDividendEnabled(bool) (#739-752) compares to a boolean constant:
-_enabled == false (#741)
SafePlus.setMarketingEnabled(bool) (#754-767) compares to a boolean constant:
-_enabled == false (#756)
SafePlus.setSwapAndLiquifyEnabled(bool) (#769-782) compares to a boolean constant:
-_enabled == false (#771)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#338-341) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1313-1319) is never used and should be removed
ERC20._setupDecimals(uint8) (#484-486) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#276-279) is never used and should be removed
SafeMath.mod(uint256,uint256) (#266-269) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#281-284) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#212-216) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#233-236) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#238-241) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#223-231) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#218-221) is never used and should be removed
SafeMathInt.div(int256,int256) (#298-304) is never used and should be removed
SafeMathInt.mul(int256,int256) (#288-296) is never used and should be removed
Remove unused functions.

Additional information: link

SafePlus.totalFees (#534) is set pre-construction with a non-constant function or state variable:
- busdDividendRewardsFee.add(marketingFee).add(safemoonDividendRewardsFee).add(liquidityFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

solc-0.8.9 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#78) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#79) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#96) is not in mixedCase
Function IUniswapV2Router01.WETH() (#116) is not in mixedCase
Struct SafePlus.sell_struct (#515-518) is not in CapWords
Parameter SafePlus.whitelistPreSale(address,address)._presaleAddress (#641) is not in mixedCase
Parameter SafePlus.whitelistPreSale(address,address)._routerAddress (#641) is not in mixedCase
Parameter SafePlus.prepareForPartherOrExchangeListing(address)._partnerOrExchangeAddress (#652) is not in mixedCase
Parameter SafePlus.setWalletBalance(uint256)._maxWalletBalance (#658) is not in mixedCase
Parameter SafePlus.setMaxBuyTransaction(uint256)._maxTxn (#662) is not in mixedCase
Parameter SafePlus.setMaxSellTransaction(uint256)._maxTxn (#666) is not in mixedCase
Parameter SafePlus.setmaxSellinTime(uint256)._max (#670) is not in mixedCase
Parameter SafePlus.setmaxSellTime(uint256)._max (#674) is not in mixedCase
Function SafePlus.edit_sell_time_handler(bool) (#678-680) is not in mixedCase
Parameter SafePlus.edit_sell_time_handler(bool)._value (#678) is not in mixedCase
Parameter SafePlus.updateSafemoonDividendToken(address)._newContract (#682) is not in mixedCase
Parameter SafePlus.updateBusdDividendToken(address)._newContract (#687) is not in mixedCase
Parameter SafePlus.updateMarketingWallet(address)._newWallet (#692) is not in mixedCase
Parameter SafePlus.updateLiquidityWallet(address)._newWallet (#698) is not in mixedCase
Parameter SafePlus.setSwapTokensAtAmount(uint256)._swapAmount (#705) is not in mixedCase
Parameter SafePlus.setTradingIsEnabled(bool)._enabled (#709) is not in mixedCase
Function SafePlus.edit_dividends_settings(bool,uint256) (#718-722) is not in mixedCase
Parameter SafePlus.edit_dividends_settings(bool,uint256).is_busd (#718) is not in mixedCase
Parameter SafePlus.edit_dividends_settings(bool,uint256)._value (#718) is not in mixedCase
Parameter SafePlus.setBusdDividendEnabled(bool)._enabled (#724) is not in mixedCase
Parameter SafePlus.setSafemoonDividendEnabled(bool)._enabled (#739) is not in mixedCase
Parameter SafePlus.setMarketingEnabled(bool)._enabled (#754) is not in mixedCase
Parameter SafePlus.setSwapAndLiquifyEnabled(bool)._enabled (#769) is not in mixedCase
Function SafePlus.check_sell_timer(address) (#1014-1024) is not in mixedCase
Parameter SafePlus.check_sell_timer(address)._target (#1014) is not in mixedCase
Parameter SafePlus.swapTokensForDividendToken(uint256,address,address)._tokenAmount (#1177) is not in mixedCase
Parameter SafePlus.swapTokensForDividendToken(uint256,address,address)._recipient (#1177) is not in mixedCase
Parameter SafePlus.swapTokensForDividendToken(uint256,address,address)._dividendAddress (#1177) is not in mixedCase
Variable SafePlus.sell_time_handler (#507) is not in mixedCase
Variable SafePlus.cannot_sell_until (#538) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1295) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1299) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1303) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1308) is not in mixedCase
Constant DividendPayingToken.magnitude (#1226) is not in UPPER_CASE_WITH_UNDERSCORES
Variable DividendPayingToken._isAuth (#1236) is not in mixedCase
Parameter BUSDDividendTracker.updateMinimumTokenBalanceForDividends(uint256)._newMinimumBalance (#1385) is not in mixedCase
Parameter BUSDDividendTracker.getAccount(address)._account (#1416) is not in mixedCase
Parameter SAFEMOONDividendTracker.updateMinimumTokenBalanceForDividends(uint256)._newMinimumBalance (#1602) is not in mixedCase
Parameter SAFEMOONDividendTracker.getAccount(address)._account (#1633) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#339)" inContext (#333-342)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SafePlus._transfer(address,address,uint256) (#1026-1124):
External calls:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
External calls sending eth:
- transferToWallet(address(marketingWallet),marketingPortion) (#1069)
- recipient.transfer(amount) (#1208)
- swapAndLiquify(liqTokens) (#1074)
- uniswapV2Router.addLiquidityETH{value: busdAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1148-1155)
State variables written after the call(s):
- swapAndLiquify(liqTokens) (#1074)
- _allowances[owner][spender] = amount (#480)
- swapAndSendBusdDividends(busdTokens) (#1079)
- _allowances[owner][spender] = amount (#480)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- _allowances[owner][spender] = amount (#480)
- super._transfer(from,address(this),fees) (#1097)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#451)
- _balances[recipient] = _balances[recipient].add(amount) (#452)
- super._transfer(from,to,amount) (#1100)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#451)
- _balances[recipient] = _balances[recipient].add(amount) (#452)
- swapping = false (#1087)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#481)
- swapAndLiquify(liqTokens) (#1074)
- Approval(owner,spender,amount) (#481)
- swapAndSendBusdDividends(busdTokens) (#1079)
- Approval(owner,spender,amount) (#481)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- ProcessedbusdDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1111)
- ProcessedsafemoonDividendTracker(iterations_scope_0,claims_scope_1,lastProcessedIndex_scope_2,true,gas,tx.origin) (#1118)
- SendDividends(amount) (#1216)
- swapAndSendBusdDividends(busdTokens) (#1079)
- SendDividends(amount) (#1216)
- swapAndSendSafemoonDividends(safemoonTokens) (#1084)
- SwapAndLiquify(half,newBalance,otherHalf) (#1139)
- swapAndLiquify(liqTokens) (#1074)
- Transfer(sender,recipient,amount) (#453)
- super._transfer(from,to,amount) (#1100)
- Transfer(sender,recipient,amount) (#453)
- super._transfer(from,address(this),fees) (#1097)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#118) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#118)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1277) is too similar to BUSDDividendTracker.getAccount(address).withdrawableDividends (#1421)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1277) is too similar to SAFEMOONDividendTracker.getAccount(address).withdrawableDividends (#1638)
Prevent variables from having similar names.

Additional information: link

SafePlus.slitherConstructorVariables() (#491-1219) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#499)
SafePlus.slitherConstructorVariables() (#491-1219) uses literals with too many digits:
- gasForProcessing = 600000 (#535)
BUSDDividendTracker.constructor() (#1368-1371) uses literals with too many digits:
- minimumTokenBalanceForDividends = 2000000 * (10 ** 18) (#1370)
BUSDDividendTracker.getAccountAtIndex(uint256) (#1461-1478) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1472)
SAFEMOONDividendTracker.constructor() (#1585-1588) uses literals with too many digits:
- minimumTokenBalanceForDividends = 2000000 * (10 ** 18) (#1587)
SAFEMOONDividendTracker.getAccountAtIndex(uint256) (#1678-1695) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1689)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendPayingToken.lastAmount (#1229) is never used in BUSDDividendTracker (#1348-1563)
DividendPayingToken.lastAmount (#1229) is never used in SAFEMOONDividendTracker (#1565-1781)
Remove unused state variables.

Additional information: link

DividendPayingToken.lastAmount (#1229) should be constant
SafePlus.deadAddress (#499) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#159-161)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#163-168)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#170-172)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#176-178)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#364-367)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#369-373)
name() should be declared external:
- ERC20.name() (#395-397)
symbol() should be declared external:
- ERC20.symbol() (#399-401)
decimals() should be declared external:
- ERC20.decimals() (#403-405)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#415-418)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#420-422)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#424-427)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#429-433)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#435-438)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#440-443)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- SafePlus.setAutomatedMarketMakerPair(address,bool) (#863-867)
getIsExcludedFromFees(address) should be declared external:
- SafePlus.getIsExcludedFromFees(address) (#913-915)
distributeDividends(uint256) should be declared external:
- DividendPayingToken.distributeDividends(uint256) (#1255-1266)
withdrawDividend() should be declared external:
- BUSDDividendTracker.withdrawDividend() (#1377-1379)
- DividendPayingToken.withdrawDividend() (#1268-1270)
- SAFEMOONDividendTracker.withdrawDividend() (#1594-1596)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1295-1297)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1303-1305)
getAccountAtIndex(uint256) should be declared external:
- BUSDDividendTracker.getAccountAtIndex(uint256) (#1461-1478)
process(uint256) should be declared external:
- BUSDDividendTracker.process(uint256) (#1505-1550)
getAccountAtIndex(uint256) should be declared external:
- SAFEMOONDividendTracker.getAccountAtIndex(uint256) (#1678-1695)
process(uint256) should be declared external:
- SAFEMOONDividendTracker.process(uint256) (#1722-1767)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for SPLUS

News for SPLUS