DogeKing Boss Token Logo

DogeKing Boss Token

About DogeKing Boss

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 4 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

BABYTOKEN.addLiquidity(uint256,uint256) (#577-590) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BABYTOKEN._transfer(address,address,uint256) (#473-520):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#511)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
- swapAndLiquify(swapTokensAtAmount,taxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#511)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- swapAndLiquify(swapTokensAtAmount,taxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#519)
- _rOwned[address(this)] += rLiquidity (#374)
- _rOwned[address(this)] += rdevelopment (#394)
- _rOwned[address(this)] += rMarketing (#384)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#535)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#536)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#519)
- _rTotal -= rrfi (#363)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#519)
- _tOwned[address(this)] += tMarketing (#382)
- _tOwned[address(this)] += tLiquidity (#372)
- _tOwned[sender] = _tOwned[sender] - tAmount (#529)
- _tOwned[address(this)] += tdevelopment (#392)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#532)
Apply the check-effects-interactions pattern.

Additional information: link

BABYTOKEN.rescueAnyBEP20Tokens(address,address,uint256) (#681-683) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#682)
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.

Contract ticker (DogeKing Boss) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.


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.

BABYTOKEN.swapAndLiquify(uint256,BABYTOKEN.Taxes) (#549-575) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#559)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#560)
BABYTOKEN.swapAndLiquify(uint256,BABYTOKEN.Taxes) (#549-575) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#559)
-marketingAmt = unitBalance * 2 * temp.marketing (#567)
BABYTOKEN.swapAndLiquify(uint256,BABYTOKEN.Taxes) (#549-575) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#559)
-developmentAmt = unitBalance * 2 * temp.development (#571)
Consider ordering multiplication before division.

Additional information: link

BABYTOKEN.addLiquidity(uint256,uint256) (#577-590) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
Ensure that all the return values of the function calls are used.

Additional information: link

BABYTOKEN.allowance(address,address).owner (#253) shadows:
- Ownable.owner() (#54-56) (function)
BABYTOKEN._approve(address,address,uint256).owner (#466) shadows:
- Ownable.owner() (#54-56) (function)
Rename the local variables that shadow another component.

Additional information: link

BABYTOKEN.updateCooldown(bool,uint256) (#632-635) should emit an event for:
- coolDownTime = time * 1 (#633)
BABYTOKEN.updateSwapTokensAtAmount(uint256) (#637-639) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#638)
BABYTOKEN.updateMaxTxLimit(uint256,uint256) (#660-663) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#661)
- maxSellLimit = maxSell * 10 ** decimals() (#662)
BABYTOKEN.updateMaxWalletlimit(uint256) (#665-667) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#666)
Emit an event for critical parameter changes.

Additional information: link

BABYTOKEN.constructor(address)._pair (#209-210) lacks a zero-check on :
- pair = _pair (#213)
BABYTOKEN.updateMarketingWallet(address).newWallet (#623) lacks a zero-check on :
- marketingWallet = newWallet (#624)
BABYTOKEN.updatedevelopmentWallet(address).newWallet (#627) lacks a zero-check on :
- developmentWallet = newWallet (#628)
BABYTOKEN.updateRouterAndPair(address,address).newPair (#669) lacks a zero-check on :
- pair = newPair (#671)
Check that the address is not zero.

Additional information: link

Reentrancy in BABYTOKEN._transfer(address,address,uint256) (#473-520):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#511)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
- swapAndLiquify(swapTokensAtAmount,taxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#511)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- swapAndLiquify(swapTokensAtAmount,taxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#519)
- totFeesPaid.marketing += tMarketing (#378)
- totFeesPaid.development += tdevelopment (#388)
- totFeesPaid.liquidity += tLiquidity (#368)
- totFeesPaid.rfi += trfi (#364)
Reentrancy in BABYTOKEN.constructor(address) (#207-230):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#209-210)
State variables written after the call(s):
- excludeFromReward(pair) (#215)
- _excluded.push(account) (#324)
- excludeFromReward(pair) (#215)
- _isExcluded[account] = true (#323)
- _isExcludedFromFee[address(this)] = true (#218)
- _isExcludedFromFee[owner()] = true (#219)
- _isExcludedFromFee[marketingWallet] = true (#220)
- _isExcludedFromFee[developmentWallet] = true (#221)
- _rOwned[owner()] = _rTotal (#217)
- excludeFromReward(pair) (#215)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#321)
- allowedTransfer[address(this)] = true (#223)
- allowedTransfer[owner()] = true (#224)
- allowedTransfer[pair] = true (#225)
- allowedTransfer[marketingWallet] = true (#226)
- allowedTransfer[developmentWallet] = true (#227)
- pair = _pair (#213)
- router = _router (#212)
Reentrancy in BABYTOKEN.swapAndLiquify(uint256,BABYTOKEN.Taxes) (#549-575):
External calls:
- swapTokensForBNB(toSwap) (#556)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#564)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#564)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#564)
- _allowances[owner][spender] = amount (#469)
Reentrancy in BABYTOKEN.transferFrom(address,address,uint256) (#262-270):
External calls:
- _transfer(sender,recipient,amount) (#263)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
External calls sending eth:
- _transfer(sender,recipient,amount) (#263)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#267)
- _allowances[owner][spender] = amount (#469)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BABYTOKEN._transfer(address,address,uint256) (#473-520):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#511)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
- swapAndLiquify(swapTokensAtAmount,taxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#511)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- swapAndLiquify(swapTokensAtAmount,taxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tdevelopment) (#541)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#519)
- Transfer(sender,recipient,s.tTransferAmount) (#545)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#519)
Reentrancy in BABYTOKEN.constructor(address) (#207-230):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#209-210)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#229)
Reentrancy in BABYTOKEN.swapAndLiquify(uint256,BABYTOKEN.Taxes) (#549-575):
External calls:
- swapTokensForBNB(toSwap) (#556)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#564)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#564)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#470)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#564)
Reentrancy in BABYTOKEN.transferFrom(address,address,uint256) (#262-270):
External calls:
- _transfer(sender,recipient,amount) (#263)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#601-607)
- address(marketingWallet).sendValue(marketingAmt) (#569)
- address(developmentWallet).sendValue(developmentAmt) (#573)
External calls sending eth:
- _transfer(sender,recipient,amount) (#263)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#582-589)
- (success) = recipient.call{value: amount}() (#107)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#470)
- _approve(sender,_msgSender(),currentAllowance - amount) (#267)
Apply the check-effects-interactions pattern.

Additional information: link

BABYTOKEN._transfer(address,address,uint256) (#473-520) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#500)
Avoid relying on block.timestamp.

Additional information: link

BABYTOKEN.setTradingStatus(bool) (#306-310) compares to a boolean constant:
-state == true && genesis_block == 3 (#309)
Remove the equality to the boolean constant.

Additional information: link

BABYTOKEN.includeInReward(address) (#327-338) has costly operations inside a loop:
- _excluded.pop() (#334)
BABYTOKEN._reflectrfi(uint256,uint256) (#362-365) has costly operations inside a loop:
- _rTotal -= rrfi (#363)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#39-42) is never used and should be removed
Remove unused functions.

Additional information: link

BABYTOKEN._tTotal (#149) is set pre-construction with a non-constant function or state variable:
- initialsupply * 10 ** _decimals
BABYTOKEN._rTotal (#150) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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) (#104-109):
- (success) = recipient.call{value: amount}() (#107)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IRouter.WETH() (#85) is not in mixedCase
Struct BABYTOKEN.valuesFromGetValues (#184-196) is not in CapWords
Parameter BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._rfi (#352) is not in mixedCase
Parameter BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._marketing (#352) is not in mixedCase
Parameter BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._liquidity (#352) is not in mixedCase
Parameter BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._development (#352) is not in mixedCase
Parameter BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._rfi (#357) is not in mixedCase
Parameter BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._marketing (#357) is not in mixedCase
Parameter BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._liquidity (#357) is not in mixedCase
Parameter BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._development (#357) is not in mixedCase
Parameter BABYTOKEN.updateSwapEnabled(bool)._enabled (#641) is not in mixedCase
Parameter BABYTOKEN.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#681) is not in mixedCase
Parameter BABYTOKEN.rescueAnyBEP20Tokens(address,address,uint256)._to (#681) is not in mixedCase
Parameter BABYTOKEN.rescueAnyBEP20Tokens(address,address,uint256)._amount (#681) is not in mixedCase
Constant BABYTOKEN._decimals (#145) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BABYTOKEN.genesis_block (#157) is not in mixedCase
Constant BABYTOKEN._name (#162) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BABYTOKEN._symbol (#163) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#40)" inContext (#34-43)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._development (#357) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).rdevelopment (#387)
Variable BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._development (#352) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).rdevelopment (#387)
Variable BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._development (#352) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).tdevelopment (#387)
Variable BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._development (#357) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).tdevelopment (#387)
Variable BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._development (#352) is too similar to BABYTOKEN._getRValues1(BABYTOKEN.valuesFromGetValues,uint256,bool,uint256).rdevelopment (#434)
Variable BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._development (#357) is too similar to BABYTOKEN._getRValues1(BABYTOKEN.valuesFromGetValues,uint256,bool,uint256).rdevelopment (#434)
Variable BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256)._development (#352) is too similar to BABYTOKEN._getRValues2(BABYTOKEN.valuesFromGetValues,bool,uint256).rdevelopment (#439)
Variable BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256)._development (#357) is too similar to BABYTOKEN._getRValues2(BABYTOKEN.valuesFromGetValues,bool,uint256).rdevelopment (#439)
Variable BABYTOKEN._takedevelopment(uint256,uint256).rdevelopment (#387) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).tdevelopment (#387)
Variable BABYTOKEN._getRValues1(BABYTOKEN.valuesFromGetValues,uint256,bool,uint256).rdevelopment (#434) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).tdevelopment (#387)
Variable BABYTOKEN._getRValues2(BABYTOKEN.valuesFromGetValues,bool,uint256).rdevelopment (#439) is too similar to BABYTOKEN._takedevelopment(uint256,uint256).tdevelopment (#387)
Prevent variables from having similar names.

Additional information: link

BABYTOKEN.slitherConstructorVariables() (#113-688) uses literals with too many digits:
- initialsupply = 1000000000000000 (#148)
BABYTOKEN.slitherConstructorVariables() (#113-688) uses literals with too many digits:
- swapTokensAtAmount = 1000000000000000 * 10 ** 18 (#152)
BABYTOKEN.slitherConstructorVariables() (#113-688) uses literals with too many digits:
- maxBuyLimit = 1000000000000000 * 10 ** 18 (#153)
BABYTOKEN.slitherConstructorVariables() (#113-688) uses literals with too many digits:
- maxSellLimit = 1000000000000000 * 10 ** 18 (#154)
BABYTOKEN.slitherConstructorVariables() (#113-688) uses literals with too many digits:
- maxWalletLimit = 1000000000000000 * 10 ** 18 (#155)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BABYTOKEN.initialsupply (#148) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#63-65)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#67-70)
name() should be declared external:
- BABYTOKEN.name() (#233-235)
symbol() should be declared external:
- BABYTOKEN.symbol() (#236-238)
totalSupply() should be declared external:
- BABYTOKEN.totalSupply() (#244-246)
allowance(address,address) should be declared external:
- BABYTOKEN.allowance(address,address) (#253-255)
approve(address,uint256) should be declared external:
- BABYTOKEN.approve(address,uint256) (#257-260)
transferFrom(address,address,uint256) should be declared external:
- BABYTOKEN.transferFrom(address,address,uint256) (#262-270)
increaseAllowance(address,uint256) should be declared external:
- BABYTOKEN.increaseAllowance(address,uint256) (#272-275)
decreaseAllowance(address,uint256) should be declared external:
- BABYTOKEN.decreaseAllowance(address,uint256) (#277-283)
transfer(address,uint256) should be declared external:
- BABYTOKEN.transfer(address,uint256) (#285-289)
isExcludedFromReward(address) should be declared external:
- BABYTOKEN.isExcludedFromReward(address) (#291-293)
reflectionFromToken(uint256,bool) should be declared external:
- BABYTOKEN.reflectionFromToken(uint256,bool) (#295-304)
excludeFromFee(address) should be declared external:
- BABYTOKEN.excludeFromFee(address) (#340-342)
includeInFee(address) should be declared external:
- BABYTOKEN.includeInFee(address) (#344-346)
isExcludedFromFee(address) should be declared external:
- BABYTOKEN.isExcludedFromFee(address) (#348-350)
setTaxes(uint256,uint256,uint256,uint256) should be declared external:
- BABYTOKEN.setTaxes(uint256,uint256,uint256,uint256) (#352-355)
setSellTaxes(uint256,uint256,uint256,uint256) should be declared external:
- BABYTOKEN.setSellTaxes(uint256,uint256,uint256,uint256) (#357-360)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- BABYTOKEN.rescueAnyBEP20Tokens(address,address,uint256) (#681-683)
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.


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


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for DogeKing Boss