Baby New Year Welcoming 2022 with a moonshot! Contract Address: 0x090Fb12B2710100A885c7fF44ABC7e89C124a117 Buy now on Poocoin New Year’s Eve is coming… A time for new beginnings, a time for new trends and new stories that will shape the future of our species. This is where Baby New Year comes in! We will do a live lottery […]
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
BabyNewYear.swapAndLiquify(address) (#1110-1139) sends eth to arbitrary user
Dangerous calls:
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
BabyNewYear.addLiquidity(address,address,uint256,uint256) (#1158-1172) sends eth to arbitrary user
Dangerous calls:
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BabyNewYear._transfer(address,address,uint256) (#1001-1031):
External calls:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
External calls sending eth:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _liquidityFee = _previousLiquidityFee (#968)
- _liquidityFee = 0 (#962)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _rOwned[address(this)] += rLiquidity (#928)
- _rOwned[sender] -= rAmount (#1074)
- _rOwned[burnAddress] += rBurn (#933)
- _rOwned[recipient] += rTransferAmount (#1079)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _rTotal = _rTotal - rFee (#826)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _tOwned[address(this)] += tLiquidity (#930)
- _tOwned[sender] -= tAmount (#1076)
- _tOwned[recipient] += tTransferAmount (#1078)
- _tOwned[burnAddress] += tBurn (#935)
Apply the check-effects-interactions pattern.
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.
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.
BabyNewYear._takeLiquidity(uint256) (#921-939) performs a multiplication on the result of a division:
-tBurn = (tLiquidity * totalFeesToBurn) / _liquidityFee (#924)
-rBurn = tBurn * currentRate (#925)
Consider ordering multiplication before division.
Additional information: link
BabyNewYear.addLiquidity(address,address,uint256,uint256) (#1158-1172) ignores return value by markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
Ensure that all the return values of the function calls are used.
Additional information: link
BabyNewYear.allowance(address,address)._owner (#678) shadows:
- Ownable._owner (#42) (state variable)
BabyNewYear._approve(address,address,uint256)._owner (#982) shadows:
- Ownable._owner (#42) (state variable)
BabyNewYear.addLiquidity(address,address,uint256,uint256).owner (#1160) shadows:
- Ownable.owner() (#56-58) (function)
Rename the local variables that shadow another component.
Additional information: link
BabyNewYear.setTaxFeePercent(uint256) (#755-759) should emit an event for:
- _taxFee = taxFee (#757)
- _previousTaxFee = _taxFee (#758)
BabyNewYear.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256) (#761-773) should emit an event for:
- _liquidityFee = totalBNBFee (#762)
- _previousLiquidityFee = _liquidityFee (#763)
- totalFeesToLP = _lpFee (#765)
- totalFeesToBurn = _burnFee (#767)
- sellBias = _sellbias (#769)
- previousSellBias = sellBias (#770)
BabyNewYear.setAmountToSell(uint256) (#775-777) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisor (#776)
BabyNewYear.updateGnosisGas(uint256) (#1106-1108) should emit an event for:
- gnosisGas = _amount (#1107)
Emit an event for critical parameter changes.
Additional information: link
BabyNewYear.constructor(address,address)._marketing (#577) lacks a zero-check on :
- marketingWallet = _marketing (#592)
BabyNewYear.constructor(address,address)._liquidity (#577) lacks a zero-check on :
- liquidityWallet = _liquidity (#593)
BabyNewYear.setMarketingWallet(address)._newAddress (#779) lacks a zero-check on :
- marketingWallet = _newAddress (#780)
BabyNewYear.setLiquidityWallet(address)._newAddress (#783) lacks a zero-check on :
- liquidityWallet = _newAddress (#784)
Check that the address is not zero.
Additional information: link
BabyNewYear.swapTokensForEth(address,uint256) (#1141-1156) has external calls inside a loop: path[1] = markets[pair].WETH() (#1147)
BabyNewYear.swapTokensForEth(address,uint256) (#1141-1156) has external calls inside a loop: markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
BabyNewYear.addLiquidity(address,address,uint256,uint256) (#1158-1172) has external calls inside a loop: markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
BabyNewYear.swapAndLiquify(address) (#1110-1139) has external calls inside a loop: (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
BabyNewYear._transfer(address,address,uint256) (#1001-1031) has external calls inside a loop: antisnipe.onPreTransferCheck(from,to,amount) (#1029)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in BabyNewYear._transfer(address,address,uint256) (#1001-1031):
External calls:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
External calls sending eth:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _previousLiquidityFee = _liquidityFee (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _previousTaxFee = _taxFee (#957)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _tFeeTotal = _tFeeTotal + tFee (#827)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- _taxFee = _previousTaxFee (#967)
- _taxFee = 0 (#961)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- previousSellBias = sellBias (#959)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- sellBias = previousSellBias (#969)
- sellBias = 0 (#963)
Reentrancy in BabyNewYear.addMarket(address) (#811-820):
External calls:
- pair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#813-816)
State variables written after the call(s):
- excludeFromReward(pair) (#819)
- _excluded.push(account) (#661)
- excludeFromReward(pair) (#819)
- _isExcludedFromRewards[account] = true (#660)
- excludeFromReward(pair) (#819)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#658)
- liquidityPools[pair] = true (#817)
- markets[pair] = router (#818)
Reentrancy in BabyNewYear.constructor(address,address) (#577-621):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#585-588)
State variables written after the call(s):
- _approve(address(this),routerAddress,_tTotal) (#613)
- _allowances[_owner][spender] = amount (#989)
- _approve(msg.sender,routerAddress,_tTotal) (#614)
- _allowances[_owner][spender] = amount (#989)
- _excluded.push(address(this)) (#601)
- _excluded.push(burnAddress) (#603)
- _excluded.push(msg.sender) (#605)
- _excluded.push(pancakePair) (#607)
- _isExcludedFromFee[owner()] = true (#610)
- _isExcludedFromFee[address(this)] = true (#611)
- _isExcludedFromRewards[address(this)] = true (#600)
- _isExcludedFromRewards[burnAddress] = true (#602)
- _isExcludedFromRewards[msg.sender] = true (#604)
- _isExcludedFromRewards[pancakePair] = true (#606)
- _liqProvWhitelist[msg.sender] = true (#596)
- _taxWhitelist[msg.sender] = true (#595)
- _taxWhitelist[_marketing] = true (#597)
- _taxWhitelist[address(this)] = true (#598)
- antisnipe = IAntiSnipe(0x8EFDb3b642eb2a20607ffe0A56CFefF6a95Df002) (#616)
- liquidityPools[pancakePair] = true (#589)
- liquidityWallet = _liquidity (#593)
- marketingWallet = _marketing (#592)
- markets[pancakePair] = pancakeRouter (#590)
Reentrancy in BabyNewYear.transferFrom(address,address,uint256) (#700-712):
External calls:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
- antisnipe.onPreTransferCheck(from,to,amount) (#1029)
External calls sending eth:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#706-710)
- _allowances[_owner][spender] = amount (#989)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BabyNewYear._transfer(address,address,uint256) (#1001-1031):
External calls:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
External calls sending eth:
- swapAndLiquify(to) (#1018)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
Event emitted after the call(s):
- Transfer(address(this),burnAddress,tBurn) (#937)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
- Transfer(sender,recipient,tTransferAmount) (#1085)
- _tokenTransfer(from,to,amount,takeFee) (#1026)
Reentrancy in BabyNewYear.constructor(address,address) (#577-621):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#585-588)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#990)
- _approve(msg.sender,routerAddress,_tTotal) (#614)
- Approval(_owner,spender,amount) (#990)
- _approve(address(this),routerAddress,_tTotal) (#613)
Reentrancy in BabyNewYear.constructor(address,address) (#577-621):
External calls:
- pancakePair = IPancakeFactory(pancakeRouter.factory()).createPair(address(this),pancakeRouter.WETH()) (#585-588)
- antisnipe.setTokenOwner(msg.sender) (#618)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#620)
Reentrancy in BabyNewYear.swapAndLiquify(address) (#1110-1139):
External calls:
- swapTokensForEth(to,amountToSwap - tokensForLP) (#1118-1121)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1129)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
External calls sending eth:
- addLiquidity(to,liquidityWallet,tokensForLP,bnbToBeAddedToLiquidity) (#1129)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
Event emitted after the call(s):
- SwapAndLiquify(amountToSwap,deltaBalance,tokensForLP) (#1138)
Reentrancy in BabyNewYear.transferFrom(address,address,uint256) (#700-712):
External calls:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
- antisnipe.onPreTransferCheck(from,to,amount) (#1029)
External calls sending eth:
- _transfer(sender,recipient,amount) (#705)
- markets[pair].addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1164-1171)
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#990)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#706-710)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#161-171) uses assembly
- INLINE ASM (#167-169)
Address.verifyCallResult(bool,bytes,string) (#330-350) uses assembly
- INLINE ASM (#342-345)
Do not use evm assembly.
Additional information: link
BabyNewYear.includeInReward(address) (#664-675) has costly operations inside a loop:
- _excluded.pop() (#671)
BabyNewYear._transfer(address,address,uint256) (#1001-1031) has costly operations inside a loop:
- liquidityLaunched = true (#1012)
BabyNewYear.swapping() (#570) has costly operations inside a loop:
- inSwap = true (#570)
BabyNewYear.swapping() (#570) has costly operations inside a loop:
- inSwap = false (#570)
BabyNewYear.removeAllFee() (#954-964) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#957)
BabyNewYear.removeAllFee() (#954-964) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#958)
BabyNewYear.removeAllFee() (#954-964) has costly operations inside a loop:
- previousSellBias = sellBias (#959)
BabyNewYear.removeAllFee() (#954-964) has costly operations inside a loop:
- _taxFee = 0 (#961)
BabyNewYear.removeAllFee() (#954-964) has costly operations inside a loop:
- _liquidityFee = 0 (#962)
BabyNewYear.removeAllFee() (#954-964) has costly operations inside a loop:
- sellBias = 0 (#963)
BabyNewYear._reflectFee(uint256,uint256) (#825-828) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#826)
BabyNewYear._reflectFee(uint256,uint256) (#825-828) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#827)
BabyNewYear.restoreAllFee() (#966-970) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#967)
BabyNewYear.restoreAllFee() (#966-970) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#968)
BabyNewYear.restoreAllFee() (#966-970) has costly operations inside a loop:
- sellBias = previousSellBias (#969)
Use a local variable to hold the loop computation result.
Additional information: link
Address.functionCall(address,bytes) (#214-216) is never used and should be removed
Address.functionCall(address,bytes,string) (#224-230) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#243-249) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#257-268) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#303-305) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#313-322) is never used and should be removed
Address.functionStaticCall(address,bytes) (#276-278) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#286-295) is never used and should be removed
Address.isContract(address) (#161-171) is never used and should be removed
Address.sendValue(address,uint256) (#189-194) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#330-350) is never used and should be removed
Context._msgData() (#24-26) is never used and should be removed
Remove unused functions.
Additional information: link
BabyNewYear._tTotal (#520) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000 * (10 ** _decimals)
BabyNewYear._rTotal (#521) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyNewYear._maxWalletToken (#523) is set pre-construction with a non-constant function or state variable:
- 20000000 * (10 ** _decimals)
BabyNewYear._maxTxAmount (#524) is set pre-construction with a non-constant function or state variable:
- 10000000 * (10 ** _decimals)
BabyNewYear._previousTaxFee (#534) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabyNewYear.previousSellBias (#539) is set pre-construction with a non-constant function or state variable:
- sellBias
BabyNewYear._previousLiquidityFee (#542) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BabyNewYear.minTokenNumberToSell (#544) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1000
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.8.8 (#7) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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) (#189-194):
- (success) = recipient.call{value: amount}() (#192)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#257-268):
- (success,returndata) = target.call{value: value}(data) (#266)
Low level call in Address.functionStaticCall(address,bytes,string) (#286-295):
- (success,returndata) = target.staticcall(data) (#293)
Low level call in Address.functionDelegateCall(address,bytes,string) (#313-322):
- (success,returndata) = target.delegatecall(data) (#320)
Low level call in BabyNewYear.swapAndLiquify(address) (#1110-1139):
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeRouter01.WETH() (#355) is not in mixedCase
Parameter BabyNewYear.setTeamMember(address,bool)._team (#644) is not in mixedCase
Parameter BabyNewYear.setTeamMember(address,bool)._enabled (#644) is not in mixedCase
Parameter BabyNewYear.allowance(address,address)._owner (#678) is not in mixedCase
Parameter BabyNewYear.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._marketingFee (#761) is not in mixedCase
Parameter BabyNewYear.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._lpFee (#761) is not in mixedCase
Parameter BabyNewYear.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._burnFee (#761) is not in mixedCase
Parameter BabyNewYear.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._sellbias (#761) is not in mixedCase
Parameter BabyNewYear.setAmountToSell(uint256)._divisor (#775) is not in mixedCase
Parameter BabyNewYear.setMarketingWallet(address)._newAddress (#779) is not in mixedCase
Parameter BabyNewYear.setLiquidityWallet(address)._newAddress (#783) is not in mixedCase
Parameter BabyNewYear.setLiqidityProviderWhitelisted(address,bool)._address (#787) is not in mixedCase
Parameter BabyNewYear.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#787) is not in mixedCase
Parameter BabyNewYear.getLPWhitelisted(address)._account (#797) is not in mixedCase
Parameter BabyNewYear.setSwapAndLiquifyEnabled(bool)._enabled (#801) is not in mixedCase
Parameter BabyNewYear.addMarket(address)._market (#811) is not in mixedCase
Function BabyNewYear._getRate() (#899-902) is not in mixedCase
Parameter BabyNewYear.calculateTaxFee(uint256,bool)._amount (#941) is not in mixedCase
Parameter BabyNewYear.calculateLiquidityFee(uint256,bool)._amount (#946) is not in mixedCase
Parameter BabyNewYear.activateLP(bool)._enabled (#976) is not in mixedCase
Parameter BabyNewYear.setProtection(IAntiSnipe)._protection (#993) is not in mixedCase
Parameter BabyNewYear.setProtection(bool)._enable (#997) is not in mixedCase
Parameter BabyNewYear.updateGnosisGas(uint256)._amount (#1106) is not in mixedCase
Parameter BabyNewYear.airdrop(address[],uint256[])._addresses (#1174) is not in mixedCase
Parameter BabyNewYear.airdrop(address[],uint256[])._amount (#1174) is not in mixedCase
Variable BabyNewYear._maxWalletToken (#523) is not in mixedCase
Variable BabyNewYear._maxTxAmount (#524) is not in mixedCase
Variable BabyNewYear._taxFee (#533) is not in mixedCase
Variable BabyNewYear._liquidityFee (#541) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#360) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#361)
Variable BabyNewYear._getValues(uint256,bool).rTransferAmount (#847) is too similar to BabyNewYear._getTValues(uint256,bool).tTransferAmount (#874)
Variable BabyNewYear._getValues(uint256,bool).rTransferAmount (#847) is too similar to BabyNewYear._getValues(uint256,bool).tTransferAmount (#843)
Variable BabyNewYear._getValues(uint256,bool).rTransferAmount (#847) is too similar to BabyNewYear._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BabyNewYear._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BabyNewYear._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BabyNewYear._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BabyNewYear._getTValues(uint256,bool).tTransferAmount (#874)
Variable BabyNewYear._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BabyNewYear._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BabyNewYear._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BabyNewYear._getTValues(uint256,bool).tTransferAmount (#874)
Variable BabyNewYear._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BabyNewYear._getValues(uint256,bool).tTransferAmount (#843)
Variable BabyNewYear._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BabyNewYear._getValues(uint256,bool).tTransferAmount (#843)
Prevent variables from having similar names.
Additional information: link
BabyNewYear.slitherConstructorVariables() (#498-1189) uses literals with too many digits:
- _maxWalletToken = 20000000 * (10 ** _decimals) (#523)
BabyNewYear.slitherConstructorVariables() (#498-1189) uses literals with too many digits:
- _maxTxAmount = 10000000 * (10 ** _decimals) (#524)
BabyNewYear.slitherConstructorVariables() (#498-1189) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#526)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BabyNewYear._decimals (#503) should be constant
BabyNewYear._name (#501) should be constant
BabyNewYear._symbol (#502) should be constant
BabyNewYear.burnAddress (#526) should be constant
BabyNewYear.protectedFrom (#552) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#75-77)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#83-86)
name() should be declared external:
- BabyNewYear.name() (#623-625)
symbol() should be declared external:
- BabyNewYear.symbol() (#627-629)
decimals() should be declared external:
- BabyNewYear.decimals() (#631-633)
totalSupply() should be declared external:
- BabyNewYear.totalSupply() (#635-637)
isExcludedFromReward(address) should be declared external:
- BabyNewYear.isExcludedFromReward(address) (#648-650)
allowance(address,address) should be declared external:
- BabyNewYear.allowance(address,address) (#678-684)
totalFees() should be declared external:
- BabyNewYear.totalFees() (#686-688)
approve(address,uint256) should be declared external:
- BabyNewYear.approve(address,uint256) (#690-693)
transfer(address,uint256) should be declared external:
- BabyNewYear.transfer(address,uint256) (#695-698)
transferFrom(address,address,uint256) should be declared external:
- BabyNewYear.transferFrom(address,address,uint256) (#700-712)
increaseAllowance(address,uint256) should be declared external:
- BabyNewYear.increaseAllowance(address,uint256) (#714-725)
decreaseAllowance(address,uint256) should be declared external:
- BabyNewYear.decreaseAllowance(address,uint256) (#727-738)
setAccountWhitelisted(address,bool) should be declared external:
- BabyNewYear.setAccountWhitelisted(address,bool) (#750-753)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BabyNewYear.setSwapAndLiquifyEnabled(bool) (#801-804)
isWhitelisted(address) should be declared external:
- BabyNewYear.isWhitelisted(address) (#972-974)
excludeFromFee(address) should be declared external:
- BabyNewYear.excludeFromFee(address) (#1098-1100)
includeInFee(address) should be declared external:
- BabyNewYear.includeInFee(address) (#1102-1104)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
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 Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Unable to find Twitter account
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account