Baby Aetherius Token Logo

BABYAETH [Baby Aetherius] Token

About BABYAETH

Listings

Token 3 years

Baby Aetherius is a rewards-based token inspired by the main Aetherius project. It provides Aetherius rewards to investors by simply holding on to their shares. Baby Aetherius also has various utilities scheduled on its roadmap.

Among them include the distribution of NFTs of different rarities, a staking platform, and an exciting integration of both usecases to maximize the earnings held by its investors.

Baby Aetherius possesses a safe, profitable and self-sustaining set of tokenomics. WIth an initial supply of 1,000,000,000 tokens, fifty percent of which have been burned at launch, the coin only imposes 10/10 buy/sell taxes. Of these liens, 3% goes to the purchase of Aetherium rewards to entice investors to stay, 4% goes to marketing to encourage more people to buy, and 3% goes to liquidity to protect the investors’ money from sudden fluctuations in prices.

Social

Laser Scorebeta Last Audit: 20 January 2022

report
Dangerous risk18%
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

BabyAetherius.swapBack() (#667-709) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyAetherius._transferFrom(address,address,uint256) (#603-629):
External calls:
- swapBack() (#612)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#612)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#617)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#620)
- amountReceived = takeFee(sender,recipient,amount) (#619)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#654)
- triggerAutoBuyback() (#613)
- inSwap = true (#548)
- inSwap = false (#548)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#443-454) ignores return value by AETH.transfer(shareholder,amount) (#449)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.

Reentrancy in DividendDistributor.distributeDividend(address) (#443-454):
External calls:
- AETH.transfer(shareholder,amount) (#449)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#451)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#452)
Reentrancy in DividendDistributor.process(uint256) (#412-436):
External calls:
- distributeDividend(shareholders[currentIndex]) (#428)
- AETH.transfer(shareholder,amount) (#449)
State variables written after the call(s):
- currentIndex ++ (#433)
Reentrancy in DividendDistributor.setShare(address,uint256) (#375-389):
External calls:
- distributeDividend(shareholder) (#377)
- AETH.transfer(shareholder,amount) (#449)
State variables written after the call(s):
- shares[shareholder].amount = amount (#387)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#388)
Apply the check-effects-interactions pattern.

Additional information: link

BabyAetherius.swapBack() (#667-709) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#370-373) should emit an event for:
- minPeriod = _minPeriod (#371)
- minDistribution = _minDistribution (#372)
BabyAetherius.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#751-758) should emit an event for:
- autoBuybackCap = _cap (#753)
- autoBuybackAmount = _amount.div(100) (#755)
BabyAetherius.setTxLimit(uint256) (#775-778) should emit an event for:
- _maxTxAmount = amount.div(100) (#777)
BabyAetherius.setFees(uint256,uint256,uint256,uint256,uint256) (#805-813) should emit an event for:
- liquidityFee = _liquidityFee (#806)
- reflectionFee = _reflectionFee (#808)
- marketingFee = _marketingFee (#809)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#810)
- feeDenominator = _feeDenominator (#811)
BabyAetherius.setSwapBackSettings(bool,uint256) (#820-823) should emit an event for:
- swapThreshold = _amount.div(100) (#822)
BabyAetherius.setTargetLiquidity(uint256,uint256) (#825-828) should emit an event for:
- targetLiquidity = _target (#826)
- targetLiquidityDenominator = _denominator (#827)
Emit an event for critical parameter changes.

Additional information: link

BabyAetherius.setFeeReceivers(address,address)._autoLiquidityReceiver (#815) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#816)
BabyAetherius.setFeeReceivers(address,address)._marketingFeeReceiver (#815) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#817)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#443-454) has external calls inside a loop: AETH.transfer(shareholder,amount) (#449)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BabyAetherius._transferFrom(address,address,uint256) (#603-629):
External calls:
- swapBack() (#612)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#612)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- launch() (#615)
- launchedAt = block.number (#772)
Reentrancy in BabyAetherius.constructor() (#550-569):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#552)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#553)
- _balances[msg.sender] = _totalSupply (#567)
- autoLiquidityReceiver = address(0xC3E64377aafD8C09F8C02e3C44B0F428515A228F) (#564)
- distributor = new DividendDistributor(address(router)) (#555)
- isDividendExempt[pair] = true (#560)
- isDividendExempt[address(this)] = true (#561)
- isDividendExempt[DEAD] = true (#562)
- isDividendExempt[ZERO] = true (#563)
- isFeeExempt[msg.sender] = true (#557)
- isTxLimitExempt[msg.sender] = true (#558)
- isTxLimitExempt[address(router)] = true (#559)
- marketingFeeReceiver = address(0xC3E64377aafD8C09F8C02e3C44B0F428515A228F) (#565)
Reentrancy in DividendDistributor.deposit() (#392-410):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#399-404)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#409)
- totalDividends = totalDividends.add(amount) (#408)
Reentrancy in DividendDistributor.distributeDividend(address) (#443-454):
External calls:
- AETH.transfer(shareholder,amount) (#449)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#450)
Reentrancy in DividendDistributor.setShare(address,uint256) (#375-389):
External calls:
- distributeDividend(shareholder) (#377)
- AETH.transfer(shareholder,amount) (#449)
State variables written after the call(s):
- addShareholder(shareholder) (#381)
- shareholderIndexes[shareholder] = shareholders.length (#476)
- removeShareholder(shareholder) (#383)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#482)
- addShareholder(shareholder) (#381)
- shareholders.push(shareholder) (#477)
- removeShareholder(shareholder) (#383)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#481)
- shareholders.pop() (#483)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#386)
Reentrancy in BabyAetherius.triggerAutoBuyback() (#731-736):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#732)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#734)
- autoBuybackBlockLast = block.number (#733)
- autoBuybackEnabled = false (#735)
Reentrancy in BabyAetherius.triggerManualBuyback(uint256,bool) (#719-725):
External calls:
- buyTokens(amount,DEAD) (#720)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#722)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyAetherius._transferFrom(address,address,uint256) (#603-629):
External calls:
- swapBack() (#612)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
- distributor.setShare(sender,_balances[sender]) (#622)
- distributor.setShare(recipient,_balances[recipient]) (#623)
- distributor.process(distributorGas) (#625)
External calls sending eth:
- swapBack() (#612)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#627)
Reentrancy in BabyAetherius._transferFrom(address,address,uint256) (#603-629):
External calls:
- swapBack() (#612)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
External calls sending eth:
- swapBack() (#612)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
- triggerAutoBuyback() (#613)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#655)
- amountReceived = takeFee(sender,recipient,amount) (#619)
Reentrancy in BabyAetherius.constructor() (#550-569):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#552)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#568)
Reentrancy in BabyAetherius.swapBack() (#667-709):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#678-684)
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#694)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#699-706)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#707)
Reentrancy in BabyAetherius.triggerManualBuyback(uint256,bool) (#719-725):
External calls:
- buyTokens(amount,DEAD) (#720)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#743-748)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#723)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#438-441) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#439-440)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#28-37) uses assembly
- INLINE ASM (#35)
Address._functionCallWithValue(address,bytes,uint256,string) (#64-85) uses assembly
- INLINE ASM (#77-80)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#412-436) has costly operations inside a loop:
- currentIndex = 0 (#424)
DividendDistributor.distributeDividend(address) (#443-454) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#448)
DividendDistributor.process(uint256) (#412-436) has costly operations inside a loop:
- currentIndex ++ (#433)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#64-85) is never used and should be removed
Address.functionCall(address,bytes) (#47-49) is never used and should be removed
Address.functionCall(address,bytes,string) (#51-53) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#55-57) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#59-62) is never used and should be removed
Address.isContract(address) (#28-37) is never used and should be removed
Address.sendValue(address,uint256) (#39-45) is never used and should be removed
Context._msgData() (#93-96) is never used and should be removed
Remove unused functions.

Additional information: link

BabyAetherius._maxTxAmount (#502) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 1000
BabyAetherius._maxWalletSize (#503) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 500
BabyAetherius.swapThreshold (#546) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 400
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.2 (#24) 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 Address.sendValue(address,uint256) (#39-45):
- (success) = recipient.call{value: amount}() (#43)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#64-85):
- (success,returndata) = target.call{value: weiValue}(data) (#68)
Low level call in BabyAetherius.swapBack() (#667-709):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#695)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#266) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#370) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#370) is not in mixedCase
Variable DividendDistributor._token (#322) is not in mixedCase
Variable DividendDistributor.AETH (#331) is not in mixedCase
Variable DividendDistributor.WBNB (#332) is not in mixedCase
Parameter BabyAetherius.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#751) is not in mixedCase
Parameter BabyAetherius.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#751) is not in mixedCase
Parameter BabyAetherius.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#751) is not in mixedCase
Parameter BabyAetherius.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#751) is not in mixedCase
Parameter BabyAetherius.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#805) is not in mixedCase
Parameter BabyAetherius.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#805) is not in mixedCase
Parameter BabyAetherius.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#805) is not in mixedCase
Parameter BabyAetherius.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#805) is not in mixedCase
Parameter BabyAetherius.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#805) is not in mixedCase
Parameter BabyAetherius.setFeeReceivers(address,address)._autoLiquidityReceiver (#815) is not in mixedCase
Parameter BabyAetherius.setFeeReceivers(address,address)._marketingFeeReceiver (#815) is not in mixedCase
Parameter BabyAetherius.setSwapBackSettings(bool,uint256)._enabled (#820) is not in mixedCase
Parameter BabyAetherius.setSwapBackSettings(bool,uint256)._amount (#820) is not in mixedCase
Parameter BabyAetherius.setTargetLiquidity(uint256,uint256)._target (#825) is not in mixedCase
Parameter BabyAetherius.setTargetLiquidity(uint256,uint256)._denominator (#825) is not in mixedCase
Parameter BabyAetherius.setDistributionCriteria(uint256,uint256)._minPeriod (#830) is not in mixedCase
Parameter BabyAetherius.setDistributionCriteria(uint256,uint256)._minDistribution (#830) is not in mixedCase
Variable BabyAetherius.AETH (#492) is not in mixedCase
Variable BabyAetherius.WBNB (#493) is not in mixedCase
Variable BabyAetherius.DEAD (#494) is not in mixedCase
Variable BabyAetherius.ZERO (#495) is not in mixedCase
Constant BabyAetherius._name (#497) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyAetherius._symbol (#498) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BabyAetherius._decimals (#499) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BabyAetherius._totalSupply (#501) is not in mixedCase
Variable BabyAetherius._maxTxAmount (#502) is not in mixedCase
Variable BabyAetherius._maxWalletSize (#503) is not in mixedCase
Variable BabyAetherius._balances (#505) is not in mixedCase
Variable BabyAetherius._allowances (#506) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#94)" inContext (#88-97)
Remove redundant statements if they congest code but offer no value.

Additional information: link

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

Additional information: link

BabyAetherius.slitherConstructorVariables() (#488-854) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#494)
BabyAetherius.slitherConstructorVariables() (#488-854) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#495)
BabyAetherius.slitherConstructorVariables() (#488-854) uses literals with too many digits:
- distributorGas = 500000 (#543)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyAetherius.AETH (#492) is never used in BabyAetherius (#488-854)
Remove unused state variables.

Additional information: link

BabyAetherius.AETH (#492) should be constant
BabyAetherius.DEAD (#494) should be constant
BabyAetherius.WBNB (#493) should be constant
BabyAetherius.ZERO (#495) should be constant
BabyAetherius._totalSupply (#501) should be constant
DividendDistributor.WBNB (#332) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#345) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#244-247)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#253-257)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average 30d PancakeSwap volume is low.


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


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 number of swaps.


Twitter account link seems to be invalid


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


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


Token has relatively low CoinMarketCap rank

Price for BABYAETH