ForeverGrow Token Logo

FGROW [ForeverGrow] Token

ALERT: dead

About FGROW

Listings

Token 3 years
CoinMarketCap 3 years
white paper

ForeverGrow Just Entered the Real World HYPER DEFLATIONARY TOKEN WITH EXPONENTIAL REWARDS AND METATRANSACTIONS
ForeverGrow works on an autonomous frictionless yield farming and liquidity generation protocol.
Hold $FGROW tokens in your wallet and earn passive income in ForeverBNB, ForeverETH, and BUSD.
Since ForeverBNB & ForeverETH are already giving BUSD & ETH rewards, your reflections will multiply!
We are here to build utilities and stay in the long run. Liquidity will be autoburned!

Social

Laser Scorebeta Last Audit: 21 July 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

ForeverGrow.swapBack() (#1127-1186) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
ForeverGrow.buyTokens(uint256,address) (#1221-1229) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#478-496) ignores return value by BEP_TOKEN.transfer(shareholder,amount) (#487)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in ForeverGrow._transferFrom(address,address,uint256) (#1001-1045):
External calls:
- swapBack() (#1013)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1144-1150)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
External calls sending eth:
- swapBack() (#1013)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1021-1024)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#1030)
- amountReceived = takeFee(sender,recipient,amount) (#1026-1028)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1113)
- triggerAutoBuyback() (#1016)
- inSwap = true (#824)
- inSwap = false (#826)
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 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 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.


Contract ownership is not renounced (belongs to a wallet)


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.

Reentrancy in ForeverGrow.constructor(address,address) (#829-866):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#833)
State variables written after the call(s):
- WBNB = router.WETH() (#835)
Reentrancy in DividendDistributor.distributeDividend(address) (#478-496):
External calls:
- BEP_TOKEN.transfer(shareholder,amount) (#487)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#489-491)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#492-494)
Reentrancy in DividendDistributor.process(uint256) (#440-466):
External calls:
- distributeDividend(shareholders[currentIndex]) (#458)
- BEP_TOKEN.transfer(shareholder,amount) (#487)
State variables written after the call(s):
- currentIndex ++ (#463)
Reentrancy in DividendDistributor.setShare(address,uint256) (#399-420):
External calls:
- distributeDividend(shareholder) (#405)
- BEP_TOKEN.transfer(shareholder,amount) (#487)
State variables written after the call(s):
- shares[shareholder].amount = amount (#415)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#417-419)
Apply the check-effects-interactions pattern.

Additional information: link

ForeverGrow.addDistributor(address,address,address) (#876-882) ignores return value by distributor.addDistributor(_dexRouter,_BEP_TOKEN,_WBNB) (#881)
ForeverGrow.deleteDistributor(address) (#884-886) ignores return value by distributor.deleteDistributor(_BEP_TOKEN) (#885)
ForeverGrow.swapBack() (#1127-1186) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
Ensure that all the return values of the function calls are used.

Additional information: link

ForeverGrow._setAllowance(address,address,uint256).owner (#1386) shadows:
- Auth.owner (#219) (state variable)
Rename the local variables that shadow another component.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#391-397) should emit an event for:
- minPeriod = _minPeriod (#395)
- minDistribution = _minDistribution (#396)
ForeverGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#1231-1243) should emit an event for:
- autoBuybackCap = _cap (#1238)
- autoBuybackAmount = _amount (#1240)
ForeverGrow.setBuybackMultiplierSettings(uint256,uint256,uint256) (#1245-1254) should emit an event for:
- buybackMultiplierNumerator = numerator (#1251)
- buybackMultiplierDenominator = denominator (#1252)
- buybackMultiplierLength = length (#1253)
ForeverGrow.setTxLimit(uint256) (#1266-1269) should emit an event for:
- _maxTxAmount = amount (#1268)
ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#1295-1315) should emit an event for:
- liquidityFee = _liquidityFee (#1303)
- reflectionFee = _reflectionFee (#1305)
- marketingFee = _marketingFee (#1306)
- gasWalletFee = _gasWalletFee (#1307)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee).add(gasWalletFee) (#1308-1312)
- feeDenominator = _feeDenominator (#1313)
ForeverGrow.setSwapBackSettings(bool,uint256) (#1327-1333) should emit an event for:
- swapThreshold = _amount (#1332)
ForeverGrow.setTargetLiquidity(uint256,uint256) (#1335-1341) should emit an event for:
- targetLiquidity = _target (#1339)
- targetLiquidityDenominator = _denominator (#1340)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.constructor(address,address,address)._wbnb (#381) lacks a zero-check on :
- WBNB = _wbnb (#388)
Auth.transferOwnership(address).adr (#274) lacks a zero-check on :
- owner = adr (#275)
ForeverGrow.constructor(address,address)._WBNBinput (#829) lacks a zero-check on :
- WBNB = _WBNBinput (#830)
ForeverGrow.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1318) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1322)
ForeverGrow.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1319) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1323)
ForeverGrow.setFeeReceivers(address,address,address)._gasWalletReceiver (#1320) lacks a zero-check on :
- gasWalletFeeReceiver = _gasWalletReceiver (#1324)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#478-496) has external calls inside a loop: BEP_TOKEN.transfer(shareholder,amount) (#487)
DistributorFactory.addDistributor(address,address,address) (#595-643) has external calls inside a loop: shareholderAddress = distributorsMapping[firstDistributerKey].distributorAddress.getShareholders()[i] (#630-632)
DistributorFactory.addDistributor(address,address,address) (#595-643) has external calls inside a loop: shareholderAmount = distributorsMapping[firstDistributerKey].distributorAddress.getShareholderAmount(shareholderAddress) (#634-636)
DistributorFactory.addDistributor(address,address,address) (#595-643) has external calls inside a loop: distributor.setShare(shareholderAddress,shareholderAmount) (#638)
DistributorFactory.setShare(address,uint256) (#688-695) has external calls inside a loop: distributorsMapping[distributorsArrayOfKeys[i]].distributorAddress.setShare(shareholder,amount) (#691-693)
DistributorFactory.process(uint256) (#697-704) has external calls inside a loop: distributorsMapping[distributorsArrayOfKeys[i]].distributorAddress.process(gas) (#700-702)
DistributorFactory.deposit() (#706-715) has external calls inside a loop: distributorsMapping[distributorsArrayOfKeys[i]].distributorAddress.deposit{value: valuePerToken}() (#711-713)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in ForeverGrow.constructor(address,address) (#829-866):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#833)
State variables written after the call(s):
- DOMAIN_SEPARATOR = keccak256(bytes)(abi.encode(keccak256(bytes)(EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)),keccak256(bytes)(bytes(_name)),keccak256(bytes)(bytes(version())),block.chainid,address(this))) (#853-863)
- _allowances[address(this)][address(router)] = _totalSupply (#834)
- approve(_dexRouter,_totalSupply) (#849)
- _allowances[msg.sender][spender] = amount (#971)
- approve(address(pair),_totalSupply) (#850)
- _allowances[msg.sender][spender] = amount (#971)
- _balances[msg.sender] = _totalSupply (#851)
- autoLiquidityReceiver = msg.sender (#845)
- buyBacker[msg.sender] = true (#843)
- distributor = new DistributorFactory() (#836)
- gasWalletFeeReceiver = msg.sender (#847)
- isDividendExempt[pair] = true (#840)
- isDividendExempt[address(this)] = true (#841)
- isDividendExempt[DEAD] = true (#842)
- isFeeExempt[msg.sender] = true (#838)
- isTxLimitExempt[msg.sender] = true (#839)
- marketingFeeReceiver = msg.sender (#846)
Reentrancy in DividendDistributor.deposit() (#422-438):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#428-430)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#435-437)
- totalDividends = totalDividends.add(amount) (#434)
Reentrancy in DividendDistributor.distributeDividend(address) (#478-496):
External calls:
- BEP_TOKEN.transfer(shareholder,amount) (#487)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#488)
Reentrancy in DividendDistributor.setShare(address,uint256) (#399-420):
External calls:
- distributeDividend(shareholder) (#405)
- BEP_TOKEN.transfer(shareholder,amount) (#487)
State variables written after the call(s):
- addShareholder(shareholder) (#409)
- shareholderIndexes[shareholder] = shareholders.length (#533)
- removeShareholder(shareholder) (#411)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#558-560)
- addShareholder(shareholder) (#409)
- shareholders.push(shareholder) (#534)
- removeShareholder(shareholder) (#411)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#555-557)
- shareholders.pop() (#561)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#414)
Reentrancy in ForeverGrow.triggerAutoBuyback() (#1212-1219):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#1213)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#1215)
- autoBuybackBlockLast = block.number (#1214)
- autoBuybackEnabled = false (#1217)
Reentrancy in ForeverGrow.triggerZeusBuyback(uint256,bool) (#1197-1206):
External calls:
- buyTokens(amount,DEAD) (#1201)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#1203)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ForeverGrow._transferFrom(address,address,uint256) (#1001-1045):
External calls:
- swapBack() (#1013)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1144-1150)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
- distributor.setShare(sender,_balances[sender]) (#1033)
- distributor.setShare(recipient,_balances[recipient]) (#1036-1038)
- distributor.process(distributorGas) (#1041)
External calls sending eth:
- swapBack() (#1013)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#1043)
Reentrancy in ForeverGrow._transferFrom(address,address,uint256) (#1001-1045):
External calls:
- swapBack() (#1013)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1144-1150)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
External calls sending eth:
- swapBack() (#1013)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1114)
- amountReceived = takeFee(sender,recipient,amount) (#1026-1028)
Reentrancy in ForeverGrow.constructor(address,address) (#829-866):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#833)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#972)
- approve(address(pair),_totalSupply) (#850)
- Approval(msg.sender,spender,amount) (#972)
- approve(_dexRouter,_totalSupply) (#849)
- Transfer(address(0),msg.sender,_totalSupply) (#865)
Reentrancy in ForeverGrow.swapBack() (#1127-1186):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1144-1150)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#1171)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1184)
Reentrancy in ForeverGrow.triggerZeusBuyback(uint256,bool) (#1197-1206):
External calls:
- buyTokens(amount,DEAD) (#1201)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#1204)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#468-476) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#473-475)
ForeverGrow.getMultipliedFee() (#1082-1102) uses timestamp for comparisons
Dangerous comparisons:
- launchedAtTimestamp + 86400 > block.timestamp (#1083)
- buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#1086-1087)
ForeverGrow.shouldSwapBack() (#1119-1125) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#1120-1124)
ForeverGrow.isOverLiquified(uint256,uint256) (#1372-1378) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#1377)
ForeverGrow.permit(address,address,uint256,uint256,bool,uint8,bytes32,bytes32) (#1397-1436) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(expiry == 0 || block.timestamp <= expiry,ForeverGrow/permit-expired) (#1429-1432)
Avoid relying on block.timestamp.

Additional information: link

ForeverGrow.onlyBuybacker() (#948-951) compares to a boolean constant:
-require(bool,string)(buyBacker[msg.sender] == true,) (#949)
Remove the equality to the boolean constant.

Additional information: link

DividendDistributor.process(uint256) (#440-466) has costly operations inside a loop:
- currentIndex = 0 (#454)
DividendDistributor.distributeDividend(address) (#478-496) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#486)
DividendDistributor.process(uint256) (#440-466) has costly operations inside a loop:
- currentIndex ++ (#463)
Use a local variable to hold the loop computation result.

Additional information: link

ForeverGrow.launched() (#1256-1258) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#191-200) is never used and should be removed
SafeMath.mod(uint256,uint256) (#176-178) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#202-211) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#99-109) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#138-147) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#149-158) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#122-136) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#111-120) is never used and should be removed
Remove unused functions.

Additional information: link

ForeverGrow._maxTxAmount (#766) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
ForeverGrow.swapThreshold (#821) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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.8.0 (#4) allows old versions
Pragma version^0.8.0 (#21) allows old versions
Pragma version^0.8.0 (#93) allows old versions
Pragma version^0.8.0 (#216) allows old versions
Pragma version^0.8.0 (#285) allows old versions
Pragma version^0.8.0 (#327) allows old versions
Pragma version^0.8.0 (#567) allows old versions
Pragma version^0.8.0 (#742) 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

Function IDEXRouter.WETH() (#26) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#392) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#393) is not in mixedCase
Variable DividendDistributor._token (#336) is not in mixedCase
Variable DividendDistributor.BEP_TOKEN (#344) is not in mixedCase
Variable DividendDistributor.WBNB (#346) is not in mixedCase
Struct DistributorFactory.structDistributors (#576-581) is not in CapWords
Parameter DistributorFactory.addDistributor(address,address,address)._router (#596) is not in mixedCase
Parameter DistributorFactory.addDistributor(address,address,address)._BEP_TOKEN (#597) is not in mixedCase
Parameter DistributorFactory.addDistributor(address,address,address)._wbnb (#598) is not in mixedCase
Parameter DistributorFactory.getShareholderAmount(address,address)._BEP_TOKEN (#645) is not in mixedCase
Parameter DistributorFactory.deleteDistributor(address)._BEP_TOKEN (#656) is not in mixedCase
Parameter DistributorFactory.getDistributor(address)._BEP_TOKEN (#717) is not in mixedCase
Parameter DistributorFactory.setDistributionCriteria(address,uint256,uint256)._BEP_TOKEN (#730) is not in mixedCase
Parameter DistributorFactory.setDistributionCriteria(address,uint256,uint256)._minPeriod (#731) is not in mixedCase
Parameter DistributorFactory.setDistributionCriteria(address,uint256,uint256)._minDistribution (#732) is not in mixedCase
Variable DistributorFactory._token (#574) is not in mixedCase
Parameter ForeverGrow.addDistributor(address,address,address)._dexRouter (#877) is not in mixedCase
Parameter ForeverGrow.addDistributor(address,address,address)._BEP_TOKEN (#878) is not in mixedCase
Parameter ForeverGrow.addDistributor(address,address,address)._WBNB (#879) is not in mixedCase
Parameter ForeverGrow.deleteDistributor(address)._BEP_TOKEN (#884) is not in mixedCase
Parameter ForeverGrow.getDistributer(address)._BEP_TOKEN (#896) is not in mixedCase
Parameter ForeverGrow.getTotalDividends(address)._BEP_TOKEN (#904) is not in mixedCase
Parameter ForeverGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#1232) is not in mixedCase
Parameter ForeverGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#1233) is not in mixedCase
Parameter ForeverGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#1234) is not in mixedCase
Parameter ForeverGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#1235) is not in mixedCase
Parameter ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1296) is not in mixedCase
Parameter ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFee (#1297) is not in mixedCase
Parameter ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._gasWalletFee (#1298) is not in mixedCase
Parameter ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1299) is not in mixedCase
Parameter ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#1300) is not in mixedCase
Parameter ForeverGrow.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1301) is not in mixedCase
Parameter ForeverGrow.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1318) is not in mixedCase
Parameter ForeverGrow.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1319) is not in mixedCase
Parameter ForeverGrow.setFeeReceivers(address,address,address)._gasWalletReceiver (#1320) is not in mixedCase
Parameter ForeverGrow.setSwapBackSettings(bool,uint256)._enabled (#1327) is not in mixedCase
Parameter ForeverGrow.setSwapBackSettings(bool,uint256)._amount (#1327) is not in mixedCase
Parameter ForeverGrow.setTargetLiquidity(uint256,uint256)._target (#1335) is not in mixedCase
Parameter ForeverGrow.setTargetLiquidity(uint256,uint256)._denominator (#1335) is not in mixedCase
Parameter ForeverGrow.setDistributionCriteria(address,uint256,uint256)._BEP_TOKEN (#1344) is not in mixedCase
Parameter ForeverGrow.setDistributionCriteria(address,uint256,uint256)._minPeriod (#1345) is not in mixedCase
Parameter ForeverGrow.setDistributionCriteria(address,uint256,uint256)._minDistribution (#1346) is not in mixedCase
Variable ForeverGrow.BUSD (#754) is not in mixedCase
Variable ForeverGrow.Crypter (#755) is not in mixedCase
Variable ForeverGrow.WBNB (#756) is not in mixedCase
Variable ForeverGrow.DEAD (#757) is not in mixedCase
Variable ForeverGrow.ZERO (#758) is not in mixedCase
Variable ForeverGrow.DEAD_NON_CHECKSUM (#759) is not in mixedCase
Constant ForeverGrow._name (#761) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ForeverGrow._symbol (#762) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ForeverGrow._decimals (#763) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ForeverGrow._totalSupply (#765) is not in mixedCase
Variable ForeverGrow._maxTxAmount (#766) is not in mixedCase
Variable ForeverGrow._balances (#768) is not in mixedCase
Variable ForeverGrow._allowances (#770) is not in mixedCase
Variable ForeverGrow.DOMAIN_SEPARATOR (#815) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in ForeverGrow._transferFrom(address,address,uint256) (#1001-1045):
External calls:
- swapBack() (#1013)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
External calls sending eth:
- swapBack() (#1013)
- distributor.deposit{value: amountBNBReflection}() (#1171)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
- triggerAutoBuyback() (#1016)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#1226-1228)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#1021-1024)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#1030)
- amountReceived = takeFee(sender,recipient,amount) (#1026-1028)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#1113)
- triggerAutoBuyback() (#1016)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#1215)
- triggerAutoBuyback() (#1016)
- autoBuybackBlockLast = block.number (#1214)
- triggerAutoBuyback() (#1016)
- autoBuybackEnabled = false (#1217)
- triggerAutoBuyback() (#1016)
- inSwap = true (#824)
- inSwap = false (#826)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#1114)
- amountReceived = takeFee(sender,recipient,amount) (#1026-1028)
- Transfer(sender,recipient,amountReceived) (#1043)
Reentrancy in ForeverGrow.swapBack() (#1127-1186):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#1171)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#1172)
- address(gasWalletFeeReceiver).transfer(amountBNBGasWallet) (#1173)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1176-1183)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#1184)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#31) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#32)
Prevent variables from having similar names.

Additional information: link

ForeverGrow.slitherConstructorVariables() (#750-1441) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#757)
ForeverGrow.slitherConstructorVariables() (#750-1441) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#758)
ForeverGrow.slitherConstructorVariables() (#750-1441) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#759)
ForeverGrow.slitherConstructorVariables() (#750-1441) uses literals with too many digits:
- distributorGas = 500000 (#812)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ForeverGrow.BUSD (#754) is never used in ForeverGrow (#750-1441)
ForeverGrow.Crypter (#755) is never used in ForeverGrow (#750-1441)
ForeverGrow.DEAD_NON_CHECKSUM (#759) is never used in ForeverGrow (#750-1441)
Remove unused state variables.

Additional information: link

DividendDistributor.dividendsPerShareAccuracyFactor (#359) should be constant
ForeverGrow.BUSD (#754) should be constant
ForeverGrow.Crypter (#755) should be constant
ForeverGrow.DEAD (#757) should be constant
ForeverGrow.DEAD_NON_CHECKSUM (#759) should be constant
ForeverGrow.ZERO (#758) should be constant
ForeverGrow._totalSupply (#765) 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) (#246-248)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#253-255)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#274-278)
getDistributorsAddresses() should be declared external:
- DistributorFactory.getDistributorsAddresses() (#684-686)
getDistributor(address) should be declared external:
- DistributorFactory.getDistributor(address) (#717-723)
getTotalDistributers() should be declared external:
- DistributorFactory.getTotalDistributers() (#725-727)
launch() should be declared external:
- ForeverGrow.launch() (#1260-1264)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 12% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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.


Average 30d PancakeSwap liquidity is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


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

Additional information: link


Unable to find whitepaper link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link


Token has no active CoinMarketCap listing / rank


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for FGROW

News for FGROW