NotBabyDoge Token Logo

NOTBABY [NotBabyDoge] Token

About NOTBABY

Listings

Token 2 years

Strictly NOT BabyDogeCoin. Hyper deflationary, decentralised with auto rewards. Hold, pet, love & help save the decentralised community. Purpose? To give all other Dogecoins a chance to hit back at the criminals that are Baby Doge and a platform for all upcoming ICO hunters to find a new coin! #DogesTogetherStrong

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

NBD.swapAndLiquify(uint256) (#1030-1072) sends eth to arbitrary user
Dangerous calls:
- _houseWallet.transfer(houseBNBToDonate) (#1071)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in NBD._transfer(address,address,uint256) (#990-1026):
External calls:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1083-1089)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1013)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- _houseWallet.transfer(houseBNBToDonate) (#1071)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1025)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#929)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1139)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1130)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1131)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1150)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#859)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1141)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1151)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#1025)
- _rTotal = _rTotal.sub(rFee) (#884)
- _tokenTransfer(from,to,amount,takeFee) (#1025)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#931)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#858)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1149)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1140)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#860)
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.

NBD.addLiquidity(uint256,uint256) (#1092-1105) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
Ensure that all the return values of the function calls are used.

Additional information: link

NBD._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.

Additional information: link

NBD.updateNumTokensBeforeLiquify(uint256) (#950-953) should emit an event for:
- numTokensSellToAddToLiquidity = newAmount * 10 ** 9 (#952)
Emit an event for critical parameter changes.

Additional information: link

NBD.updateHouseWallet(address).newWallet (#946) lacks a zero-check on :
- _houseWallet = newWallet (#947)
Check that the address is not zero.

Additional information: link

Reentrancy in NBD.transferFrom(address,address,uint256) (#784-788):
External calls:
- _transfer(sender,recipient,amount) (#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1083-1089)
External calls sending eth:
- _transfer(sender,recipient,amount) (#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- _houseWallet.transfer(houseBNBToDonate) (#1071)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#786)
- _allowances[owner][spender] = amount (#986)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in NBD.transferFrom(address,address,uint256) (#784-788):
External calls:
- _transfer(sender,recipient,amount) (#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1083-1089)
External calls sending eth:
- _transfer(sender,recipient,amount) (#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- _houseWallet.transfer(houseBNBToDonate) (#1071)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#786)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.

Additional information: link

NBD._previousLiquidityFee (#706) 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._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable NBD._liquidityFee (#705) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#239)" inContext (#233-242)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in NBD.transferFrom(address,address,uint256) (#784-788):
External calls:
- _transfer(sender,recipient,amount) (#785)
- _houseWallet.transfer(houseBNBToDonate) (#1071)
External calls sending eth:
- _transfer(sender,recipient,amount) (#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1097-1104)
- _houseWallet.transfer(houseBNBToDonate) (#1071)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#786)
- _allowances[owner][spender] = amount (#986)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#786)
Apply the check-effects-interactions pattern.

Additional information: link

Variable NBD._transferStandard(address,address,uint256).rTransferAmount (#1129) is too similar to NBD._getTValues(uint256).tTransferAmount (#897)
Prevent variables from having similar names.

Additional information: link

NBD._tTotal (#694) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromFee(address) should be declared external:
- NBD.isExcludedFromFee(address) (#978-980)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for NOTBABY