BNBBankToken.transferToAddressETH(address,uint256) (#986-988) sends eth to arbitrary user
Dangerous calls:
- recipient.transfer(amount) (#987)
BNBBankToken.airdrop(address) (#1059-1072) sends eth to arbitrary user
Dangerous calls:
- address(address(uint160(_refer))).transfer(referEth) (#1068)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in BNBBankToken._transfer(address,address,uint256) (#621-669):
External calls:
- swapTokens(contractTokenBalance) (#640)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapTokens(contractTokenBalance) (#640)
- recipient.transfer(amount) (#987)
State variables written after the call(s):
- removeAllFee() (#651)
- _liquidityFee = 0 (#875)
- _liquidityFee = _buyLiquidityFee (#653)
- removeAllFee() (#658)
- _liquidityFee = 0 (#875)
- _liquidityFee = _sellLiquidityFee (#660)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _liquidityFee = _previousLiquidityFee (#881)
- _liquidityFee = 0 (#875)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#851)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#797)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#799)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rTotal = _rTotal.sub(rFee) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#853)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#786)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#796)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#777)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#798)
Apply the check-effects-interactions pattern.
Additional information: link
BNBBankToken.swapTokenForTokens(address,address,uint256) (#720-723) ignores return value by tokenC.transfer(account,amount) (#722)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Contract ownership is not renounced (belongs to a wallet)
BNBBankToken.swapTokens(uint256) (#671-680) performs a multiplication on the result of a division:
-marketingBnb = transferredBalance.div(_liquidityFee).mul(marketingDivisor) (#676)
BNBBankToken.swapTokens(uint256) (#671-680) performs a multiplication on the result of a division:
-charityBnb = transferredBalance.div(_liquidityFee).mul(charityDivisor) (#677)
BNBBankToken._transferStandard(address,address,uint256) (#758-772) performs a multiplication on the result of a division:
-tBurnAmount = tAmount.div(100).mul(_burnFee) (#761)
Consider ordering multiplication before division.
Additional information: link
BNBBankToken.addLiquidity(uint256,uint256) (#725-738) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#730-737)
Ensure that all the return values of the function calls are used.
Additional information: link
BNBBankToken.allowance(address,address).owner (#525) shadows:
- Ownable.owner() (#178-180) (function)
BNBBankToken._approve(address,address,uint256).owner (#613) shadows:
- Ownable.owner() (#178-180) (function)
Rename the local variables that shadow another component.
Additional information: link
BNBBankToken.setTaxFeePercent(uint256) (#897-899) should emit an event for:
- _taxFee = taxFee (#898)
BNBBankToken.setLiquidityFeePercent(uint256) (#901-903) should emit an event for:
- _liquidityFee = liquidityFee (#902)
BNBBankToken.setBuyTaxFeePercent(uint256) (#905-907) should emit an event for:
- _buyTaxFee = buyTaxFee (#906)
BNBBankToken.setBuyLiquidityFeePercent(uint256) (#909-911) should emit an event for:
- _buyLiquidityFee = buyLiquidityFee (#910)
BNBBankToken.setSellTaxFeePercent(uint256) (#913-915) should emit an event for:
- _sellTaxFee = sellTaxFee (#914)
BNBBankToken.setSellLiquidityFeePercent(uint256) (#917-919) should emit an event for:
- _sellLiquidityFee = sellLiquidityFee (#918)
BNBBankToken.setBurnFeePercent(uint256) (#921-923) should emit an event for:
- _burnFee = burnTaxFee (#922)
BNBBankToken.setMaxTxAmount(uint256) (#925-927) should emit an event for:
- _maxTxAmount = maxTxAmount (#926)
BNBBankToken.setMarketingFeePercent(uint256) (#929-931) should emit an event for:
- marketingDivisor = divisor (#930)
BNBBankToken.setCharityFeePercent(uint256) (#933-935) should emit an event for:
- charityDivisor = divisor (#934)
BNBBankToken.setNumTokensSellToAddToLiquidity(uint256) (#937-939) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#938)
BNBBankToken.setALLFeePercent(uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#941-951) should emit an event for:
- charityDivisor = charity (#942)
- marketingDivisor = marketting (#943)
- _burnFee = burnTaxFee (#944)
- _sellLiquidityFee = sellLiquidityFee (#945)
- _sellTaxFee = sellTaxFee (#946)
- _buyLiquidityFee = buyLiquidityFee (#947)
- _buyTaxFee = buyTaxFee (#948)
- _liquidityFee = liquidityFee (#949)
- _taxFee = taxFee (#950)
BNBBankToken.set(uint8,uint256) (#1029-1057) should emit an event for:
- _referEth = value (#1037)
- _referToken = value (#1039)
- _airdropEth = value (#1041)
- _airdropToken = value (#1043)
- salePrice = value (#1047)
- _airdorpBnb = value (#1050)
- _buyBnb = value (#1052)
Emit an event for critical parameter changes.
Additional information: link
BNBBankToken.setMarketingAddress(address)._marketingAddress (#953) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#954)
BNBBankToken.setCharityAddress(address)._newaddress (#958) lacks a zero-check on :
- charityAddress = address(_newaddress) (#959)
BNBBankToken.transferToAddressETH(address,uint256).recipient (#986) lacks a zero-check on :
- recipient.transfer(amount) (#987)
Check that the address is not zero.
Additional information: link
Reentrancy in BNBBankToken._transfer(address,address,uint256) (#621-669):
External calls:
- swapTokens(contractTokenBalance) (#640)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapTokens(contractTokenBalance) (#640)
- recipient.transfer(amount) (#987)
State variables written after the call(s):
- removeAllFee() (#651)
- _burnFee = 0 (#876)
- _burnFee = _previousBurnFee (#654)
- removeAllFee() (#658)
- _burnFee = 0 (#876)
- _burnFee = _previousBurnFee (#661)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _burnFee = _previousBurnFee (#882)
- _burnFee = 0 (#876)
- removeAllFee() (#651)
- _previousBurnFee = _burnFee (#873)
- removeAllFee() (#658)
- _previousBurnFee = _burnFee (#873)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousBurnFee = _burnFee (#873)
- removeAllFee() (#651)
- _previousLiquidityFee = _liquidityFee (#872)
- removeAllFee() (#658)
- _previousLiquidityFee = _liquidityFee (#872)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousLiquidityFee = _liquidityFee (#872)
- removeAllFee() (#651)
- _previousTaxFee = _taxFee (#871)
- removeAllFee() (#658)
- _previousTaxFee = _taxFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousTaxFee = _taxFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tFeeTotal = _tFeeTotal.add(tFee) (#807)
- removeAllFee() (#651)
- _taxFee = 0 (#874)
- _taxFee = _buyTaxFee (#652)
- removeAllFee() (#658)
- _taxFee = 0 (#874)
- _taxFee = _sellTaxFee (#659)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _taxFee = _previousTaxFee (#880)
- _taxFee = 0 (#874)
Reentrancy in BNBBankToken.constructor() (#487-497):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#491-492)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#494)
- _isExcludedFromFee[address(this)] = true (#495)
- uniswapV2Router = _uniswapV2Router (#493)
Reentrancy in BNBBankToken.transferFrom(address,address,uint256) (#534-538):
External calls:
- _transfer(sender,recipient,amount) (#535)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#535)
- recipient.transfer(amount) (#987)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#536)
- _allowances[owner][spender] = amount (#617)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in BNBBankToken._transfer(address,address,uint256) (#621-669):
External calls:
- swapTokens(contractTokenBalance) (#640)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapTokens(contractTokenBalance) (#640)
- recipient.transfer(amount) (#987)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,deadAddress,tBurnAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#668)
Reentrancy in BNBBankToken.constructor() (#487-497):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#491-492)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#496)
Reentrancy in BNBBankToken.swapETHForTokens(uint256) (#703-718):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#710-715)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#717)
Reentrancy in BNBBankToken.swapTokensForEth(uint256) (#683-701):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#700)
Reentrancy in BNBBankToken.transferFrom(address,address,uint256) (#534-538):
External calls:
- _transfer(sender,recipient,amount) (#535)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#535)
- recipient.transfer(amount) (#987)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#618)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#536)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#219-224) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#221)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#107-116) uses assembly
- INLINE ASM (#114)
Address._functionCallWithValue(address,bytes,uint256,string) (#144-161) uses assembly
- INLINE ASM (#153-156)
Do not use evm assembly.
Additional information: link
BNBBankToken.includeInReward(address) (#600-611) has costly operations inside a loop:
- _excluded.pop() (#607)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#144-161) is never used and should be removed
Address.functionCall(address,bytes) (#127-129) is never used and should be removed
Address.functionCall(address,bytes,string) (#131-133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#135-137) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#139-142) is never used and should be removed
Address.isContract(address) (#107-116) is never used and should be removed
Address.sendValue(address,uint256) (#118-124) is never used and should be removed
BNBBankToken.addLiquidity(uint256,uint256) (#725-738) is never used and should be removed
BNBBankToken.swapETHForTokens(uint256) (#703-718) is never used and should be removed
Context._msgData() (#40-43) is never used and should be removed
SafeMath.mod(uint256,uint256) (#95-97) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#99-102) is never used and should be removed
Remove unused functions.
Additional information: link
BNBBankToken._rTotal (#441) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BNBBankToken._previousTaxFee (#450) is set pre-construction with a non-constant function or state variable:
- _taxFee
BNBBankToken._previousLiquidityFee (#453) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BNBBankToken._buyTaxFee (#455) is set pre-construction with a non-constant function or state variable:
- _taxFee
BNBBankToken._buyLiquidityFee (#456) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BNBBankToken._sellTaxFee (#458) is set pre-construction with a non-constant function or state variable:
- _taxFee
BNBBankToken._sellLiquidityFee (#459) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
BNBBankToken._previousBurnFee (#462) 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) (#118-124):
- (success) = recipient.call{value: amount}() (#122)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#144-161):
- (success,returndata) = target.call{value: weiValue}(data) (#147)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._swAuth (#168) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#255) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#256) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#265) is not in mixedCase
Function IUniswapV2Router01.WETH() (#285) is not in mixedCase
Parameter BNBBankToken.calculateTaxFee(uint256)._amount (#856) is not in mixedCase
Parameter BNBBankToken.calculateLiquidityFee(uint256)._amount (#862) is not in mixedCase
Parameter BNBBankToken.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#937) is not in mixedCase
Parameter BNBBankToken.setMarketingAddress(address)._marketingAddress (#953) is not in mixedCase
Parameter BNBBankToken.setCharityAddress(address)._newaddress (#958) is not in mixedCase
Parameter BNBBankToken.setSwapAndLiquifyEnabled(bool)._enabled (#962) is not in mixedCase
Parameter BNBBankToken.airdrop(address)._refer (#1059) is not in mixedCase
Parameter BNBBankToken.buy(address)._refer (#1074) is not in mixedCase
Variable BNBBankToken._taxFee (#449) is not in mixedCase
Variable BNBBankToken._liquidityFee (#452) is not in mixedCase
Variable BNBBankToken._buyTaxFee (#455) is not in mixedCase
Variable BNBBankToken._buyLiquidityFee (#456) is not in mixedCase
Variable BNBBankToken._sellTaxFee (#458) is not in mixedCase
Variable BNBBankToken._sellLiquidityFee (#459) is not in mixedCase
Variable BNBBankToken._burnFee (#461) is not in mixedCase
Variable BNBBankToken._maxTxAmount (#468) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#41)" inContext (#34-44)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in BNBBankToken._transfer(address,address,uint256) (#621-669):
External calls:
- swapTokens(contractTokenBalance) (#640)
- recipient.transfer(amount) (#987)
State variables written after the call(s):
- removeAllFee() (#651)
- _burnFee = 0 (#876)
- _burnFee = _previousBurnFee (#654)
- removeAllFee() (#658)
- _burnFee = 0 (#876)
- _burnFee = _previousBurnFee (#661)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _burnFee = _previousBurnFee (#882)
- _burnFee = 0 (#876)
- removeAllFee() (#651)
- _liquidityFee = 0 (#875)
- _liquidityFee = _buyLiquidityFee (#653)
- removeAllFee() (#658)
- _liquidityFee = 0 (#875)
- _liquidityFee = _sellLiquidityFee (#660)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _liquidityFee = _previousLiquidityFee (#881)
- _liquidityFee = 0 (#875)
- removeAllFee() (#651)
- _previousBurnFee = _burnFee (#873)
- removeAllFee() (#658)
- _previousBurnFee = _burnFee (#873)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousBurnFee = _burnFee (#873)
- removeAllFee() (#651)
- _previousLiquidityFee = _liquidityFee (#872)
- removeAllFee() (#658)
- _previousLiquidityFee = _liquidityFee (#872)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousLiquidityFee = _liquidityFee (#872)
- removeAllFee() (#651)
- _previousTaxFee = _taxFee (#871)
- removeAllFee() (#658)
- _previousTaxFee = _taxFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _previousTaxFee = _taxFee (#871)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#851)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#797)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#787)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#788)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#778)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#799)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#765)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#766)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurnAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _rTotal = _rTotal.sub(rFee) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tFeeTotal = _tFeeTotal.add(tFee) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#853)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#786)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#796)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#777)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#798)
- removeAllFee() (#651)
- _taxFee = 0 (#874)
- _taxFee = _buyTaxFee (#652)
- removeAllFee() (#658)
- _taxFee = 0 (#874)
- _taxFee = _sellTaxFee (#659)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- _taxFee = _previousTaxFee (#880)
- _taxFee = 0 (#874)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,recipient,tTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#668)
- Transfer(sender,deadAddress,tBurnAmount) (#771)
- _tokenTransfer(from,to,amount,takeFee) (#668)
Reentrancy in BNBBankToken.transferFrom(address,address,uint256) (#534-538):
External calls:
- _transfer(sender,recipient,amount) (#535)
- recipient.transfer(amount) (#987)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#536)
- _allowances[owner][spender] = amount (#617)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#618)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#536)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#290) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#291)
Variable BNBBankToken._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken._transferFromExcluded(address,address,uint256).rTransferAmount (#785) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._transferToExcluded(address,address,uint256).rTransferAmount (#775) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable BNBBankToken._transferToExcluded(address,address,uint256).rTransferAmount (#775) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken._transferFromExcluded(address,address,uint256).rTransferAmount (#785) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken._transferToExcluded(address,address,uint256).rTransferAmount (#775) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken._transferBothExcluded(address,address,uint256).rTransferAmount (#795) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken._transferToExcluded(address,address,uint256).rTransferAmount (#775) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken._transferToExcluded(address,address,uint256).rTransferAmount (#775) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._transferFromExcluded(address,address,uint256).rTransferAmount (#785) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken._transferFromExcluded(address,address,uint256).rTransferAmount (#785) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable BNBBankToken._transferToExcluded(address,address,uint256).rTransferAmount (#775) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken._transferFromExcluded(address,address,uint256).rTransferAmount (#785) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable BNBBankToken._transferBothExcluded(address,address,uint256).rTransferAmount (#795) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken._transferFromExcluded(address,address,uint256).rTransferAmount (#785) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken._transferStandard(address,address,uint256).rBurnAmount (#762) is too similar to BNBBankToken._transferStandard(address,address,uint256).tBurnAmount (#761)
Variable BNBBankToken._transferBothExcluded(address,address,uint256).rTransferAmount (#795) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._getValues(uint256).rTransferAmount (#812) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#827) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable BNBBankToken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable BNBBankToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#827) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._getValues(uint256).rTransferAmount (#812) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#827) is too similar to BNBBankToken._getValues(uint256).tTransferAmount (#811)
Variable BNBBankToken._transferBothExcluded(address,address,uint256).rTransferAmount (#795) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken._getValues(uint256).rTransferAmount (#812) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken._getValues(uint256).rTransferAmount (#812) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#827) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to BNBBankToken._transferToExcluded(address,address,uint256).tTransferAmount (#775)
Variable BNBBankToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#827) is too similar to BNBBankToken._transferBothExcluded(address,address,uint256).tTransferAmount (#795)
Variable BNBBankToken._transferBothExcluded(address,address,uint256).rTransferAmount (#795) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken._getValues(uint256).rTransferAmount (#812) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#827) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken.reflectionFromToken(uint256,bool).rTransferAmount (#579) is too similar to BNBBankToken._getTValues(uint256).tTransferAmount (#819)
Variable BNBBankToken._transferStandard(address,address,uint256).rTransferAmount (#760) is too similar to BNBBankToken._transferFromExcluded(address,address,uint256).tTransferAmount (#785)
Variable BNBBankToken._getValues(uint256).rTransferAmount (#812) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Variable BNBBankToken._transferBothExcluded(address,address,uint256).rTransferAmount (#795) is too similar to BNBBankToken._transferStandard(address,address,uint256).tTransferAmount (#760)
Prevent variables from having similar names.
Additional information: link
BNBBankToken.prepareForPreSale() (#968-974) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#973)
BNBBankToken.afterPreSale() (#976-982) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 18 (#981)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#429)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 18 (#440)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** 18 (#468)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- minimumTokensBeforeSwap = 10000000000 * 10 ** 18 (#469)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- _airdropEth = 2000000000000000 (#1010)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- _airdropToken = 500000000000000000000000000 (#1011)
BNBBankToken.slitherConstructorVariables() (#422-1093) uses literals with too many digits:
- salePrice = 1000000000000 (#1019)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BNBBankToken._auth (#1012) is never used in BNBBankToken (#422-1093)
BNBBankToken._auth2 (#1013) is never used in BNBBankToken (#422-1093)
BNBBankToken._authNum (#1014) is never used in BNBBankToken (#422-1093)
Remove unused state variables.
Additional information: link
BNBBankToken._auth (#1012) should be constant
BNBBankToken._auth2 (#1013) should be constant
BNBBankToken._authNum (#1014) should be constant
BNBBankToken._decimals (#446) should be constant
BNBBankToken._name (#444) should be constant
BNBBankToken._symbol (#445) should be constant
BNBBankToken._tTotal (#440) should be constant
BNBBankToken.burnOnBuy (#474) should be constant
BNBBankToken.burnOnSell (#475) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#187-190)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#192-196)
recoverOwnership(address) should be declared external:
- Ownable.recoverOwnership(address) (#198-202)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#204-206)
getTime() should be declared external:
- Ownable.getTime() (#208-210)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#212-217)
unlock() should be declared external:
- Ownable.unlock() (#219-224)
name() should be declared external:
- BNBBankToken.name() (#499-501)
symbol() should be declared external:
- BNBBankToken.symbol() (#503-505)
decimals() should be declared external:
- BNBBankToken.decimals() (#507-509)
totalSupply() should be declared external:
- BNBBankToken.totalSupply() (#511-513)
transfer(address,uint256) should be declared external:
- BNBBankToken.transfer(address,uint256) (#520-523)
allowance(address,address) should be declared external:
- BNBBankToken.allowance(address,address) (#525-527)
approve(address,uint256) should be declared external:
- BNBBankToken.approve(address,uint256) (#529-532)
transferFrom(address,address,uint256) should be declared external:
- BNBBankToken.transferFrom(address,address,uint256) (#534-538)
increaseAllowance(address,uint256) should be declared external:
- BNBBankToken.increaseAllowance(address,uint256) (#540-543)
decreaseAllowance(address,uint256) should be declared external:
- BNBBankToken.decreaseAllowance(address,uint256) (#545-548)
isExcludedFromReward(address) should be declared external:
- BNBBankToken.isExcludedFromReward(address) (#550-552)
totalFees() should be declared external:
- BNBBankToken.totalFees() (#554-556)
minimumTokensBeforeSwapAmount() should be declared external:
- BNBBankToken.minimumTokensBeforeSwapAmount() (#558-560)
deliver(uint256) should be declared external:
- BNBBankToken.deliver(uint256) (#563-570)
reflectionFromToken(uint256,bool) should be declared external:
- BNBBankToken.reflectionFromToken(uint256,bool) (#573-582)
excludeFromReward(address) should be declared external:
- BNBBankToken.excludeFromReward(address) (#590-598)
swapTokenForTokens(address,address,uint256) should be declared external:
- BNBBankToken.swapTokenForTokens(address,address,uint256) (#720-723)
isExcludedFromFee(address) should be declared external:
- BNBBankToken.isExcludedFromFee(address) (#885-887)
excludeFromFee(address) should be declared external:
- BNBBankToken.excludeFromFee(address) (#889-891)
includeInFee(address) should be declared external:
- BNBBankToken.includeInFee(address) (#893-895)
recoverBalance(uint256) should be declared external:
- BNBBankToken.recoverBalance(uint256) (#990-992)
doManualSwapTokens(uint256) should be declared external:
- BNBBankToken.doManualSwapTokens(uint256) (#995-998)
clearAllETH() should be declared external:
- BNBBankToken.clearAllETH() (#1022-1025)
set(uint8,uint256) should be declared external:
- BNBBankToken.set(uint8,uint256) (#1029-1057)
airdrop(address) should be declared external:
- BNBBankToken.airdrop(address) (#1059-1072)
buy(address) should be declared external:
- BNBBankToken.buy(address) (#1074-1090)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 10% buy tax and 5% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Token is deployed only at one blockchain
Unable to find website, listings and other project-related information
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Unable to find Telegram and Twitter accounts