BABY DOGE BILLIONAIRE Token Logo

BABYDB [BABY DOGE BILLIONAIRE] Token

About BABYDB

Listings

Token 2 years
CoinMarketCap 2 years
[CoinGecko] alert: Kindly note that there are multiple, distinct projects that share variations of the moniker "Baby Doge". Users are advised to DYOR.
white paper

Baby Doge Billionaire is the son of the legendary Dogecoin dog.

He was born this year and is just like his father. He loves his life as a billionaire. At the same time, he loves all people and animals and is very generous. He strongly rewards all holders with new tokens. He is for the welfare of all animals and would like to give loved dogs and other animals a new home. He is also in foundations. He regularly donates money for this. All happy holders will be richly rewarded and the animals are also very satisfied. Are you ready for the infinite generosity of our Baby Doge Billionaire? Then you are cordially invited to become the proud holder of his tokens.

Social

Laser Scorebeta Last Audit: 7 February 2022

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

Anti-Scam

Links


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

Reentrancy in BabyDogeBillionaire._transfer(address,address,uint256) (#733-777):
External calls:
- swapAndLiquify(contractTokenBalance) (#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#689)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#858)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#867)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#878)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#591)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#859)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#879)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#593)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _rTotal = _rTotal.sub(rFee) (#644)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#691)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#590)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#877)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#868)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#592)
Apply the check-effects-interactions pattern.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

BabyDogeBillionaire.includeInReward(address) (#576-587) has costly operations inside a loop:
- _excluded.pop() (#583)
Use a local variable to hold the loop computation result.

Additional information: link

BabyDogeBillionaire.addLiquidity(uint256,uint256) (#820-833) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Ensure that all the return values of the function calls are used.

Additional information: link

BabyDogeBillionaire.allowance(address,address).owner (#507) shadows:
- Ownable.owner() (#159-161) (function)
BabyDogeBillionaire._approve(address,address,uint256).owner (#725) shadows:
- Ownable.owner() (#159-161) (function)
Rename the local variables that shadow another component.

Additional information: link

BabyDogeBillionaire.setTaxFeePercent(uint256) (#607-609) should emit an event for:
- _taxFee = taxFee (#608)
BabyDogeBillionaire.setLiquidityFeePercent(uint256) (#611-613) should emit an event for:
- _liquidityFee = liquidityFee (#612)
BabyDogeBillionaire.setMaxTxPercent(uint256) (#615-619) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#616-618)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in BabyDogeBillionaire._transfer(address,address,uint256) (#733-777):
External calls:
- swapAndLiquify(contractTokenBalance) (#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _liquidityFee = _previousLiquidityFee (#718)
- _liquidityFee = 0 (#713)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _previousLiquidityFee = _liquidityFee (#710)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _previousTaxFee = _taxFee (#709)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _tFeeTotal = _tFeeTotal.add(tFee) (#645)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- _taxFee = _previousTaxFee (#717)
- _taxFee = 0 (#712)
Reentrancy in BabyDogeBillionaire.constructor() (#463-479):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#468-469)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#475)
- _isExcludedFromFee[address(this)] = true (#476)
- uniswapV2Router = _uniswapV2Router (#472)
Reentrancy in BabyDogeBillionaire.swapAndLiquify(uint256) (#779-800):
External calls:
- swapTokensForEth(half) (#791)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
- addLiquidity(otherHalf,newBalance) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#797)
- _allowances[owner][spender] = amount (#729)
Reentrancy in BabyDogeBillionaire.transferFrom(address,address,uint256) (#516-520):
External calls:
- _transfer(sender,recipient,amount) (#517)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
External calls sending eth:
- _transfer(sender,recipient,amount) (#517)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#518)
- _allowances[owner][spender] = amount (#729)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyDogeBillionaire._transfer(address,address,uint256) (#733-777):
External calls:
- swapAndLiquify(contractTokenBalance) (#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#764)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#862)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- Transfer(sender,recipient,tTransferAmount) (#882)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#776)
- Transfer(sender,recipient,tTransferAmount) (#596)
- _tokenTransfer(from,to,amount,takeFee) (#776)
Reentrancy in BabyDogeBillionaire.constructor() (#463-479):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#468-469)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#478)
Reentrancy in BabyDogeBillionaire.swapAndLiquify(uint256) (#779-800):
External calls:
- swapTokensForEth(half) (#791)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
- addLiquidity(otherHalf,newBalance) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#797)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#730)
- addLiquidity(otherHalf,newBalance) (#797)
- SwapAndLiquify(half,newBalance,otherHalf) (#799)
Reentrancy in BabyDogeBillionaire.transferFrom(address,address,uint256) (#516-520):
External calls:
- _transfer(sender,recipient,amount) (#517)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#811-817)
External calls sending eth:
- _transfer(sender,recipient,amount) (#517)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#825-832)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#730)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#518)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#190-195) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#192)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#91-100) uses assembly
- INLINE ASM (#98)
Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) uses assembly
- INLINE ASM (#135-138)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#126-143) is never used and should be removed
Address.functionCall(address,bytes) (#109-111) is never used and should be removed
Address.functionCall(address,bytes,string) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#117-119) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#121-124) is never used and should be removed
Address.isContract(address) (#91-100) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
Context._msgData() (#84-87) is never used and should be removed
SafeMath.mod(uint256,uint256) (#69-71) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#73-76) is never used and should be removed
Remove unused functions.

Additional information: link

BabyDogeBillionaire._rTotal (#427) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyDogeBillionaire._previousTaxFee (#435) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabyDogeBillionaire._previousLiquidityFee (#438) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#126-143):
- (success,returndata) = target.call{value: weiValue}(data) (#129)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#234) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#235) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#252) is not in mixedCase
Function IUniswapV2Router01.WETH() (#274) is not in mixedCase
Parameter BabyDogeBillionaire.setSwapAndLiquifyEnabled(bool)._enabled (#635) is not in mixedCase
Parameter BabyDogeBillionaire.calculateTaxFee(uint256)._amount (#694) is not in mixedCase
Parameter BabyDogeBillionaire.calculateLiquidityFee(uint256)._amount (#700) is not in mixedCase
Variable BabyDogeBillionaire._taxFee (#434) is not in mixedCase
Variable BabyDogeBillionaire._liquidityFee (#437) is not in mixedCase
Variable BabyDogeBillionaire._maxTxAmount (#446) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#279) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#280)
Variable BabyDogeBillionaire.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire._transferToExcluded(address,address,uint256).rTransferAmount (#866) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferToExcluded(address,address,uint256).rTransferAmount (#866) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire._getValues(uint256).rTransferAmount (#650) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferToExcluded(address,address,uint256).rTransferAmount (#866) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire._getValues(uint256).rTransferAmount (#650) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire._getValues(uint256).rTransferAmount (#650) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire._transferStandard(address,address,uint256).rTransferAmount (#857) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Variable BabyDogeBillionaire._getValues(uint256).rTransferAmount (#650) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Variable BabyDogeBillionaire._transferStandard(address,address,uint256).rTransferAmount (#857) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferFromExcluded(address,address,uint256).rTransferAmount (#876) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferStandard(address,address,uint256).rTransferAmount (#857) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire._transferStandard(address,address,uint256).rTransferAmount (#857) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire._transferFromExcluded(address,address,uint256).rTransferAmount (#876) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferBothExcluded(address,address,uint256).rTransferAmount (#589) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire.reflectionFromToken(uint256,bool).rTransferAmount (#555) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire._transferStandard(address,address,uint256).rTransferAmount (#857) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire._transferFromExcluded(address,address,uint256).rTransferAmount (#876) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire._transferFromExcluded(address,address,uint256).rTransferAmount (#876) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Variable BabyDogeBillionaire._getValues(uint256).rTransferAmount (#650) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire._transferBothExcluded(address,address,uint256).rTransferAmount (#589) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire._transferBothExcluded(address,address,uint256).rTransferAmount (#589) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#665) is too similar to BabyDogeBillionaire._transferBothExcluded(address,address,uint256).tTransferAmount (#589)
Variable BabyDogeBillionaire._transferBothExcluded(address,address,uint256).rTransferAmount (#589) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Variable BabyDogeBillionaire._transferStandard(address,address,uint256).rTransferAmount (#857) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#665) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#665) is too similar to BabyDogeBillionaire._transferFromExcluded(address,address,uint256).tTransferAmount (#876)
Variable BabyDogeBillionaire._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#665) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Variable BabyDogeBillionaire._transferToExcluded(address,address,uint256).rTransferAmount (#866) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire._transferBothExcluded(address,address,uint256).rTransferAmount (#589) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferFromExcluded(address,address,uint256).rTransferAmount (#876) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire._getValues(uint256).rTransferAmount (#650) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Variable BabyDogeBillionaire._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#665) is too similar to BabyDogeBillionaire._transferToExcluded(address,address,uint256).tTransferAmount (#866)
Variable BabyDogeBillionaire._transferBothExcluded(address,address,uint256).rTransferAmount (#589) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire._transferToExcluded(address,address,uint256).rTransferAmount (#866) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire._transferFromExcluded(address,address,uint256).rTransferAmount (#876) is too similar to BabyDogeBillionaire._getTValues(uint256).tTransferAmount (#657)
Variable BabyDogeBillionaire._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#665) is too similar to BabyDogeBillionaire._getValues(uint256).tTransferAmount (#649)
Variable BabyDogeBillionaire._transferToExcluded(address,address,uint256).rTransferAmount (#866) is too similar to BabyDogeBillionaire._transferStandard(address,address,uint256).tTransferAmount (#857)
Prevent variables from having similar names.

Additional information: link

BabyDogeBillionaire.afterPreSale() (#621-626) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 6 * 10 ** 9 (#625)
BabyDogeBillionaire.prepareForPreSale() (#628-633) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#632)
BabyDogeBillionaire.slitherConstructorVariables() (#412-885) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 8 (#426)
BabyDogeBillionaire.slitherConstructorVariables() (#412-885) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 6 * 10 ** 8 (#446)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyDogeBillionaire._decimals (#432) should be constant
BabyDogeBillionaire._name (#430) should be constant
BabyDogeBillionaire._symbol (#431) should be constant
BabyDogeBillionaire._tTotal (#426) should be constant
BabyDogeBillionaire.numTokensSellToAddToLiquidity (#447) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#168-171)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#173-177)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#179-181)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#183-188)
unlock() should be declared external:
- Ownable.unlock() (#190-195)
name() should be declared external:
- BabyDogeBillionaire.name() (#481-483)
symbol() should be declared external:
- BabyDogeBillionaire.symbol() (#485-487)
decimals() should be declared external:
- BabyDogeBillionaire.decimals() (#489-491)
totalSupply() should be declared external:
- BabyDogeBillionaire.totalSupply() (#493-495)
transfer(address,uint256) should be declared external:
- BabyDogeBillionaire.transfer(address,uint256) (#502-505)
allowance(address,address) should be declared external:
- BabyDogeBillionaire.allowance(address,address) (#507-509)
approve(address,uint256) should be declared external:
- BabyDogeBillionaire.approve(address,uint256) (#511-514)
transferFrom(address,address,uint256) should be declared external:
- BabyDogeBillionaire.transferFrom(address,address,uint256) (#516-520)
increaseAllowance(address,uint256) should be declared external:
- BabyDogeBillionaire.increaseAllowance(address,uint256) (#522-525)
decreaseAllowance(address,uint256) should be declared external:
- BabyDogeBillionaire.decreaseAllowance(address,uint256) (#527-530)
isExcludedFromReward(address) should be declared external:
- BabyDogeBillionaire.isExcludedFromReward(address) (#532-534)
totalFees() should be declared external:
- BabyDogeBillionaire.totalFees() (#536-538)
deliver(uint256) should be declared external:
- BabyDogeBillionaire.deliver(uint256) (#540-547)
reflectionFromToken(uint256,bool) should be declared external:
- BabyDogeBillionaire.reflectionFromToken(uint256,bool) (#549-558)
excludeFromReward(address) should be declared external:
- BabyDogeBillionaire.excludeFromReward(address) (#566-574)
excludeFromFee(address) should be declared external:
- BabyDogeBillionaire.excludeFromFee(address) (#599-601)
includeInFee(address) should be declared external:
- BabyDogeBillionaire.includeInFee(address) (#603-605)
isExcludedFromFee(address) should be declared external:
- BabyDogeBillionaire.isExcludedFromFee(address) (#721-723)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Twitter account seems to be suspended

Additional information: link


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token contract audit


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 code repository for the project


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


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for BABYDB