BEE INU Token Logo

BEEINU [BEE INU] Token

ALERT: rug pull scam

About BEEINU

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years

Website

white paper

$BEEINU is a community driven project based on Binance Smart Chain with a real use case.
Bee Inu project, will progressively develop web game, mobile games and NFT projects. $BEEINU token owners will have privileged access to these developments. Keep BEE INU and get rewards.
Beta version of the first Bee Inu Game project will be launched in April. After the completion of the improvements within the game, normal version will be available on Apple store and Google Play. Our game will be played via web browser. After this mobile game, our medium term goal is to develop a game with full Metaverse experience. Investors who buys NFT from our NFT collections will acquire special talents and strengths within BEE INU games.

Social

Laser Scorebeta Last Audit: 21 June 2022

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

Anti-Scam

Links


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

BEEINU.addLiquidity(uint256,uint256) (#1028-1041) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BEEINU._transfer(address,address,uint256) (#958-985):
External calls:
- swapAndLiquify(contractTokenBalance) (#980)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#980)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#984)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#929)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1156)
- _rOwned[devWallet] = _rOwned[devWallet].add(rdev) (#1149)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rMarketing) (#1136)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1122)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#873)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1167)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1168)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1158)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1106)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1107)
- _tokenTransfer(from,to,amount) (#984)
- _rTotal = _rTotal.sub(rFee) (#884)
- _tokenTransfer(from,to,amount) (#984)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#931)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1166)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#872)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1157)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#874)
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.


Contract ownership is not renounced (belongs to a wallet)

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

Additional information: link

BEEINU.takeBurn(address,uint256,uint256,uint256) (#1114-1125) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1118)
BEEINU.takeMarketing(address,uint256,uint256,uint256) (#1128-1139) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1132)
BEEINU.takeDev(address,uint256,uint256,uint256) (#1141-1152) performs a multiplication on the result of a division:
-tdev = tAmount.div(100).mul(_devFee) (#1145)
Consider ordering multiplication before division.

Additional information: link

BEEINU.addLiquidity(uint256,uint256) (#1028-1041) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
Ensure that all the return values of the function calls are used.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#430-433)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#439-443)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#445-447)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#450-455)
unlock() should be declared external:
- Ownable.unlock() (#458-463)
name() should be declared external:
- BEEINU.name() (#763-765)
symbol() should be declared external:
- BEEINU.symbol() (#767-769)
decimals() should be declared external:
- BEEINU.decimals() (#771-773)
totalSupply() should be declared external:
- BEEINU.totalSupply() (#775-777)
transfer(address,uint256) should be declared external:
- BEEINU.transfer(address,uint256) (#784-787)
allowance(address,address) should be declared external:
- BEEINU.allowance(address,address) (#789-791)
approve(address,uint256) should be declared external:
- BEEINU.approve(address,uint256) (#793-796)
transferFrom(address,address,uint256) should be declared external:
- BEEINU.transferFrom(address,address,uint256) (#798-802)
increaseAllowance(address,uint256) should be declared external:
- BEEINU.increaseAllowance(address,uint256) (#804-807)
decreaseAllowance(address,uint256) should be declared external:
- BEEINU.decreaseAllowance(address,uint256) (#809-812)
isExcludedFromReward(address) should be declared external:
- BEEINU.isExcludedFromReward(address) (#814-816)
totalFees() should be declared external:
- BEEINU.totalFees() (#818-820)
deliver(uint256) should be declared external:
- BEEINU.deliver(uint256) (#822-829)
reflectionFromToken(uint256,bool) should be declared external:
- BEEINU.reflectionFromToken(uint256,bool) (#831-840)
excludeFromReward(address) should be declared external:
- BEEINU.excludeFromReward(address) (#848-855)
isExcludedFromFee(address) should be declared external:
- BEEINU.isExcludedFromFee(address) (#946-948)
excludeFromFee(address) should be declared external:
- BEEINU.excludeFromFee(address) (#1174-1176)
includeInFee(address) should be declared external:
- BEEINU.includeInFee(address) (#1178-1180)
setRouterAddress(address) should be declared external:
- BEEINU.setRouterAddress(address) (#1191-1195)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BEEINU.setSwapAndLiquifyEnabled(bool) (#1197-1200)
Use the external attribute for functions never called from the contract.

Additional information: link

BEEINU.allowance(address,address).owner (#789) shadows:
- Ownable.owner() (#411-413) (function)
BEEINU._approve(address,address,uint256).owner (#950) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.

Additional information: link

BEEINU.setNumTokensSellToAddToLiquidity(uint256,uint256) (#1182-1184) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** decimal (#1183)
BEEINU.setMaxTxAmount(uint256,uint256) (#1186-1189) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** decimal (#1188)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in BEEINU._transfer(address,address,uint256) (#958-985):
External calls:
- swapAndLiquify(contractTokenBalance) (#980)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#980)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#984)
- _burnFee = _previousBurnFee (#1093)
- _burnFee = 0 (#1086)
- _tokenTransfer(from,to,amount) (#984)
- _devFee = _previousDevFee (#1095)
- _devFee = 0 (#1087)
- _tokenTransfer(from,to,amount) (#984)
- _liquidityFee = _previousLiquidityFee (#1092)
- _liquidityFee = 0 (#1084)
- _tokenTransfer(from,to,amount) (#984)
- _marketingFee = _previousmarketingFee (#1094)
- _marketingFee = 0 (#1085)
- _tokenTransfer(from,to,amount) (#984)
- _previousBurnFee = _burnFee (#1080)
- _tokenTransfer(from,to,amount) (#984)
- _previousDevFee = _devFee (#1082)
- _tokenTransfer(from,to,amount) (#984)
- _previousLiquidityFee = _liquidityFee (#1079)
- _tokenTransfer(from,to,amount) (#984)
- _previousTaxFee = _taxFee (#1078)
- _tokenTransfer(from,to,amount) (#984)
- _previousmarketingFee = _marketingFee (#1081)
- _tokenTransfer(from,to,amount) (#984)
- _tFeeTotal = _tFeeTotal.add(tFee) (#885)
- _tokenTransfer(from,to,amount) (#984)
- _taxFee = _previousTaxFee (#1091)
- _taxFee = 0 (#1083)
Reentrancy in BEEINU.constructor() (#743-761):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#750-751)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#757)
- _isExcludedFromFee[address(this)] = true (#758)
- uniswapV2Router = _uniswapV2Router (#754)
Reentrancy in BEEINU.setRouterAddress(address) (#1191-1195):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1193)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1194)
Reentrancy in BEEINU.swapAndLiquify(uint256) (#987-1008):
External calls:
- swapTokensForEth(half) (#999)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
- addLiquidity(otherHalf,newBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1005)
- _allowances[owner][spender] = amount (#954)
Reentrancy in BEEINU.transferFrom(address,address,uint256) (#798-802):
External calls:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
External calls sending eth:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#800)
- _allowances[owner][spender] = amount (#954)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BEEINU._transfer(address,address,uint256) (#958-985):
External calls:
- swapAndLiquify(contractTokenBalance) (#980)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#980)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
Event emitted after the call(s):
- Transfer(sender,deadAddress,tBurn) (#1123)
- _tokenTransfer(from,to,amount) (#984)
- Transfer(sender,devWallet,tdev) (#1150)
- _tokenTransfer(from,to,amount) (#984)
- Transfer(sender,marketingWallet,tMarketing) (#1137)
- _tokenTransfer(from,to,amount) (#984)
- Transfer(sender,recipient,tTransferAmount) (#1161)
- _tokenTransfer(from,to,amount) (#984)
- Transfer(sender,recipient,tTransferAmount) (#1171)
- _tokenTransfer(from,to,amount) (#984)
- Transfer(sender,recipient,tTransferAmount) (#878)
- _tokenTransfer(from,to,amount) (#984)
- Transfer(sender,recipient,tTransferAmount) (#1110)
- _tokenTransfer(from,to,amount) (#984)
Reentrancy in BEEINU.constructor() (#743-761):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#750-751)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#760)
Reentrancy in BEEINU.swapAndLiquify(uint256) (#987-1008):
External calls:
- swapTokensForEth(half) (#999)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
- addLiquidity(otherHalf,newBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1005)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#955)
- addLiquidity(otherHalf,newBalance) (#1005)
- SwapAndLiquify(half,newBalance,otherHalf) (#1007)
Reentrancy in BEEINU.transferFrom(address,address,uint256) (#798-802):
External calls:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1019-1025)
External calls sending eth:
- _transfer(sender,recipient,amount) (#799)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1033-1040)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#955)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#800)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#263-272) uses assembly
- INLINE ASM (#270)
Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) uses assembly
- INLINE ASM (#369-372)
Do not use evm assembly.

Additional information: link

BEEINU.includeInReward(address) (#857-868) has costly operations inside a loop:
- _excluded.pop() (#864)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) is never used and should be removed
Address.functionCall(address,bytes) (#316-318) is never used and should be removed
Address.functionCall(address,bytes,string) (#326-328) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#341-343) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#351-354) is never used and should be removed
Address.isContract(address) (#263-272) is never used and should be removed
Address.sendValue(address,uint256) (#290-296) is never used and should be removed
Context._msgData() (#235-238) is never used and should be removed
SafeMath.mod(uint256,uint256) (#208-210) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#224-227) is never used and should be removed
Remove unused functions.

Additional information: link

BEEINU._rTotal (#693) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BEEINU._previousDevFee (#707) is set pre-construction with a non-constant function or state variable:
- _devFee
BEEINU._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _taxFee
BEEINU._previousLiquidityFee (#709) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BEEINU._previousmarketingFee (#710) is set pre-construction with a non-constant function or state variable:
- _marketingFee
BEEINU._previousBurnFee (#711) is set pre-construction with a non-constant function or state variable:
- _burnFee
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.sendValue(address,uint256) (#290-296):
- (success) = recipient.call{value: amount}() (#294)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#356-377):
- (success,returndata) = target.call{value: weiValue}(data) (#360)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#502) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#503) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#519) is not in mixedCase
Function IUniswapV2Router01.WETH() (#540) is not in mixedCase
Parameter BEEINU.calculateTaxFee(uint256)._amount (#934) is not in mixedCase
Parameter BEEINU.calculateLiquidityFee(uint256)._amount (#940) is not in mixedCase
Parameter BEEINU.setSwapAndLiquifyEnabled(bool)._enabled (#1197) is not in mixedCase
Variable BEEINU._devFee (#701) is not in mixedCase
Variable BEEINU._taxFee (#702) is not in mixedCase
Variable BEEINU._liquidityFee (#703) is not in mixedCase
Variable BEEINU._marketingFee (#704) is not in mixedCase
Variable BEEINU._burnFee (#705) is not in mixedCase
Variable BEEINU._maxTxAmount (#727) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#545) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#546)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU._transferBothExcluded(address,address,uint256).tTransferAmount (#871)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU._getTValues(uint256).tTransferAmount (#897)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU.takeDev(address,uint256,uint256,uint256).rTransferAmount (#1141) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU._transferStandard(address,address,uint256).rTransferAmount (#1102) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1114) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU.reflectionFromToken(uint256,bool).rTransferAmount (#837) is too similar to BEEINU._getValues(uint256).tTransferAmount (#889)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU._transferToExcluded(address,address,uint256).rTransferAmount (#1155) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU._transferToExcluded(address,address,uint256).tTransferAmount (#1155)
Variable BEEINU._getValues(uint256).rTransferAmount (#890) is too similar to BEEINU.takeDev(address,uint256,uint256,uint256).tTransferAmount (#1141)
Variable BEEINU.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1128) is too similar to BEEINU.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1128)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU._transferStandard(address,address,uint256).tTransferAmount (#1102)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1165)
Variable BEEINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#905) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Variable BEEINU._transferBothExcluded(address,address,uint256).rTransferAmount (#871) is too similar to BEEINU.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1114)
Prevent variables from having similar names.

Additional information: link

BEEINU.slitherConstructorVariables() (#678-1203) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#692)
BEEINU.slitherConstructorVariables() (#678-1203) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#716)
BEEINU.slitherConstructorVariables() (#678-1203) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000000 * 10 ** 9 (#726)
BEEINU.slitherConstructorVariables() (#678-1203) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 9 (#727)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BEEINU._decimals (#698) should be constant
BEEINU._name (#696) should be constant
BEEINU._symbol (#697) should be constant
BEEINU._tTotal (#692) should be constant
BEEINU.deadAddress (#716) should be constant
BEEINU.devWallet (#715) should be constant
BEEINU.marketingWallet (#714) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:

Contract has 9% buy tax and 8% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find KYC or doxxing proof


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for BEEINU

News for BEEINU