BABY GRIM Token Logo

BABYGRIM [BABY GRIM] Token

ALERT: honeypot scam

About BABYGRIM

Listings

Not Found
Token 2 years

If you have
Telegram
, you can contact
@babygrimonlinee
right away.

Social

Laser Scorebeta Last Audit: 20 February 2022

report
Token seems to be a scam (type: honeypot scam).

Anti-Scam

Links


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

Babygrim.addLiquidity(uint256,uint256) (#629-642) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Babygrim._transfer(address,address,uint256) (#543-585):
External calls:
- swapAndLiquify(contractTokenBalance) (#577)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#577)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _rOwned[to] = _rOwned[to].add(rAmount) (#790)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#697)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#725)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#740)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#698)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#711)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#727)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#741)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#713)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _rTotal = _rTotal.sub(rFee) (#749)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _tOwned[to] = _tOwned[to].add(tAmount) (#792)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#710)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#739)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#726)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#712)
Apply the check-effects-interactions pattern.

Additional information: link

Babygrim.callfeetokens(address,uint256) (#538-540) ignores return value by IBEP20(tokenAddress).transfer(owner(),amount) (#539)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Ownable._lockTime (#80) is never initialized. It is used in:
- Ownable.getUnlockTime() (#112-114)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

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.

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#149) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#150) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#167) is not in mixedCase
Function IUniswapV2Router01.WETH() (#187) is not in mixedCase
Variable Babygrim._marketingWallet (#330) is not in mixedCase
Variable Babygrim._taxFeeBuy (#347) is not in mixedCase
Variable Babygrim._liquidityFeeBuy (#348) is not in mixedCase
Variable Babygrim._marketingFeeBuy (#349) is not in mixedCase
Variable Babygrim._taxFeeSell (#352) is not in mixedCase
Variable Babygrim._liquidityFeeSell (#353) is not in mixedCase
Variable Babygrim._marketingFeeSell (#354) is not in mixedCase
Variable Babygrim._PercentForCashback (#358) is not in mixedCase
Variable Babygrim._maxTxAmount (#360) is not in mixedCase
Variable Babygrim._minTokenBalance (#361) is not in mixedCase
Variable Babygrim._swapAndLiquifyEnabled (#364) is not in mixedCase
Variable Babygrim._uniswapV2Router (#366) is not in mixedCase
Variable Babygrim._uniswapV2Pair (#367) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#5-14)
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 (#192) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#193)
Variable Babygrim.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to Babygrim._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable Babygrim.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to Babygrim._transferFromExcluded(address,address,uint256).tTransferAmount (#735)
Variable Babygrim.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to Babygrim._transferBothExcluded(address,address,uint256).tTransferAmount (#706)
Variable Babygrim._transferStandard(address,address,uint256).rTransferAmount (#695) is too similar to Babygrim._transferBothExcluded(address,address,uint256).tTransferAmount (#706)
Variable Babygrim.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to Babygrim._transferToExcluded(address,address,uint256).tTransferAmount (#721)
Variable Babygrim._transferToExcluded(address,address,uint256).rTransferAmount (#723) is too similar to Babygrim._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable Babygrim._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#766) is too similar to Babygrim._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable Babygrim._transferToExcluded(address,address,uint256).rTransferAmount (#723) is too similar to Babygrim._transferFromExcluded(address,address,uint256).tTransferAmount (#735)
Variable Babygrim._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#766) is too similar to Babygrim._transferFromExcluded(address,address,uint256).tTransferAmount (#735)
Variable Babygrim._transferToExcluded(address,address,uint256).rTransferAmount (#723) is too similar to Babygrim._transferBothExcluded(address,address,uint256).tTransferAmount (#706)
Variable Babygrim._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#766) is too similar to Babygrim._transferBothExcluded(address,address,uint256).tTransferAmount (#706)
Variable Babygrim.reflectionFromToken(uint256,bool).rTransferAmount (#456) is too similar to Babygrim._getTValues(uint256).tTransferAmount (#756)
Variable Babygrim._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#766) is too similar to Babygrim._transferToExcluded(address,address,uint256).tTransferAmount (#721)
Variable Babygrim._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#766) is too similar to Babygrim._getTValues(uint256).tTransferAmount (#756)
Variable Babygrim._transferBothExcluded(address,address,uint256).rTransferAmount (#708) is too similar to Babygrim._transferToExcluded(address,address,uint256).tTransferAmount (#721)
Variable Babygrim._transferToExcluded(address,address,uint256).rTransferAmount (#723) is too similar to Babygrim._getTValues(uint256).tTransferAmount (#756)
Variable Babygrim._transferToExcluded(address,address,uint256).rTransferAmount (#723) is too similar to Babygrim._transferToExcluded(address,address,uint256).tTransferAmount (#721)
Variable Babygrim._transferStandard(address,address,uint256).rTransferAmount (#695) is too similar to Babygrim._transferFromExcluded(address,address,uint256).tTransferAmount (#735)
Variable Babygrim._transferFromExcluded(address,address,uint256).rTransferAmount (#737) is too similar to Babygrim._transferFromExcluded(address,address,uint256).tTransferAmount (#735)
Variable Babygrim._transferStandard(address,address,uint256).rTransferAmount (#695) is too similar to Babygrim._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable Babygrim._transferBothExcluded(address,address,uint256).rTransferAmount (#708) is too similar to Babygrim._transferFromExcluded(address,address,uint256).tTransferAmount (#735)
Variable Babygrim._transferFromExcluded(address,address,uint256).rTransferAmount (#737) is too similar to Babygrim._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable Babygrim._transferBothExcluded(address,address,uint256).rTransferAmount (#708) is too similar to Babygrim._transferStandard(address,address,uint256).tTransferAmount (#693)
Variable Babygrim._transferFromExcluded(address,address,uint256).rTransferAmount (#737) is too similar to Babygrim._transferBothExcluded(address,address,uint256).tTransferAmount (#706)
Variable Babygrim._transferBothExcluded(address,address,uint256).rTransferAmount (#708) is too similar to Babygrim._transferBothExcluded(address,address,uint256).tTransferAmount (#706)
Variable Babygrim._transferStandard(address,address,uint256).rTransferAmount (#695) is too similar to Babygrim._getTValues(uint256).tTransferAmount (#756)
Variable Babygrim._transferFromExcluded(address,address,uint256).rTransferAmount (#737) is too similar to Babygrim._getTValues(uint256).tTransferAmount (#756)
Variable Babygrim._transferStandard(address,address,uint256).rTransferAmount (#695) is too similar to Babygrim._transferToExcluded(address,address,uint256).tTransferAmount (#721)
Variable Babygrim._transferFromExcluded(address,address,uint256).rTransferAmount (#737) is too similar to Babygrim._transferToExcluded(address,address,uint256).tTransferAmount (#721)
Variable Babygrim._transferBothExcluded(address,address,uint256).rTransferAmount (#708) is too similar to Babygrim._getTValues(uint256).tTransferAmount (#756)
Prevent variables from having similar names.

Additional information: link

Babygrim.slitherConstructorVariables() (#320-799) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 18 (#333)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#79) is never used in Babygrim (#320-799)
Remove unused state variables.

Additional information: link

Babygrim._swapAndLiquifyEnabled (#364) should be constant
Babygrim._tTotal (#333) should be constant
Ownable._lockTime (#80) should be constant
Ownable._previousOwner (#79) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#101-104)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#106-110)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#112-114)
totalSupply() should be declared external:
- Babygrim.totalSupply() (#403-405)
transfer(address,uint256) should be declared external:
- Babygrim.transfer(address,uint256) (#410-413)
allowance(address,address) should be declared external:
- Babygrim.allowance(address,address) (#414-416)
approve(address,uint256) should be declared external:
- Babygrim.approve(address,uint256) (#417-420)
transferFrom(address,address,uint256) should be declared external:
- Babygrim.transferFrom(address,address,uint256) (#428-432)
increaseAllowance(address,uint256) should be declared external:
- Babygrim.increaseAllowance(address,uint256) (#433-436)
decreaseAllowance(address,uint256) should be declared external:
- Babygrim.decreaseAllowance(address,uint256) (#437-440)
reflectionFromToken(uint256,bool) should be declared external:
- Babygrim.reflectionFromToken(uint256,bool) (#443-460)
excludeFromReward(address) should be declared external:
- Babygrim.excludeFromReward(address) (#467-475)
totalFees() should be declared external:
- Babygrim.totalFees() (#489-491)
isExcludedFromFee(address) should be declared external:
- Babygrim.isExcludedFromFee(address) (#522-524)
isExcludedFromReward(address) should be declared external:
- Babygrim.isExcludedFromReward(address) (#525-527)
Use the external attribute for functions never called from the contract.

Additional information: link

Pragma version0.8.11 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 is not recommended for deployment
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

Babygrim.reflectionFromToken(uint256,bool).tMarketing_scope_2 (#454) is a local variable never initialized
Babygrim.reflectionFromToken(uint256,bool).tLiquidity_scope_1 (#454) is a local variable never initialized
Babygrim.reflectionFromToken(uint256,bool).tFee_scope_0 (#454) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

Babygrim.addLiquidity(uint256,uint256) (#629-642) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
Ensure that all the return values of the function calls are used.

Additional information: link

Babygrim.allowance(address,address).owner (#414) shadows:
- Ownable.owner() (#92-94) (function)
Babygrim._approve(address,address,uint256).owner (#421) shadows:
- Ownable.owner() (#92-94) (function)
Rename the local variables that shadow another component.

Additional information: link

Babygrim.setBuyFee(uint256,uint256,uint256) (#501-505) should emit an event for:
- _taxFeeBuy = taxFee (#502)
- _liquidityFeeBuy = liquidityFee (#503)
- _marketingFeeBuy = marketingFee (#504)
Babygrim.setSellFee(uint256,uint256,uint256) (#506-510) should emit an event for:
- _taxFeeSell = taxFee (#507)
- _liquidityFeeSell = liquidityFee (#508)
- _marketingFeeSell = marketingFee (#509)
Babygrim.setCashbackPercent(uint256) (#512-514) should emit an event for:
- _PercentForCashback = cashbackPercent (#513)
Babygrim.setMaxTxPercent(uint256) (#515-517) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(100) (#516)
Babygrim.setMinTokenBalance(uint256) (#518-520) should emit an event for:
- _minTokenBalance = minTokenBalance (#519)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor(address).initialOwner (#87) lacks a zero-check on :
- _owner = initialOwner (#88)
Babygrim.constructor(address,address).marketingWallet (#382) lacks a zero-check on :
- _marketingWallet = marketingWallet (#383)
Babygrim.setMarketingWallet(address).marketingWallet (#494) lacks a zero-check on :
- _marketingWallet = marketingWallet (#495)
Babygrim.setUniswapPair(address).p (#532) lacks a zero-check on :
- _uniswapV2Pair = p (#533)
Check that the address is not zero.

Additional information: link

Variable 'Babygrim.reflectionFromToken(uint256,bool).tMarketing (#447)' in Babygrim.reflectionFromToken(uint256,bool) (#443-460) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#454)
Variable 'Babygrim.reflectionFromToken(uint256,bool).tLiquidity (#447)' in Babygrim.reflectionFromToken(uint256,bool) (#443-460) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#454)
Variable 'Babygrim.reflectionFromToken(uint256,bool).tFee (#447)' in Babygrim.reflectionFromToken(uint256,bool) (#443-460) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#454)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in Babygrim._transfer(address,address,uint256) (#543-585):
External calls:
- swapAndLiquify(contractTokenBalance) (#577)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#577)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _liquidityFeeTransfer = 0 (#654)
- _liquidityFeeTransfer = _liquidityFeeBuy (#659)
- _liquidityFeeTransfer = _liquidityFeeSell (#664)
- _liquidityFeeTransfer = previousLiquidityFee (#688)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _marketingFeeTransfer = 0 (#655)
- _marketingFeeTransfer = _marketingFeeBuy (#660)
- _marketingFeeTransfer = _marketingFeeSell (#665)
- _marketingFeeTransfer = previousMarketingFee (#689)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _tFeeTotal = _tFeeTotal.add(tFee) (#750)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- _taxFeeTransfer = 0 (#653)
- _taxFeeTransfer = _taxFeeBuy (#658)
- _taxFeeTransfer = _taxFeeSell (#663)
- _taxFeeTransfer = previousTaxFee (#687)
Reentrancy in Babygrim.constructor(address,address) (#382-398):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#389)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#393)
- _isExcludedFromFee[address(this)] = true (#394)
- _isExcludedFromFee[_marketingWallet] = true (#395)
- _uniswapV2Router = uniswapV2Router (#390)
Reentrancy in Babygrim.swapAndLiquify(uint256) (#586-611):
External calls:
- swapTokensForBnb(half) (#600)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
- addLiquidity(otherHalf,bnbForLiquidity) (#608)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#608)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
State variables written after the call(s):
- addLiquidity(otherHalf,bnbForLiquidity) (#608)
- _allowances[owner][spender] = amount (#425)
Reentrancy in Babygrim.transferFrom(address,address,uint256) (#428-432):
External calls:
- _transfer(sender,recipient,amount) (#429)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
External calls sending eth:
- _transfer(sender,recipient,amount) (#429)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#430)
- _allowances[owner][spender] = amount (#425)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Babygrim._transfer(address,address,uint256) (#543-585):
External calls:
- swapAndLiquify(contractTokenBalance) (#577)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#577)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
Event emitted after the call(s):
- Transfer(from,to,tAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- Transfer(sender,recipient,tTransferAmount) (#703)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- Transfer(sender,recipient,tTransferAmount) (#732)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- Transfer(sender,recipient,tTransferAmount) (#746)
- _tokenTransfer(from,to,amount,takeFee) (#584)
- Transfer(sender,recipient,tTransferAmount) (#718)
- _tokenTransfer(from,to,amount,takeFee) (#584)
Reentrancy in Babygrim.constructor(address,address) (#382-398):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#389)
Event emitted after the call(s):
- Transfer(address(0),cOwner,_tTotal) (#397)
Reentrancy in Babygrim.swapAndLiquify(uint256) (#586-611):
External calls:
- swapTokensForBnb(half) (#600)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
- addLiquidity(otherHalf,bnbForLiquidity) (#608)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
External calls sending eth:
- addLiquidity(otherHalf,bnbForLiquidity) (#608)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#426)
- addLiquidity(otherHalf,bnbForLiquidity) (#608)
- SwapAndLiquify(half,bnbForLiquidity,otherHalf) (#610)
Reentrancy in Babygrim.transferFrom(address,address,uint256) (#428-432):
External calls:
- _transfer(sender,recipient,amount) (#429)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#621-627)
External calls sending eth:
- _transfer(sender,recipient,amount) (#429)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#634-641)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#426)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#430)
Apply the check-effects-interactions pattern.

Additional information: link

Babygrim.includeInReward(address) (#476-488) has costly operations inside a loop:
- _excluded.pop() (#484)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#67-69) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#71-74) is never used and should be removed
Remove unused functions.

Additional information: link

Babygrim._rTotal (#334) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Babygrim._maxTxAmount (#360) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1
Babygrim._minTokenBalance (#361) is set pre-construction with a non-constant function or state variable:
- _tTotal / 4000
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

Holders:

Contract has 10% buy tax and 95% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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


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


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


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


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 verify that token and website are owned by the same team (no listings + unable to find contract on website)


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


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 no active CoinMarketCap listing / rank

Price for BABYGRIM