AstroGrow Token Logo

ATG [AstroGrow] Token

About ATG

Listings

Token 4 years
CoinGecko 3 years
CoinMarketCap 3 years
white paper

AstroGrow Allverse Ecosystem Bridging Metaverse & Universe
AstroGrow is the most rewarding reflection token on the Binance Smart Chain network. Simply hold $ATG and earn passive income in $BUSD from trading volume. Our mission is to connect the Metaverse with Universe. Building an ecosystem that can be utilized in many worlds.

Social

Laser Scorebeta Last Audit: 1 July 2022

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

AstroGrow.swapBack() (#596-638) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
AstroGrow.buyTokens(uint256,address) (#667-678) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#352-363) ignores return value by BUSD.transfer(shareholder,amount) (#358)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in AstroGrow._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#531)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#535)
- amountReceived = takeFee(sender,recipient,amount) (#533)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#583)
- triggerAutoBuyback() (#527)
- inSwap = true (#460)
- inSwap = false (#460)
Apply the check-effects-interactions pattern.

Additional information: link


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.


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.

DividendDistributor.setDistributionCriteria(uint256,uint256) (#280-283) should emit an event for:
- minPeriod = _minPeriod (#281)
- minDistribution = _minDistribution (#282)
AstroGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#680-687) should emit an event for:
- autoBuybackCap = _cap (#682)
- autoBuybackAmount = _amount (#684)
AstroGrow.setBuybackMultiplierSettings(uint256,uint256,uint256) (#689-694) should emit an event for:
- buybackMultiplierNumerator = numerator (#691)
- buybackMultiplierDenominator = denominator (#692)
- buybackMultiplierLength = length (#693)
AstroGrow.setTxLimit(uint256) (#706-709) should emit an event for:
- _maxTxAmount = amount (#708)
AstroGrow.setFees(uint256,uint256,uint256,uint256,uint256) (#729-737) should emit an event for:
- liquidityFee = _liquidityFee (#730)
- reflectionFee = _reflectionFee (#732)
- marketingFee = _marketingFee (#733)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#734)
- feeDenominator = _feeDenominator (#735)
AstroGrow.setSwapBackSettings(bool,uint256) (#744-747) should emit an event for:
- swapThreshold = _amount (#746)
AstroGrow.setTargetLiquidity(uint256,uint256) (#749-752) should emit an event for:
- targetLiquidity = _target (#750)
- targetLiquidityDenominator = _denominator (#751)
Emit an event for critical parameter changes.

Additional information: link

Pragma version^0.8.0 (#3) allows old versions
solc-0.8.10 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

AstroGrow.BUSD (#400) is never used in AstroGrow (#396-778)
AstroGrow.DEAD_NON_CHECKSUM (#404) is never used in AstroGrow (#396-778)
Remove unused state variables.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#134-136)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#141-143)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#162-166)
launch() should be declared external:
- AstroGrow.launch() (#700-704)
Use the external attribute for functions never called from the contract.

Additional information: link

Auth.transferOwnership(address).adr (#162) lacks a zero-check on :
- owner = adr (#163)
AstroGrow.setFeeReceivers(address,address)._autoLiquidityReceiver (#739) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#740)
AstroGrow.setFeeReceivers(address,address)._marketingFeeReceiver (#739) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#741)
Check that the address is not zero.

Additional information: link

AstroGrow.launched() (#696-698) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#78-83) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#85-90) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#10-16) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#37-42) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#44-49) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#25-35) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#18-23) is never used and should be removed
Remove unused functions.

Additional information: link

AstroGrow.BUSD (#400) should be constant
AstroGrow.DEAD (#402) should be constant
AstroGrow.DEAD_NON_CHECKSUM (#404) should be constant
AstroGrow.ZERO (#403) should be constant
AstroGrow._totalSupply (#410) should be constant
DividendDistributor.WBNB (#242) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#255) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in AstroGrow._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
- distributor.setShare(sender,_balances[sender]) (#537)
- distributor.setShare(recipient,_balances[recipient]) (#538)
- distributor.process(distributorGas) (#540)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#542)
Reentrancy in AstroGrow._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#584)
- amountReceived = takeFee(sender,recipient,amount) (#533)
Reentrancy in AstroGrow.constructor(address) (#462-486):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#466)
Event emitted after the call(s):
- Approval(msg.sender,spender,amount) (#501)
- approve(address(pair),_totalSupply) (#483)
- Approval(msg.sender,spender,amount) (#501)
- approve(_dexRouter,_totalSupply) (#482)
- Transfer(address(0),msg.sender,_totalSupply) (#485)
Reentrancy in AstroGrow.swapBack() (#596-638):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#606-612)
- distributor.deposit{value: amountBNBReflection}() (#622)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#636)
Reentrancy in AstroGrow.triggerZeusBuyback(uint256,bool) (#648-654):
External calls:
- buyTokens(amount,DEAD) (#649)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#652)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AstroGrow._transferFrom(address,address,uint256) (#521-544):
External calls:
- swapBack() (#526)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
External calls sending eth:
- swapBack() (#526)
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
- triggerAutoBuyback() (#527)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#531)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#535)
- amountReceived = takeFee(sender,recipient,amount) (#533)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#583)
- triggerAutoBuyback() (#527)
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#663)
- triggerAutoBuyback() (#527)
- autoBuybackBlockLast = block.number (#662)
- triggerAutoBuyback() (#527)
- autoBuybackEnabled = false (#664)
- triggerAutoBuyback() (#527)
- inSwap = true (#460)
- inSwap = false (#460)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#584)
- amountReceived = takeFee(sender,recipient,amount) (#533)
- Transfer(sender,recipient,amountReceived) (#542)
Reentrancy in AstroGrow.swapBack() (#596-638):
External calls:
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#622)
- address(marketingFeeReceiver).transfer(amountBNBMarketing) (#623)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#636)
Apply the check-effects-interactions pattern.

Additional information: link

AstroGrow._maxTxAmount (#411) is set pre-construction with a non-constant function or state variable:
- _totalSupply.div(400)
AstroGrow.swapThreshold (#458) 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

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

Additional information: link

AstroGrow.swapBack() (#596-638) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#628-635)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.distributeDividend(address) (#352-363) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#358)
Favor pull over push strategy for external calls.

Additional information: link

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

Additional information: link

DividendDistributor.process(uint256) (#321-345) has costly operations inside a loop:
- currentIndex = 0 (#333)
DividendDistributor.distributeDividend(address) (#352-363) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#357)
DividendDistributor.process(uint256) (#321-345) has costly operations inside a loop:
- currentIndex ++ (#342)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in AstroGrow.constructor(address) (#462-486):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#466)
State variables written after the call(s):
- WBNB = router.WETH() (#468)
Reentrancy in DividendDistributor.distributeDividend(address) (#352-363):
External calls:
- BUSD.transfer(shareholder,amount) (#358)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#360)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#361)
Reentrancy in DividendDistributor.process(uint256) (#321-345):
External calls:
- distributeDividend(shareholders[currentIndex]) (#337)
- BUSD.transfer(shareholder,amount) (#358)
State variables written after the call(s):
- currentIndex ++ (#342)
Reentrancy in DividendDistributor.setShare(address,uint256) (#285-299):
External calls:
- distributeDividend(shareholder) (#287)
- BUSD.transfer(shareholder,amount) (#358)
State variables written after the call(s):
- shares[shareholder].amount = amount (#297)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#298)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AstroGrow.constructor(address) (#462-486):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#466)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = _totalSupply (#467)
- approve(_dexRouter,_totalSupply) (#482)
- _allowances[msg.sender][spender] = amount (#500)
- approve(address(pair),_totalSupply) (#483)
- _allowances[msg.sender][spender] = amount (#500)
- _balances[msg.sender] = _totalSupply (#484)
- autoLiquidityReceiver = msg.sender (#479)
- buyBacker[msg.sender] = true (#477)
- distributor = new DividendDistributor(_dexRouter) (#469)
- distributorAddress = address(distributor) (#470)
- isDividendExempt[pair] = true (#474)
- isDividendExempt[address(this)] = true (#475)
- isDividendExempt[DEAD] = true (#476)
- isFeeExempt[msg.sender] = true (#472)
- isTxLimitExempt[msg.sender] = true (#473)
- marketingFeeReceiver = msg.sender (#480)
Reentrancy in DividendDistributor.deposit() (#301-319):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#308-313)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#318)
- totalDividends = totalDividends.add(amount) (#317)
Reentrancy in DividendDistributor.distributeDividend(address) (#352-363):
External calls:
- BUSD.transfer(shareholder,amount) (#358)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#359)
Reentrancy in DividendDistributor.setShare(address,uint256) (#285-299):
External calls:
- distributeDividend(shareholder) (#287)
- BUSD.transfer(shareholder,amount) (#358)
State variables written after the call(s):
- addShareholder(shareholder) (#291)
- shareholderIndexes[shareholder] = shareholders.length (#385)
- removeShareholder(shareholder) (#293)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#391)
- addShareholder(shareholder) (#291)
- shareholders.push(shareholder) (#386)
- removeShareholder(shareholder) (#293)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#390)
- shareholders.pop() (#392)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#296)
Reentrancy in AstroGrow.triggerAutoBuyback() (#660-665):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#661)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#663)
- autoBuybackBlockLast = block.number (#662)
- autoBuybackEnabled = false (#664)
Reentrancy in AstroGrow.triggerZeusBuyback(uint256,bool) (#648-654):
External calls:
- buyTokens(amount,DEAD) (#649)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#672-677)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#651)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#347-350) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#348-349)
AstroGrow.getMultipliedFee() (#569-578) uses timestamp for comparisons
Dangerous comparisons:
- launchedAtTimestamp + 86400 > block.timestamp (#570)
- buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#572)
AstroGrow.shouldSwapBack() (#589-594) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#590-593)
AstroGrow.isOverLiquified(uint256,uint256) (#771-773) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#772)
Avoid relying on block.timestamp.

Additional information: link

Function IDEXRouter.WETH() (#177) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#280) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#280) is not in mixedCase
Variable DividendDistributor._token (#233) is not in mixedCase
Variable DividendDistributor.BUSD (#241) is not in mixedCase
Variable DividendDistributor.WBNB (#242) is not in mixedCase
Parameter AstroGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#680) is not in mixedCase
Parameter AstroGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#680) is not in mixedCase
Parameter AstroGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#680) is not in mixedCase
Parameter AstroGrow.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#680) is not in mixedCase
Parameter AstroGrow.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#729) is not in mixedCase
Parameter AstroGrow.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#729) is not in mixedCase
Parameter AstroGrow.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#729) is not in mixedCase
Parameter AstroGrow.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#729) is not in mixedCase
Parameter AstroGrow.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#729) is not in mixedCase
Parameter AstroGrow.setFeeReceivers(address,address)._autoLiquidityReceiver (#739) is not in mixedCase
Parameter AstroGrow.setFeeReceivers(address,address)._marketingFeeReceiver (#739) is not in mixedCase
Parameter AstroGrow.setSwapBackSettings(bool,uint256)._enabled (#744) is not in mixedCase
Parameter AstroGrow.setSwapBackSettings(bool,uint256)._amount (#744) is not in mixedCase
Parameter AstroGrow.setTargetLiquidity(uint256,uint256)._target (#749) is not in mixedCase
Parameter AstroGrow.setTargetLiquidity(uint256,uint256)._denominator (#749) is not in mixedCase
Parameter AstroGrow.setDistributionCriteria(uint256,uint256)._minPeriod (#754) is not in mixedCase
Parameter AstroGrow.setDistributionCriteria(uint256,uint256)._minDistribution (#754) is not in mixedCase
Variable AstroGrow.BUSD (#400) is not in mixedCase
Variable AstroGrow.WBNB (#401) is not in mixedCase
Variable AstroGrow.DEAD (#402) is not in mixedCase
Variable AstroGrow.ZERO (#403) is not in mixedCase
Variable AstroGrow.DEAD_NON_CHECKSUM (#404) is not in mixedCase
Constant AstroGrow._name (#406) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AstroGrow._symbol (#407) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AstroGrow._decimals (#408) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AstroGrow._totalSupply (#410) is not in mixedCase
Variable AstroGrow._maxTxAmount (#411) is not in mixedCase
Variable AstroGrow._balances (#413) is not in mixedCase
Variable AstroGrow._allowances (#414) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

AstroGrow.slitherConstructorVariables() (#396-778) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#402)
AstroGrow.slitherConstructorVariables() (#396-778) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#403)
AstroGrow.slitherConstructorVariables() (#396-778) uses literals with too many digits:
- DEAD_NON_CHECKSUM = 0x000000000000000000000000000000000000dEaD (#404)
AstroGrow.slitherConstructorVariables() (#396-778) uses literals with too many digits:
- distributorGas = 500000 (#455)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:

Contract has 4% buy tax and 4% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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


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


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


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


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


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


Token has no active CoinGecko listing / rank

Price for ATG

News for ATG