Revolutionary Watch-to-Earn protocol that gives all holders access to "Forever Earn" Platform, available on IOS and Android! Forever Earn allows user to watch ads and earn up to 298 USDT / month from each phone. The most important part is that unlike any other (x)2E - Foreverise is completely self-sustainable! Instead of paying in native tokens or using new investments "Forever Earn" is collecting money from traffic agencies. Forever Earn provides 16% buy-back from each withdrawal. More Phones = More Income
Reentrancy in FOREVERISE._transferFrom(address,address,uint256) (#466-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#496)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#499)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#543)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#544)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#286-297) ignores return value by RWRD.transfer(shareholder,amount) (#292)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
FOREVERISE.swapBack() (#589-635) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
FOREVERISE.swapBack().tmpSuccess (#618) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
FOREVERISE.swapBack().tmpSuccess (#618) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
tmpSuccess = false (#622)
Fix or remove the writes.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
FOREVERISE.takeFee(address,uint256,bool) (#531-552) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#534)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#540)
FOREVERISE.takeFee(address,uint256,bool) (#531-552) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#537)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#286-297):
External calls:
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#294)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#295)
Reentrancy in DividendDistributor.process(uint256) (#255-279):
External calls:
- distributeDividend(shareholders[currentIndex]) (#271)
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- currentIndex ++ (#276)
Reentrancy in DividendDistributor.setShare(address,uint256) (#219-233):
External calls:
- distributeDividend(shareholder) (#221)
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- shares[shareholder].amount = amount (#231)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#232)
Apply the check-effects-interactions pattern.
Additional information: link
FOREVERISE.swapBack() (#589-635) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#214-217) should emit an event for:
- minPeriod = _minPeriod (#215)
- minDistribution = _minDistribution (#216)
FOREVERISE.setMaxTxPercent_base1000(uint256) (#457-459) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#458)
FOREVERISE.setTxLimit(uint256) (#461-463) should emit an event for:
- _maxTxAmount = amount (#462)
FOREVERISE.set_sell_multiplier(uint256) (#566-568) should emit an event for:
- sellMultiplier = Multiplier (#567)
FOREVERISE.tradingStatus(bool,uint256) (#571-577) should emit an event for:
- deadBlocks = _deadBlocks (#575)
FOREVERISE.launchStatus(uint256) (#579-581) should emit an event for:
- launchedAt = _launchblock (#580)
FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#671-680) should emit an event for:
- liquidityFee = _liquidityFee (#672)
- reflectionFee = _reflectionFee (#673)
- marketingFee = _marketingFee (#674)
- teamFee = _teamFee (#675)
- burnFee = _burnFee (#676)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_teamFee).add(_burnFee) (#677)
- feeDenominator = _feeDenominator (#678)
FOREVERISE.setSwapBackSettings(bool,uint256) (#689-692) should emit an event for:
- swapThreshold = _amount (#691)
FOREVERISE.setTargetLiquidity(uint256,uint256) (#694-697) should emit an event for:
- targetLiquidity = _target (#695)
- targetLiquidityDenominator = _denominator (#696)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#96) lacks a zero-check on :
- owner = adr (#97)
FOREVERISE.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#682) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#683)
FOREVERISE.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#682) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#684)
FOREVERISE.setFeeReceivers(address,address,address,address)._teamFeeReceiver (#682) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#685)
FOREVERISE.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#682) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#686)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#286-297) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#292)
FOREVERISE.multiTransfer(address,address[],uint256[]) (#723-747) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#739)
FOREVERISE.multiTransfer_fixed(address,address[],uint256) (#749-768) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#760)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in FOREVERISE.constructor() (#395-420):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#397)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#398)
- _balances[msg.sender] = _totalSupply (#418)
- autoLiquidityReceiver = DEAD (#413)
- burnFeeReceiver = DEAD (#416)
- distributor = new DividendDistributor(address(router)) (#400)
- isDividendExempt[pair] = true (#409)
- isDividendExempt[address(this)] = true (#410)
- isDividendExempt[DEAD] = true (#411)
- isFeeExempt[msg.sender] = true (#402)
- isTimelockExempt[msg.sender] = true (#405)
- isTimelockExempt[DEAD] = true (#406)
- isTimelockExempt[address(this)] = true (#407)
- isTxLimitExempt[msg.sender] = true (#403)
- marketingFeeReceiver = 0x5e5A6C6EA82D176550932d869EcbD1d0f68731d3 (#414)
- teamFeeReceiver = 0x5e5A6C6EA82D176550932d869EcbD1d0f68731d3 (#415)
Reentrancy in DividendDistributor.deposit() (#235-253):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#242-247)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#252)
- totalDividends = totalDividends.add(amount) (#251)
Reentrancy in DividendDistributor.distributeDividend(address) (#286-297):
External calls:
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#293)
Reentrancy in DividendDistributor.setShare(address,uint256) (#219-233):
External calls:
- distributeDividend(shareholder) (#221)
- RWRD.transfer(shareholder,amount) (#292)
State variables written after the call(s):
- addShareholder(shareholder) (#225)
- shareholderIndexes[shareholder] = shareholders.length (#319)
- removeShareholder(shareholder) (#227)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#325)
- addShareholder(shareholder) (#225)
- shareholders.push(shareholder) (#320)
- removeShareholder(shareholder) (#227)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#324)
- shareholders.pop() (#326)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#230)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FOREVERISE._transferFrom(address,address,uint256) (#466-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
- distributor.setShare(sender,_balances[sender]) (#503)
- distributor.setShare(recipient,_balances[recipient]) (#507)
- distributor.process(distributorGas) (#510)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#512)
Reentrancy in FOREVERISE._transferFrom(address,address,uint256) (#466-514):
External calls:
- swapBack() (#493)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
External calls sending eth:
- swapBack() (#493)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#545)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
- Transfer(sender,burnFeeReceiver,burnTokens) (#548)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#498)
Reentrancy in FOREVERISE.constructor() (#395-420):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#397)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#419)
Reentrancy in FOREVERISE.swapBack() (#589-635):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#617)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#625-632)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#633)
Apply the check-effects-interactions pattern.
Additional information: link
Function IDEXRouter.WETH() (#111) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#214) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#214) is not in mixedCase
Variable DividendDistributor._token (#167) is not in mixedCase
Variable DividendDistributor.RWRD (#175) is not in mixedCase
Variable DividendDistributor.WBNB (#176) is not in mixedCase
Function FOREVERISE.setMaxWalletPercent_base1000(uint256) (#454-456) is not in mixedCase
Parameter FOREVERISE.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#454) is not in mixedCase
Function FOREVERISE.setMaxTxPercent_base1000(uint256) (#457-459) is not in mixedCase
Parameter FOREVERISE.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#457) is not in mixedCase
Function FOREVERISE.set_sell_multiplier(uint256) (#566-568) is not in mixedCase
Parameter FOREVERISE.set_sell_multiplier(uint256).Multiplier (#566) is not in mixedCase
Parameter FOREVERISE.tradingStatus(bool,uint256)._status (#571) is not in mixedCase
Parameter FOREVERISE.tradingStatus(bool,uint256)._deadBlocks (#571) is not in mixedCase
Parameter FOREVERISE.launchStatus(uint256)._launchblock (#579) is not in mixedCase
Parameter FOREVERISE.cooldownEnabled(bool,uint8)._status (#584) is not in mixedCase
Parameter FOREVERISE.cooldownEnabled(bool,uint8)._interval (#584) is not in mixedCase
Function FOREVERISE.enable_blacklist(bool) (#648-650) is not in mixedCase
Parameter FOREVERISE.enable_blacklist(bool)._status (#648) is not in mixedCase
Function FOREVERISE.manage_blacklist(address[],bool) (#652-656) is not in mixedCase
Parameter FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#671) is not in mixedCase
Parameter FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#671) is not in mixedCase
Parameter FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#671) is not in mixedCase
Parameter FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#671) is not in mixedCase
Parameter FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#671) is not in mixedCase
Parameter FOREVERISE.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#671) is not in mixedCase
Parameter FOREVERISE.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#682) is not in mixedCase
Parameter FOREVERISE.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#682) is not in mixedCase
Parameter FOREVERISE.setFeeReceivers(address,address,address,address)._teamFeeReceiver (#682) is not in mixedCase
Parameter FOREVERISE.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#682) is not in mixedCase
Parameter FOREVERISE.setSwapBackSettings(bool,uint256)._enabled (#689) is not in mixedCase
Parameter FOREVERISE.setSwapBackSettings(bool,uint256)._amount (#689) is not in mixedCase
Parameter FOREVERISE.setTargetLiquidity(uint256,uint256)._target (#694) is not in mixedCase
Parameter FOREVERISE.setTargetLiquidity(uint256,uint256)._denominator (#694) is not in mixedCase
Parameter FOREVERISE.setDistributionCriteria(uint256,uint256)._minPeriod (#699) is not in mixedCase
Parameter FOREVERISE.setDistributionCriteria(uint256,uint256)._minDistribution (#699) is not in mixedCase
Function FOREVERISE.multiTransfer_fixed(address,address[],uint256) (#749-768) is not in mixedCase
Variable FOREVERISE.WBNB (#333) is not in mixedCase
Variable FOREVERISE.DEAD (#334) is not in mixedCase
Variable FOREVERISE.ZERO (#335) is not in mixedCase
Constant FOREVERISE._name (#337) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FOREVERISE._symbol (#338) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FOREVERISE._decimals (#339) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FOREVERISE._totalSupply (#341) is not in mixedCase
Variable FOREVERISE._maxTxAmount (#343) is not in mixedCase
Variable FOREVERISE._maxWalletToken (#344) is not in mixedCase
Variable FOREVERISE._balances (#346) is not in mixedCase
Variable FOREVERISE._allowances (#347) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#116) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#117)
Prevent variables from having similar names.
Additional information: link
FOREVERISE.slitherConstructorVariables() (#330-773) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#334)
FOREVERISE.slitherConstructorVariables() (#330-773) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#335)
FOREVERISE.slitherConstructorVariables() (#330-773) uses literals with too many digits:
- distributorGas = 500000 (#384)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.WBNB (#176) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#189) should be constant
FOREVERISE.DEAD (#334) should be constant
FOREVERISE.WBNB (#333) should be constant
FOREVERISE.ZERO (#335) should be constant
FOREVERISE._totalSupply (#341) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#80-82)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#84-86)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#96-100)
tradingStatus(bool,uint256) should be declared external:
- FOREVERISE.tradingStatus(bool,uint256) (#571-577)
launchStatus(uint256) should be declared external:
- FOREVERISE.launchStatus(uint256) (#579-581)
cooldownEnabled(bool,uint8) should be declared external:
- FOREVERISE.cooldownEnabled(bool,uint8) (#584-587)
enable_blacklist(bool) should be declared external:
- FOREVERISE.enable_blacklist(bool) (#648-650)
manage_blacklist(address[],bool) should be declared external:
- FOREVERISE.manage_blacklist(address[],bool) (#652-656)
Use the external attribute for functions never called from the contract.
Additional information: link
FOREVERISE.manage_blacklist(address[],bool).i (#653) 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
DividendDistributor.process(uint256) (#255-279) has costly operations inside a loop:
- currentIndex = 0 (#267)
DividendDistributor.distributeDividend(address) (#286-297) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#291)
DividendDistributor.process(uint256) (#255-279) has costly operations inside a loop:
- currentIndex ++ (#276)
Use a local variable to hold the loop computation result.
Additional information: link
FOREVERISE._maxTxAmount (#343) is set pre-construction with a non-constant function or state variable:
- _totalSupply
FOREVERISE._maxWalletToken (#344) is set pre-construction with a non-constant function or state variable:
- _totalSupply
FOREVERISE.totalFee (#363) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee
FOREVERISE.swapThreshold (#391) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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
Pragma version^0.7.4 (#7) allows old versions
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
Low level call in FOREVERISE.swapBack() (#589-635):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#618)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#619)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
DividendDistributor.shouldDistribute(address) (#281-284) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#282-283)
FOREVERISE._transferFrom(address,address,uint256) (#466-514) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#486)
Avoid relying on block.timestamp.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Average 30d PancakeSwap liquidity is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to find audit link on the website
Unable to find whitepaper link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Unable to verify token contract address on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Youtube account