Baby Squid Game Token Logo

BSG [Baby Squid Game] Token

About BSG

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Baby Squid Game is a Low Fee, 100% Secure BSC Gambling/Gaming DAPP
Project with growth Protocols and an experienced team that has a
mission to go to the moon by riding the International Squid Game Hype!

Social

Laser Scorebeta Last Audit: 14 February 2023

report
Token is either risky or in presale. For presale 30+ is a fine score.

BabySquidGame.addLiquidity(uint256,uint256) (#837-847) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabySquidGame._transfer(address,address,uint256) (#776-811):
External calls:
- swapAndLiquify(contractTokenBalance) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _rOwned[_devWalletAddress] = _rOwned[_devWalletAddress].add(rDev) (#725)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#717)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#871)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#872)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#623)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#883)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#894)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#625)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _rTotal = _rTotal.sub(rFee) (#670)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#719)
- _tOwned[_devWalletAddress] = _tOwned[_devWalletAddress].add(tDev) (#727)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#622)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#892)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#882)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#624)
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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

BabySquidGame.includeInReward(address) (#608-619) has costly operations inside a loop:
- _excluded.pop() (#615)
Use a local variable to hold the loop computation result.

Additional information: link

BabySquidGame.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#476-512) performs a multiplication on the result of a division:
-_maxTxAmount = (_tTotal * 5 / 1000) * 10 ** _decimals (#489)
BabySquidGame.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address) (#476-512) performs a multiplication on the result of a division:
-numTokensSellToAddToLiquidity = (_tTotal * 5 / 10000) * 10 ** _decimals (#490)
Consider ordering multiplication before division.

Additional information: link

BabySquidGame.addLiquidity(uint256,uint256) (#837-847) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
Ensure that all the return values of the function calls are used.

Additional information: link

BabySquidGame.allowance(address,address).owner (#540) shadows:
- Ownable.owner() (#204-206) (function)
BabySquidGame._approve(address,address,uint256).owner (#768) shadows:
- Ownable.owner() (#204-206) (function)
Rename the local variables that shadow another component.

Additional information: link

BabySquidGame.setDevFeePercent(uint256) (#644-646) should emit an event for:
- _devFee = devFee (#645)
BabySquidGame.setLiquidityFeePercent(uint256) (#648-650) should emit an event for:
- _liquidityFee = liquidityFee (#649)
BabySquidGame.setMaxTxPercent(uint256) (#652-654) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#653)
BabySquidGame.setTaxFeePercent(uint256) (#640-642) should emit an event for:
- _taxFee = taxFee (#641)
BabySquidGame.setNumTokensSellToAddToLiquidity(uint256) (#908-910) should emit an event for:
- numTokensSellToAddToLiquidity = amountToUpdate (#909)
Emit an event for critical parameter changes.

Additional information: link

BabySquidGame.setDevWalletAddress(address)._addr (#656) lacks a zero-check on :
- _devWalletAddress = _addr (#657)
BabySquidGame.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).tokenOwner (#476) lacks a zero-check on :
- _owner = tokenOwner (#507)
BabySquidGame.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).service (#476) lacks a zero-check on :
- address(service).transfer(msg.value) (#508)
BabySquidGame.constructor(string,string,uint256,uint256,uint256,uint256,uint256,address,address,address,address).feeaddress (#476) lacks a zero-check on :
- _devWalletAddress = feeaddress (#491)
Check that the address is not zero.

Additional information: link

Reentrancy in BabySquidGame.swapAndLiquify(uint256) (#813-821):
External calls:
- swapTokensForEth(half) (#817)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
- addLiquidity(otherHalf,newBalance) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#819)
- _allowances[owner][spender] = amount (#772)
Reentrancy in BabySquidGame._transfer(address,address,uint256) (#776-811):
External calls:
- swapAndLiquify(contractTokenBalance) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _devFee = _previousDevFee (#760)
- _devFee = 0 (#754)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _liquidityFee = _previousLiquidityFee (#761)
- _liquidityFee = 0 (#755)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _previousDevFee = _devFee (#750)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _previousLiquidityFee = _liquidityFee (#751)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _previousTaxFee = _taxFee (#749)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _tFeeTotal = _tFeeTotal.add(tFee) (#671)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- _taxFee = _previousTaxFee (#759)
- _taxFee = 0 (#753)
Reentrancy in BabySquidGame.setRouterAddress(address) (#902-906):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#904)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#905)
Reentrancy in BabySquidGame.transferFrom(address,address,uint256) (#549-553):
External calls:
- _transfer(sender,recipient,amount) (#550)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
External calls sending eth:
- _transfer(sender,recipient,amount) (#550)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#551)
- _allowances[owner][spender] = amount (#772)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabySquidGame.swapAndLiquify(uint256) (#813-821):
External calls:
- swapTokensForEth(half) (#817)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
- addLiquidity(otherHalf,newBalance) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#819)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#773)
- addLiquidity(otherHalf,newBalance) (#819)
- SwapAndLiquify(half,newBalance,otherHalf) (#820)
Reentrancy in BabySquidGame.transferFrom(address,address,uint256) (#549-553):
External calls:
- _transfer(sender,recipient,amount) (#550)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
External calls sending eth:
- _transfer(sender,recipient,amount) (#550)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#773)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#551)
Reentrancy in BabySquidGame._transfer(address,address,uint256) (#776-811):
External calls:
- swapAndLiquify(contractTokenBalance) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#828-834)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#839-846)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#876)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- Transfer(sender,recipient,tTransferAmount) (#898)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- Transfer(sender,recipient,tTransferAmount) (#887)
- _tokenTransfer(from,to,amount,takeFee) (#810)
- Transfer(sender,recipient,tTransferAmount) (#629)
- _tokenTransfer(from,to,amount,takeFee) (#810)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#235-240) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked.) (#237)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#123-127) uses assembly
- INLINE ASM (#125)
Address._verifyCallResult(bool,bytes,string) (#175-188) uses assembly
- INLINE ASM (#180-183)
Do not use evm assembly.

Additional information: link

SafeMath.tryDiv(uint256,uint256) (#47-52) is never used and should be removed
Address.sendValue(address,uint256) (#129-133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#143-145) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#54-59) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#169-173) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#165-167) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#20-26) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#98-103) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#147-152) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#91-96) is never used and should be removed
Context._msgData() (#114-117) is never used and should be removed
Address.functionStaticCall(address,bytes) (#154-156) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
Address._verifyCallResult(bool,bytes,string) (#175-188) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#35-45) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#28-33) is never used and should be removed
Address.isContract(address) (#123-127) is never used and should be removed
Address.functionCall(address,bytes,string) (#139-141) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#158-162) is never used and should be removed
Address.functionCall(address,bytes) (#135-137) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.functionStaticCall(address,bytes,string) (#158-162):
- (success,returndata) = target.staticcall(data) (#160)
Low level call in Address.functionDelegateCall(address,bytes,string) (#169-173):
- (success,returndata) = target.delegatecall(data) (#171)
Low level call in Address.sendValue(address,uint256) (#129-133):
- (success) = recipient.call{value: amount}() (#131)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#147-152):
- (success,returndata) = target.call{value: value}(data) (#150)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter BabySquidGame.setDevWalletAddress(address)._addr (#656) is not in mixedCase
Variable BabySquidGame._devWalletAddress (#442) is not in mixedCase
Variable Ownable._lockTime (#196) is not in mixedCase
Parameter BabySquidGame.calculateLiquidityFee(uint256)._amount (#742) is not in mixedCase
Parameter BabySquidGame.calculateDevFee(uint256)._amount (#736) is not in mixedCase
Variable BabySquidGame._liquidityFee (#454) is not in mixedCase
Parameter BabySquidGame.calculateTaxFee(uint256)._amount (#730) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#268) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#282) is not in mixedCase
Variable BabySquidGame._devFee (#452) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#267) is not in mixedCase
Variable BabySquidGame._taxFee (#450) is not in mixedCase
Variable Ownable._owner (#194) is not in mixedCase
Parameter BabySquidGame.setSwapAndLiquifyEnabled(bool)._enabled (#661) is not in mixedCase
Variable BabySquidGame._maxTxAmount (#460) is not in mixedCase
Function IUniswapV2Router01.WETH() (#300) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#115)" inContext (#109-118)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable BabySquidGame._transferStandard(address,address,uint256).rTransferAmount (#870) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable BabySquidGame._transferStandard(address,address,uint256).rTransferAmount (#870) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame._getValues(uint256).rTransferAmount (#676) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._transferBothExcluded(address,address,uint256).rTransferAmount (#621) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#693) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable BabySquidGame._transferBothExcluded(address,address,uint256).rTransferAmount (#621) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Variable BabySquidGame._transferFromExcluded(address,address,uint256).rTransferAmount (#891) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame._transferBothExcluded(address,address,uint256).rTransferAmount (#621) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Variable BabySquidGame._transferStandard(address,address,uint256).rTransferAmount (#870) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._getValues(uint256).rTransferAmount (#676) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame._getValues(uint256).rTransferAmount (#676) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame._transferFromExcluded(address,address,uint256).rTransferAmount (#891) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#693) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame._getValues(uint256).rTransferAmount (#676) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._transferBothExcluded(address,address,uint256).rTransferAmount (#621) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._transferFromExcluded(address,address,uint256).rTransferAmount (#891) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._transferFromExcluded(address,address,uint256).rTransferAmount (#891) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Variable BabySquidGame.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable BabySquidGame.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#693) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#693) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Variable BabySquidGame._transferFromExcluded(address,address,uint256).rTransferAmount (#891) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#304) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#305)
Variable BabySquidGame.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame._getValues(uint256).rTransferAmount (#676) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Variable BabySquidGame._transferStandard(address,address,uint256).rTransferAmount (#870) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#693) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._transferBothExcluded(address,address,uint256).rTransferAmount (#621) is too similar to BabySquidGame._transferFromExcluded(address,address,uint256).tTransferAmount (#891)
Variable BabySquidGame._transferStandard(address,address,uint256).rTransferAmount (#870) is too similar to BabySquidGame._transferStandard(address,address,uint256).tTransferAmount (#870)
Variable BabySquidGame._getValues(uint256).rTransferAmount (#676) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable BabySquidGame._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#693) is too similar to BabySquidGame._transferBothExcluded(address,address,uint256).tTransferAmount (#621)
Variable BabySquidGame._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Variable BabySquidGame._transferBothExcluded(address,address,uint256).rTransferAmount (#621) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable BabySquidGame._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._transferToExcluded(address,address,uint256).rTransferAmount (#880) is too similar to BabySquidGame._transferToExcluded(address,address,uint256).tTransferAmount (#880)
Variable BabySquidGame._transferFromExcluded(address,address,uint256).rTransferAmount (#891) is too similar to BabySquidGame._getTValues(uint256).tTransferAmount (#684)
Variable BabySquidGame._transferStandard(address,address,uint256).rTransferAmount (#870) is too similar to BabySquidGame._getValues(uint256).tTransferAmount (#675)
Prevent variables from having similar names.

Additional information: link

isExcludedFromFee(address) should be declared external:
- BabySquidGame.isExcludedFromFee(address) (#764-766)
excludeFromFee(address) should be declared external:
- BabySquidGame.excludeFromFee(address) (#632-634)
approve(address,uint256) should be declared external:
- BabySquidGame.approve(address,uint256) (#544-547)
excludeFromReward(address) should be declared external:
- BabySquidGame.excludeFromReward(address) (#599-606)
transferFrom(address,address,uint256) should be declared external:
- BabySquidGame.transferFrom(address,address,uint256) (#549-553)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#213-216)
isExcludedFromReward(address) should be declared external:
- BabySquidGame.isExcludedFromReward(address) (#565-567)
decreaseAllowance(address,uint256) should be declared external:
- BabySquidGame.decreaseAllowance(address,uint256) (#560-563)
decimals() should be declared external:
- BabySquidGame.decimals() (#522-524)
includeInFee(address) should be declared external:
- BabySquidGame.includeInFee(address) (#636-638)
name() should be declared external:
- BabySquidGame.name() (#514-516)
setDevWalletAddress(address) should be declared external:
- BabySquidGame.setDevWalletAddress(address) (#656-658)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BabySquidGame.setSwapAndLiquifyEnabled(bool) (#661-664)
symbol() should be declared external:
- BabySquidGame.symbol() (#518-520)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#219-223)
reflectionFromToken(uint256,bool) should be declared external:
- BabySquidGame.reflectionFromToken(uint256,bool) (#582-591)
setMaxTxPercent(uint256) should be declared external:
- BabySquidGame.setMaxTxPercent(uint256) (#652-654)
increaseAllowance(address,uint256) should be declared external:
- BabySquidGame.increaseAllowance(address,uint256) (#555-558)
unlock() should be declared external:
- Ownable.unlock() (#235-240)
totalSupply() should be declared external:
- BabySquidGame.totalSupply() (#526-528)
allowance(address,address) should be declared external:
- BabySquidGame.allowance(address,address) (#540-542)
transfer(address,uint256) should be declared external:
- BabySquidGame.transfer(address,uint256) (#535-538)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#227-232)
totalFees() should be declared external:
- BabySquidGame.totalFees() (#569-571)
deliver(uint256) should be declared external:
- BabySquidGame.deliver(uint256) (#573-580)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


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


Token is deployed only at one blockchain


Average 30d PancakeSwap volume is low.

Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinGecko

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinGecko listing / rank


Token has relatively low CoinMarketCap rank

Price for BSG

News for BSG