Baby Montana Token Logo

BMT [Baby Montana] Token

About BMT

Listings

Not Found
Token 2 years

WWW.BABYMONTANA.ORG
BABY MONTANA IS HERE TO KEEP TONY MONTANA'S LEGACY ALIVE 🔥🔥

Social

Laser Scorebeta Last Audit: 11 January 2022

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

Anti-Scam

Links


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

BabyMontana.swapAndLiquify(address) (#1110-1139) sends eth to arbitrary user
Dangerous calls:
- (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
BabyMontana.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 BabyMontana._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.

BabyMontana.slitherConstructorVariables() (#498-1189) uses literals with too many digits:
- _maxWalletToken = 20000000 * (10 ** _decimals) (#523)
BabyMontana.slitherConstructorVariables() (#498-1189) uses literals with too many digits:
- _maxTxAmount = 10000000 * (10 ** _decimals) (#524)
BabyMontana.slitherConstructorVariables() (#498-1189) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#526)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyMontana._decimals (#503) should be constant
BabyMontana._name (#501) should be constant
BabyMontana._symbol (#502) should be constant
BabyMontana.burnAddress (#526) should be constant
BabyMontana.protectedFrom (#552) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

BabyMontana._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

BabyMontana.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

BabyMontana.allowance(address,address)._owner (#678) shadows:
- Ownable._owner (#42) (state variable)
BabyMontana._approve(address,address,uint256)._owner (#982) shadows:
- Ownable._owner (#42) (state variable)
BabyMontana.addLiquidity(address,address,uint256,uint256).owner (#1160) shadows:
- Ownable.owner() (#56-58) (function)
Rename the local variables that shadow another component.

Additional information: link

BabyMontana.setTaxFeePercent(uint256) (#755-759) should emit an event for:
- _taxFee = taxFee (#757)
- _previousTaxFee = _taxFee (#758)
BabyMontana.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)
BabyMontana.setAmountToSell(uint256) (#775-777) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisor (#776)
BabyMontana.updateGnosisGas(uint256) (#1106-1108) should emit an event for:
- gnosisGas = _amount (#1107)
Emit an event for critical parameter changes.

Additional information: link

BabyMontana.constructor(address,address)._marketing (#577) lacks a zero-check on :
- marketingWallet = _marketing (#592)
BabyMontana.constructor(address,address)._liquidity (#577) lacks a zero-check on :
- liquidityWallet = _liquidity (#593)
BabyMontana.setMarketingWallet(address)._newAddress (#779) lacks a zero-check on :
- marketingWallet = _newAddress (#780)
BabyMontana.setLiquidityWallet(address)._newAddress (#783) lacks a zero-check on :
- liquidityWallet = _newAddress (#784)
Check that the address is not zero.

Additional information: link

BabyMontana.swapTokensForEth(address,uint256) (#1141-1156) has external calls inside a loop: path[1] = markets[pair].WETH() (#1147)
BabyMontana.swapTokensForEth(address,uint256) (#1141-1156) has external calls inside a loop: markets[pair].swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1149-1155)
BabyMontana.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)
BabyMontana.swapAndLiquify(address) (#1110-1139) has external calls inside a loop: (sent,data) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1134)
BabyMontana._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 BabyMontana._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 BabyMontana.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 BabyMontana.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 BabyMontana.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 BabyMontana._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 BabyMontana.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 BabyMontana.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 BabyMontana.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 BabyMontana.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

BabyMontana.includeInReward(address) (#664-675) has costly operations inside a loop:
- _excluded.pop() (#671)
BabyMontana._transfer(address,address,uint256) (#1001-1031) has costly operations inside a loop:
- liquidityLaunched = true (#1012)
BabyMontana.swapping() (#570) has costly operations inside a loop:
- inSwap = true (#570)
BabyMontana.swapping() (#570) has costly operations inside a loop:
- inSwap = false (#570)
BabyMontana.removeAllFee() (#954-964) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#957)
BabyMontana.removeAllFee() (#954-964) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#958)
BabyMontana.removeAllFee() (#954-964) has costly operations inside a loop:
- previousSellBias = sellBias (#959)
BabyMontana.removeAllFee() (#954-964) has costly operations inside a loop:
- _taxFee = 0 (#961)
BabyMontana.removeAllFee() (#954-964) has costly operations inside a loop:
- _liquidityFee = 0 (#962)
BabyMontana.removeAllFee() (#954-964) has costly operations inside a loop:
- sellBias = 0 (#963)
BabyMontana._reflectFee(uint256,uint256) (#825-828) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#826)
BabyMontana._reflectFee(uint256,uint256) (#825-828) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#827)
BabyMontana.restoreAllFee() (#966-970) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#967)
BabyMontana.restoreAllFee() (#966-970) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#968)
BabyMontana.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

BabyMontana._tTotal (#520) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000 * (10 ** _decimals)
BabyMontana._rTotal (#521) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyMontana._maxWalletToken (#523) is set pre-construction with a non-constant function or state variable:
- 20000000 * (10 ** _decimals)
BabyMontana._maxTxAmount (#524) is set pre-construction with a non-constant function or state variable:
- 10000000 * (10 ** _decimals)
BabyMontana._previousTaxFee (#534) is set pre-construction with a non-constant function or state variable:
- _taxFee
BabyMontana.previousSellBias (#539) is set pre-construction with a non-constant function or state variable:
- sellBias
BabyMontana._previousLiquidityFee (#542) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BabyMontana.minTokenNumberToSell (#544) is set pre-construction with a non-constant function or state variable:
- _tTotal / 100
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 BabyMontana.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 BabyMontana.setTeamMember(address,bool)._team (#644) is not in mixedCase
Parameter BabyMontana.setTeamMember(address,bool)._enabled (#644) is not in mixedCase
Parameter BabyMontana.allowance(address,address)._owner (#678) is not in mixedCase
Parameter BabyMontana.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._marketingFee (#761) is not in mixedCase
Parameter BabyMontana.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._lpFee (#761) is not in mixedCase
Parameter BabyMontana.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._burnFee (#761) is not in mixedCase
Parameter BabyMontana.setBNBFeePercent(uint256,uint256,uint256,uint256,uint256)._sellbias (#761) is not in mixedCase
Parameter BabyMontana.setAmountToSell(uint256)._divisor (#775) is not in mixedCase
Parameter BabyMontana.setMarketingWallet(address)._newAddress (#779) is not in mixedCase
Parameter BabyMontana.setLiquidityWallet(address)._newAddress (#783) is not in mixedCase
Parameter BabyMontana.setLiqidityProviderWhitelisted(address,bool)._address (#787) is not in mixedCase
Parameter BabyMontana.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#787) is not in mixedCase
Parameter BabyMontana.getLPWhitelisted(address)._account (#797) is not in mixedCase
Parameter BabyMontana.setSwapAndLiquifyEnabled(bool)._enabled (#801) is not in mixedCase
Parameter BabyMontana.addMarket(address)._market (#811) is not in mixedCase
Function BabyMontana._getRate() (#899-902) is not in mixedCase
Parameter BabyMontana.calculateTaxFee(uint256,bool)._amount (#941) is not in mixedCase
Parameter BabyMontana.calculateLiquidityFee(uint256,bool)._amount (#946) is not in mixedCase
Parameter BabyMontana.activateLP(bool)._enabled (#976) is not in mixedCase
Parameter BabyMontana.setProtection(IAntiSnipe)._protection (#993) is not in mixedCase
Parameter BabyMontana.setProtection(bool)._enable (#997) is not in mixedCase
Parameter BabyMontana.updateGnosisGas(uint256)._amount (#1106) is not in mixedCase
Parameter BabyMontana.airdrop(address[],uint256[])._addresses (#1174) is not in mixedCase
Parameter BabyMontana.airdrop(address[],uint256[])._amount (#1174) is not in mixedCase
Variable BabyMontana._maxWalletToken (#523) is not in mixedCase
Variable BabyMontana._maxTxAmount (#524) is not in mixedCase
Variable BabyMontana._taxFee (#533) is not in mixedCase
Variable BabyMontana._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 BabyMontana._getValues(uint256,bool).rTransferAmount (#847) is too similar to BabyMontana._getValues(uint256,bool).tTransferAmount (#843)
Variable BabyMontana._getValues(uint256,bool).rTransferAmount (#847) is too similar to BabyMontana._getTValues(uint256,bool).tTransferAmount (#874)
Variable BabyMontana._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BabyMontana._getValues(uint256,bool).tTransferAmount (#843)
Variable BabyMontana._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BabyMontana._getTValues(uint256,bool).tTransferAmount (#874)
Variable BabyMontana._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BabyMontana._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BabyMontana._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#895) is too similar to BabyMontana._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable BabyMontana._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BabyMontana._getTValues(uint256,bool).tTransferAmount (#874)
Variable BabyMontana._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to BabyMontana._getValues(uint256,bool).tTransferAmount (#843)
Variable BabyMontana._getValues(uint256,bool).rTransferAmount (#847) is too similar to BabyMontana._transferStandard(address,address,uint256).tTransferAmount (#1070)
Prevent variables from having similar names.

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:
- BabyMontana.name() (#623-625)
symbol() should be declared external:
- BabyMontana.symbol() (#627-629)
decimals() should be declared external:
- BabyMontana.decimals() (#631-633)
totalSupply() should be declared external:
- BabyMontana.totalSupply() (#635-637)
isExcludedFromReward(address) should be declared external:
- BabyMontana.isExcludedFromReward(address) (#648-650)
allowance(address,address) should be declared external:
- BabyMontana.allowance(address,address) (#678-684)
totalFees() should be declared external:
- BabyMontana.totalFees() (#686-688)
approve(address,uint256) should be declared external:
- BabyMontana.approve(address,uint256) (#690-693)
transfer(address,uint256) should be declared external:
- BabyMontana.transfer(address,uint256) (#695-698)
transferFrom(address,address,uint256) should be declared external:
- BabyMontana.transferFrom(address,address,uint256) (#700-712)
increaseAllowance(address,uint256) should be declared external:
- BabyMontana.increaseAllowance(address,uint256) (#714-725)
decreaseAllowance(address,uint256) should be declared external:
- BabyMontana.decreaseAllowance(address,uint256) (#727-738)
setAccountWhitelisted(address,bool) should be declared external:
- BabyMontana.setAccountWhitelisted(address,bool) (#750-753)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BabyMontana.setSwapAndLiquifyEnabled(bool) (#801-804)
isWhitelisted(address) should be declared external:
- BabyMontana.isWhitelisted(address) (#972-974)
excludeFromFee(address) should be declared external:
- BabyMontana.excludeFromFee(address) (#1098-1100)
includeInFee(address) should be declared external:
- BabyMontana.includeInFee(address) (#1102-1104)
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.


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


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 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 BMT