BankerDoge Token Logo

BANKER [BankerDoge] Token

ALERT: honeypot scam

About BANKER

Listings

Token 2 years
CoinMarketCap 2 years
white paper

BankerDoge is a DeFi as a Service platform designed to add features such as staking and DeFi lending to any BSC token.

All platform vaults and features boost the $BANKER token price and APY!

Laser Scorebeta Last Audit: 1 February 2022

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

BankerDogeToken.swapETHForTokensAndBurn(uint256) (#941-956) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
BankerDogeToken.swapETHForTokensToHere(uint256) (#958-973) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#965-970)
BankerDogeToken.addLiquidity(uint256,uint256) (#975-988) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

BankerDogeToken._transfer(address,address,uint256) (#753-897) uses a weak PRNG: "_bBSLimit = _bBSLimitMin + uint256(keccak256(bytes)(abi.encodePacked(block.timestamp,block.difficulty))) % (buyBackSellLimit - _bBSLimitMin + 1) (#830)"
Do not use block.timestamp, now or blockhash as a source of randomness

Additional information: link

Reentrancy in BankerDogeToken._transfer(address,address,uint256) (#753-897):
External calls:
- swapTokens(contractTokenBalance) (#816)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
External calls sending eth:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#896)
- _rOwned[vaultRewardAddress] = _rOwned[vaultRewardAddress].add(rVault) (#1101)
- _rOwned[liquidityWallet] = _rOwned[liquidityWallet].add(rLiquidity) (#1094)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1014)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1004)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1026)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1005)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1027)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1039)
- _tokenTransfer(from,to,amount) (#896)
- _rTotal = _rTotal.sub(rFee) (#1047)
- _tokenTransfer(from,to,amount) (#896)
- _tOwned[vaultRewardAddress] = _tOwned[vaultRewardAddress].add(tVault) (#1103)
- _tOwned[liquidityWallet] = _tOwned[liquidityWallet].add(tLiquidity) (#1096)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1036)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1025)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1015)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1038)
- buyBackTokens(_bBSLimit) (#834)
- inSwapAndLiquify = true (#566)
- inSwapAndLiquify = false (#568)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.

BankerDogeToken.includeInReward(address) (#732-743) has costly operations inside a loop:
- _excluded.pop() (#739)
Use a local variable to hold the loop computation result.

Additional information: link

BankerDogeToken._transfer(address,address,uint256) (#753-897) compares to a boolean constant:
-_abmode == true (#764)
BankerDogeToken._transfer(address,address,uint256) (#753-897) compares to a boolean constant:
-_cooldownMode == true (#772)
BankerDogeToken._transfer(address,address,uint256) (#753-897) compares to a boolean constant:
-tradingOpen == true (#760)
BankerDogeToken._transfer(address,address,uint256) (#753-897) compares to a boolean constant:
-_cooldownMode == true (#798)
BankerDogeToken._transfer(address,address,uint256) (#753-897) compares to a boolean constant:
-tradingOpen == false (#767)
BankerDogeToken._transfer(address,address,uint256) (#753-897) compares to a boolean constant:
-require(bool,string)(bots[from] != true,No bot transactions during antibotmode.) (#765)
Remove the equality to the boolean constant.

Additional information: link

BankerDogeToken._transfer(address,address,uint256) (#753-897) performs a multiplication on the result of a division:
-buyBackSellLimit = balance.div(_buyBackDivisor) (#823)
-_bBSLimitMin = buyBackSellLimit.mul(_buyBackRangeRate).div(100) (#827)
BankerDogeToken.swapTokens(uint256) (#899-912) performs a multiplication on the result of a division:
-transferToAddressETH(charityAddress,convertedBalance.div(_liquidityFee).mul(charityDivisor)) (#906)
BankerDogeToken.swapTokens(uint256) (#899-912) performs a multiplication on the result of a division:
-transferToAddressETH(developmentAddress,convertedBalance.div(_liquidityFee).mul(developmentDivisor)) (#908)
BankerDogeToken.swapTokens(uint256) (#899-912) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,convertedBalance.div(_liquidityFee).mul(marketingDivisor)) (#910)
Consider ordering multiplication before division.

Additional information: link

BankerDogeToken.addLiquidity(uint256,uint256) (#975-988) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
Ensure that all the return values of the function calls are used.

Additional information: link

BankerDogeToken.allowance(address,address).owner (#628) shadows:
- Ownable.owner() (#192-194) (function)
BankerDogeToken._approve(address,address,uint256).owner (#745) shadows:
- Ownable.owner() (#192-194) (function)
Rename the local variables that shadow another component.

Additional information: link

BankerDogeToken.SetBuyBackDivisor(uint256) (#1162-1164) should emit an event for:
- _buyBackDivisor = newDivisor (#1163)
BankerDogeToken.SetBuyBackRangeRate(uint256) (#1166-1169) should emit an event for:
- _buyBackRangeRate = newPercent (#1168)
BankerDogeToken.SetSwapMinutes(uint256) (#1175-1177) should emit an event for:
- _intervalMinutesForSwap = newMinutes * 60 (#1176)
BankerDogeToken.setTaxFeePercent(uint256) (#1179-1181) should emit an event for:
- _taxFee = taxFee (#1180)
BankerDogeToken.setVaultFeePercent(uint256) (#1183-1185) should emit an event for:
- _vaultFee = vaultFee (#1184)
BankerDogeToken.setBuyFee(uint256,uint256,uint256) (#1187-1191) should emit an event for:
- _buyTaxFee = buyTaxFee (#1188)
- _buyVaultFee = buyVaultFee (#1189)
- _buyLiquidityFee = buyLiquidityFee (#1190)
BankerDogeToken.setSellFee(uint256,uint256,uint256) (#1193-1197) should emit an event for:
- _sellTaxFee = sellTaxFee (#1194)
- _sellVaultFee = sellVaultFee (#1195)
- _sellLiquidityFee = sellLiquidityFee (#1196)
BankerDogeToken.setLiquidityFeePercent(uint256) (#1199-1201) should emit an event for:
- _liquidityFee = liquidityFee (#1200)
BankerDogeToken.setBuyBackSellLimit(uint256) (#1203-1205) should emit an event for:
- buyBackSellLimit = buyBackSellSetLimit (#1204)
BankerDogeToken.setBuyMaxTxAmount(uint256) (#1207-1209) should emit an event for:
- _bMaxTxAmount = bMaxTxAmount (#1208)
BankerDogeToken.setSellMaxTxAmount(uint256) (#1211-1213) should emit an event for:
- _sMaxTxAmount = sMaxTxAmount (#1212)
BankerDogeToken.setTriggerAmount(uint256) (#1215-1217) should emit an event for:
- _trigger = trigger (#1216)
BankerDogeToken.setMarketingDivisor(uint256) (#1219-1221) should emit an event for:
- marketingDivisor = divisor (#1220)
BankerDogeToken.setDevelopmentDivisor(uint256) (#1223-1225) should emit an event for:
- developmentDivisor = divisor (#1224)
BankerDogeToken.setCharityDivisor(uint256) (#1227-1229) should emit an event for:
- charityDivisor = divisor (#1228)
BankerDogeToken.setNumTokensSellToAddToBuyBack(uint256) (#1231-1233) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#1232)
Emit an event for critical parameter changes.

Additional information: link

BankerDogeToken.setPairAddress(address).newPair (#684) lacks a zero-check on :
- uniswapV2Pair = newPair (#685)
BankerDogeToken.setLiquidityAddress(address).newLiquidityWallet (#689) lacks a zero-check on :
- liquidityWallet = newLiquidityWallet (#690)
BankerDogeToken.setMarketingAddress(address)._marketingAddress (#1235) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#1236)
BankerDogeToken.setDevelopmentAddress(address)._developmentAddress (#1240) lacks a zero-check on :
- developmentAddress = address(_developmentAddress) (#1241)
BankerDogeToken.setCharityAddress(address)._charityAddress (#1245) lacks a zero-check on :
- charityAddress = address(_charityAddress) (#1246)
BankerDogeToken.setVaultAddress(address)._vaultAddress (#1250) lacks a zero-check on :
- vaultRewardAddress = address(_vaultAddress) (#1251)
Check that the address is not zero.

Additional information: link

Reentrancy in BankerDogeToken._transfer(address,address,uint256) (#753-897):
External calls:
- swapTokens(contractTokenBalance) (#816)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
External calls sending eth:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
State variables written after the call(s):
- buyBackSellLimit = balance.div(_buyBackDivisor) (#823)
Reentrancy in BankerDogeToken._transfer(address,address,uint256) (#753-897):
External calls:
- swapTokens(contractTokenBalance) (#816)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
External calls sending eth:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#896)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1048)
- _tempLiquidityFee = 0 (#845)
- _tempLiquidityFee = _liquidityFee (#851)
- _tempLiquidityFee = _buyLiquidityFee (#857)
- _tempLiquidityFee = _sellLiquidityFee (#863)
- _tempLiquidityFee = _addressFees[from]._liquidityFee (#870)
- _tempLiquidityFee = _addressFees[from]._sellLiquidityFee (#876)
- _tempLiquidityFee = _addressFees[to]._liquidityFee (#885)
- _tempLiquidityFee = _addressFees[to]._buyLiquidityFee (#890)
- _tempTaxFee = 0 (#843)
- _tempTaxFee = _taxFee (#849)
- _tempTaxFee = _buyTaxFee (#855)
- _tempTaxFee = _sellTaxFee (#861)
- _tempTaxFee = _addressFees[from]._taxFee (#868)
- _tempTaxFee = _addressFees[from]._sellTaxFee (#874)
- _tempTaxFee = _addressFees[to]._taxFee (#883)
- _tempTaxFee = _addressFees[to]._buyTaxFee (#888)
- _tempVaultFee = 0 (#844)
- _tempVaultFee = _vaultFee (#850)
- _tempVaultFee = _buyVaultFee (#856)
- _tempVaultFee = _sellVaultFee (#862)
- _tempVaultFee = _addressFees[from]._vaultFee (#869)
- _tempVaultFee = _addressFees[from]._sellVaultFee (#875)
- _tempVaultFee = _addressFees[to]._vaultFee (#884)
- _tempVaultFee = _addressFees[to]._buyVaultFee (#889)
Reentrancy in BankerDogeToken.changeRouterVersion(address) (#1307-1320):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1313-1314)
State variables written after the call(s):
- uniswapV2Pair = _pair (#1316)
- uniswapV2Router = _uniswapV2Router (#1319)
Reentrancy in BankerDogeToken.constructor() (#571-600):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#581-582)
State variables written after the call(s):
- excludeFromReward(uniswapV2Pair) (#594)
- _excluded.push(account) (#729)
- excludeFromReward(deadAddress) (#595)
- _excluded.push(account) (#729)
- excludeFromReward(uniswapV2Pair) (#594)
- _isExcluded[account] = true (#728)
- excludeFromReward(deadAddress) (#595)
- _isExcluded[account] = true (#728)
- _isExcludedFromFee[owner()] = true (#587)
- _isExcludedFromFee[liquidityWallet] = true (#588)
- _isExcludedFromFee[marketingAddress] = true (#589)
- _isExcludedFromFee[developmentAddress] = true (#590)
- _isExcludedFromFee[vaultRewardAddress] = true (#591)
- _isExcludedFromFee[charityAddress] = true (#592)
- _startTimeForSwap = block.timestamp (#597)
- excludeFromReward(uniswapV2Pair) (#594)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#726)
- excludeFromReward(deadAddress) (#595)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#726)
- uniswapV2Router = _uniswapV2Router (#584)
Reentrancy in BankerDogeToken.manualSwapAndLiquifyBNB(uint256) (#1333-1354):
External calls:
- swapETHForTokensToHere(half) (#1345)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#965-970)
- addLiquidity(newTokenBalance,otherHalf) (#1351)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
State variables written after the call(s):
- addLiquidity(newTokenBalance,otherHalf) (#1351)
- _allowances[owner][spender] = amount (#749)
Reentrancy in BankerDogeToken.manualSwapAndLiquifyTokens(uint256) (#1357-1378):
External calls:
- swapTokensForEth(half) (#1369)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
- addLiquidity(otherHalf,newBalance) (#1375)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1375)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1375)
- _allowances[owner][spender] = amount (#749)
Reentrancy in BankerDogeToken.setRouterAddressAndCreatePair(address) (#671-675):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#673)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#674)
Reentrancy in BankerDogeToken.transferFrom(address,address,uint256) (#637-641):
External calls:
- _transfer(sender,recipient,amount) (#638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
External calls sending eth:
- _transfer(sender,recipient,amount) (#638)
- recipient.transfer(amount) (#1304)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#639)
- _allowances[owner][spender] = amount (#749)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BankerDogeToken._transfer(address,address,uint256) (#753-897):
External calls:
- swapTokens(contractTokenBalance) (#816)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
External calls sending eth:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#955)
- buyBackTokens(_bBSLimit) (#834)
- Transfer(sender,recipient,tTransferAmount) (#1009)
- _tokenTransfer(from,to,amount) (#896)
- Transfer(sender,recipient,tTransferAmount) (#1031)
- _tokenTransfer(from,to,amount) (#896)
- Transfer(sender,recipient,tTransferAmount) (#1020)
- _tokenTransfer(from,to,amount) (#896)
- Transfer(sender,recipient,tTransferAmount) (#1043)
- _tokenTransfer(from,to,amount) (#896)
Reentrancy in BankerDogeToken.constructor() (#571-600):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#581-582)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#599)
Reentrancy in BankerDogeToken.manualSwapAndLiquifyBNB(uint256) (#1333-1354):
External calls:
- swapETHForTokensToHere(half) (#1345)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#965-970)
- addLiquidity(newTokenBalance,otherHalf) (#1351)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#750)
- addLiquidity(newTokenBalance,otherHalf) (#1351)
- SwapAndLiquifyBNB(half,newTokenBalance,otherHalf) (#1353)
Reentrancy in BankerDogeToken.manualSwapAndLiquifyTokens(uint256) (#1357-1378):
External calls:
- swapTokensForEth(half) (#1369)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
- addLiquidity(otherHalf,newBalance) (#1375)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1375)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#980-987)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#750)
- addLiquidity(otherHalf,newBalance) (#1375)
- SwapAndLiquifyTokens(half,newBalance,otherHalf) (#1377)
Reentrancy in BankerDogeToken.swapETHForTokensAndBurn(uint256) (#941-956):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#955)
Reentrancy in BankerDogeToken.swapETHForTokensToHere(uint256) (#958-973):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,address(this),block.timestamp.add(300)) (#965-970)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#972)
Reentrancy in BankerDogeToken.swapTokensForEth(uint256) (#921-939):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#938)
Reentrancy in BankerDogeToken.transferFrom(address,address,uint256) (#637-641):
External calls:
- _transfer(sender,recipient,amount) (#638)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#930-936)
External calls sending eth:
- _transfer(sender,recipient,amount) (#638)
- recipient.transfer(amount) (#1304)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#750)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#639)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#227-232) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#229)
BankerDogeToken._transfer(address,address,uint256) (#753-897) uses timestamp for comparisons
Dangerous comparisons:
- cooldown[to] > block.timestamp (#773)
- cooldown[to] > block.timestamp + 1680 (#774)
- cooldown[to] > block.timestamp + 79200 (#776)
- cooldown[to] > block.timestamp (#788)
- cooldown[from] > 600 (#799)
- require(bool,string)(cooldown[from] < block.timestamp,Antibotmode active for first few hours: sell cooldown for your address is not elapsed. Sell cooldown is caused by repeat purchases, if you did not repeat purchase just wait 10 minutes.) (#800)
- overMinimumTokenBalance && _startTimeForSwap + _intervalMinutesForSwap <= block.timestamp (#813)
- balance > _bBSLimit (#833)
BankerDogeToken.buyBackTokens(uint256) (#915-919) uses timestamp for comparisons
Dangerous comparisons:
- amount > 0 (#916)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#122-131) uses assembly
- INLINE ASM (#129)
Address._functionCallWithValue(address,bytes,uint256,string) (#159-176) uses assembly
- INLINE ASM (#168-171)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#159-176) is never used and should be removed
Address.functionCall(address,bytes) (#142-144) is never used and should be removed
Address.functionCall(address,bytes,string) (#146-148) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#150-152) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#154-157) is never used and should be removed
Address.isContract(address) (#122-131) is never used and should be removed
Address.sendValue(address,uint256) (#133-139) is never used and should be removed
BankerDogeToken._getSellBnBAmount(uint256) (#1151-1160) is never used and should be removed
Context._msgData() (#45-48) is never used and should be removed
SafeMath.mod(uint256,uint256) (#110-112) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#114-117) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#133-139):
- (success) = recipient.call{value: amount}() (#137)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#159-176):
- (success,returndata) = target.call{value: weiValue}(data) (#162)
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() (#272) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#273) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#289) is not in mixedCase
Function IUniswapV2Router01.WETH() (#310) is not in mixedCase
Parameter BankerDogeToken.calculateTaxFee(uint256)._amount (#1106) is not in mixedCase
Parameter BankerDogeToken.calculateVaultFee(uint256)._amount (#1112) is not in mixedCase
Parameter BankerDogeToken.calculateLiquidityFee(uint256)._amount (#1118) is not in mixedCase
Parameter BankerDogeToken.checkIfOnBotList(address)._address (#1147) is not in mixedCase
Function BankerDogeToken.SetBuyBackDivisor(uint256) (#1162-1164) is not in mixedCase
Function BankerDogeToken.SetBuyBackRangeRate(uint256) (#1166-1169) is not in mixedCase
Function BankerDogeToken.GetSwapMinutes() (#1171-1173) is not in mixedCase
Function BankerDogeToken.SetSwapMinutes(uint256) (#1175-1177) is not in mixedCase
Parameter BankerDogeToken.setNumTokensSellToAddToBuyBack(uint256)._minimumTokensBeforeSwap (#1231) is not in mixedCase
Parameter BankerDogeToken.setMarketingAddress(address)._marketingAddress (#1235) is not in mixedCase
Parameter BankerDogeToken.setDevelopmentAddress(address)._developmentAddress (#1240) is not in mixedCase
Parameter BankerDogeToken.setCharityAddress(address)._charityAddress (#1245) is not in mixedCase
Parameter BankerDogeToken.setVaultAddress(address)._vaultAddress (#1250) is not in mixedCase
Parameter BankerDogeToken.setSwapAndLiquifyEnabled(bool)._enabled (#1255) is not in mixedCase
Parameter BankerDogeToken.setABMode(bool)._enabled (#1260) is not in mixedCase
Parameter BankerDogeToken.setCooldownMode(bool)._enabled (#1265) is not in mixedCase
Parameter BankerDogeToken.setBuyBackEnabled(bool)._enabled (#1270) is not in mixedCase
Parameter BankerDogeToken.setTradingOpen(bool)._status (#1299) is not in mixedCase
Parameter BankerDogeToken.changeRouterVersion(address)._router (#1307) is not in mixedCase
Parameter BankerDogeToken.transferForeignToken(address,address)._token (#1326) is not in mixedCase
Parameter BankerDogeToken.transferForeignToken(address,address)._to (#1326) is not in mixedCase
Function BankerDogeToken.SweepStuck(uint256) (#1381-1383) is not in mixedCase
Parameter BankerDogeToken.SweepStuck(uint256)._amount (#1381) is not in mixedCase
Parameter BankerDogeToken.setAddressFee(address,bool,uint256,uint256,uint256)._address (#1385) is not in mixedCase
Parameter BankerDogeToken.setAddressFee(address,bool,uint256,uint256,uint256)._enable (#1385) is not in mixedCase
Parameter BankerDogeToken.setAddressFee(address,bool,uint256,uint256,uint256)._addressTaxFee (#1385) is not in mixedCase
Parameter BankerDogeToken.setAddressFee(address,bool,uint256,uint256,uint256)._addressVaultFee (#1385) is not in mixedCase
Parameter BankerDogeToken.setAddressFee(address,bool,uint256,uint256,uint256)._addressLiquidityFee (#1385) is not in mixedCase
Parameter BankerDogeToken.setBuyAddressFee(address,bool,uint256,uint256,uint256)._address (#1392) is not in mixedCase
Parameter BankerDogeToken.setBuyAddressFee(address,bool,uint256,uint256,uint256)._enable (#1392) is not in mixedCase
Parameter BankerDogeToken.setBuyAddressFee(address,bool,uint256,uint256,uint256)._addressTaxFee (#1392) is not in mixedCase
Parameter BankerDogeToken.setBuyAddressFee(address,bool,uint256,uint256,uint256)._addressVaultFee (#1392) is not in mixedCase
Parameter BankerDogeToken.setBuyAddressFee(address,bool,uint256,uint256,uint256)._addressLiquidityFee (#1392) is not in mixedCase
Parameter BankerDogeToken.setSellAddressFee(address,bool,uint256,uint256,uint256)._address (#1399) is not in mixedCase
Parameter BankerDogeToken.setSellAddressFee(address,bool,uint256,uint256,uint256)._enable (#1399) is not in mixedCase
Parameter BankerDogeToken.setSellAddressFee(address,bool,uint256,uint256,uint256)._addressTaxFee (#1399) is not in mixedCase
Parameter BankerDogeToken.setSellAddressFee(address,bool,uint256,uint256,uint256)._addressVaultFee (#1399) is not in mixedCase
Parameter BankerDogeToken.setSellAddressFee(address,bool,uint256,uint256,uint256)._addressLiquidityFee (#1399) is not in mixedCase
Constant BankerDogeToken._tTotal (#468) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BankerDogeToken._name (#472) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BankerDogeToken._symbol (#473) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BankerDogeToken._decimals (#474) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BankerDogeToken._taxFee (#489) is not in mixedCase
Variable BankerDogeToken._vaultFee (#490) is not in mixedCase
Variable BankerDogeToken._liquidityFee (#491) is not in mixedCase
Variable BankerDogeToken._buyTaxFee (#498) is not in mixedCase
Variable BankerDogeToken._buyVaultFee (#499) is not in mixedCase
Variable BankerDogeToken._buyLiquidityFee (#500) is not in mixedCase
Variable BankerDogeToken._sellTaxFee (#502) is not in mixedCase
Variable BankerDogeToken._sellVaultFee (#503) is not in mixedCase
Variable BankerDogeToken._sellLiquidityFee (#504) is not in mixedCase
Variable BankerDogeToken._startTimeForSwap (#506) is not in mixedCase
Variable BankerDogeToken._intervalMinutesForSwap (#507) is not in mixedCase
Variable BankerDogeToken._buyBackRangeRate (#509) is not in mixedCase
Variable BankerDogeToken._addressFees (#512) is not in mixedCase
Variable BankerDogeToken._bMaxTxAmount (#518) is not in mixedCase
Variable BankerDogeToken._sMaxTxAmount (#519) is not in mixedCase
Variable BankerDogeToken._buyBackDivisor (#526) is not in mixedCase
Variable BankerDogeToken._buyBackTimeInterval (#527) is not in mixedCase
Variable BankerDogeToken._isEnabledBuyBackAndBurn (#536) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#46)" inContext (#40-49)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in BankerDogeToken._transfer(address,address,uint256) (#753-897):
External calls:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
State variables written after the call(s):
- buyBackSellLimit = balance.div(_buyBackDivisor) (#823)
Reentrancy in BankerDogeToken._transfer(address,address,uint256) (#753-897):
External calls:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
External calls sending eth:
- swapTokens(contractTokenBalance) (#816)
- recipient.transfer(amount) (#1304)
- buyBackTokens(_bBSLimit) (#834)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#896)
- _rOwned[vaultRewardAddress] = _rOwned[vaultRewardAddress].add(rVault) (#1101)
- _rOwned[liquidityWallet] = _rOwned[liquidityWallet].add(rLiquidity) (#1094)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1014)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1004)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1026)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1005)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1027)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1016)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1039)
- _tokenTransfer(from,to,amount) (#896)
- _rTotal = _rTotal.sub(rFee) (#1047)
- _tokenTransfer(from,to,amount) (#896)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1048)
- _tokenTransfer(from,to,amount) (#896)
- _tOwned[vaultRewardAddress] = _tOwned[vaultRewardAddress].add(tVault) (#1103)
- _tOwned[liquidityWallet] = _tOwned[liquidityWallet].add(tLiquidity) (#1096)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1036)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1025)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1015)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1038)
- _tempLiquidityFee = 0 (#845)
- _tempLiquidityFee = _liquidityFee (#851)
- _tempLiquidityFee = _buyLiquidityFee (#857)
- _tempLiquidityFee = _sellLiquidityFee (#863)
- _tempLiquidityFee = _addressFees[from]._liquidityFee (#870)
- _tempLiquidityFee = _addressFees[from]._sellLiquidityFee (#876)
- _tempLiquidityFee = _addressFees[to]._liquidityFee (#885)
- _tempLiquidityFee = _addressFees[to]._buyLiquidityFee (#890)
- _tempTaxFee = 0 (#843)
- _tempTaxFee = _taxFee (#849)
- _tempTaxFee = _buyTaxFee (#855)
- _tempTaxFee = _sellTaxFee (#861)
- _tempTaxFee = _addressFees[from]._taxFee (#868)
- _tempTaxFee = _addressFees[from]._sellTaxFee (#874)
- _tempTaxFee = _addressFees[to]._taxFee (#883)
- _tempTaxFee = _addressFees[to]._buyTaxFee (#888)
- _tempVaultFee = 0 (#844)
- _tempVaultFee = _vaultFee (#850)
- _tempVaultFee = _buyVaultFee (#856)
- _tempVaultFee = _sellVaultFee (#862)
- _tempVaultFee = _addressFees[from]._vaultFee (#869)
- _tempVaultFee = _addressFees[from]._sellVaultFee (#875)
- _tempVaultFee = _addressFees[to]._vaultFee (#884)
- _tempVaultFee = _addressFees[to]._buyVaultFee (#889)
- buyBackTokens(_bBSLimit) (#834)
- inSwapAndLiquify = true (#566)
- inSwapAndLiquify = false (#568)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#955)
- buyBackTokens(_bBSLimit) (#834)
- Transfer(sender,recipient,tTransferAmount) (#1009)
- _tokenTransfer(from,to,amount) (#896)
- Transfer(sender,recipient,tTransferAmount) (#1031)
- _tokenTransfer(from,to,amount) (#896)
- Transfer(sender,recipient,tTransferAmount) (#1020)
- _tokenTransfer(from,to,amount) (#896)
- Transfer(sender,recipient,tTransferAmount) (#1043)
- _tokenTransfer(from,to,amount) (#896)
Reentrancy in BankerDogeToken.transferFrom(address,address,uint256) (#637-641):
External calls:
- _transfer(sender,recipient,amount) (#638)
- recipient.transfer(amount) (#1304)
External calls sending eth:
- _transfer(sender,recipient,amount) (#638)
- recipient.transfer(amount) (#1304)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#948-953)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#639)
- _allowances[owner][spender] = amount (#749)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#750)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#639)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#315) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#316)
Variable BankerDogeToken._bMaxTxAmount (#518) is too similar to BankerDogeToken._sMaxTxAmount (#519)
Variable BankerDogeToken.setBuyMaxTxAmount(uint256).bMaxTxAmount (#1207) is too similar to BankerDogeToken.setSellMaxTxAmount(uint256).sMaxTxAmount (#1211)
Variable BankerDogeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1070) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1024) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Variable BankerDogeToken._getValues(uint256).rTransferAmount (#1053) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1070) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1035) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._transferStandard(address,address,uint256).rTransferAmount (#1003) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1070) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Variable BankerDogeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1024) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken._getValues(uint256).rTransferAmount (#1053) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1024) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1070) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1035) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1070) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken._getValues(uint256).rTransferAmount (#1053) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1035) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1024) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken.reflectionFromToken(uint256,bool).rTransferAmount (#711) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1070) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1024) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken.reflectionFromToken(uint256,bool).rTransferAmount (#711) is too similar to BankerDogeToken._transferStandard(address,address,uint256).tTransferAmount (#1003)
Variable BankerDogeToken._transferStandard(address,address,uint256).rTransferAmount (#1003) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1035) is too similar to BankerDogeToken._getTValues(uint256).tTransferAmount (#1061)
Variable BankerDogeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken._getValues(uint256).rTransferAmount (#1053) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1024) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken.reflectionFromToken(uint256,bool).rTransferAmount (#711) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken._transferStandard(address,address,uint256).rTransferAmount (#1003) is too similar to BankerDogeToken._getValues(uint256).tTransferAmount (#1052)
Variable BankerDogeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1035) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken._transferBothExcluded(address,address,uint256).rTransferAmount (#1035) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Variable BankerDogeToken._transferStandard(address,address,uint256).rTransferAmount (#1003) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken.reflectionFromToken(uint256,bool).rTransferAmount (#711) is too similar to BankerDogeToken._transferBothExcluded(address,address,uint256).tTransferAmount (#1035)
Variable BankerDogeToken._transferStandard(address,address,uint256).rTransferAmount (#1003) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken.reflectionFromToken(uint256,bool).rTransferAmount (#711) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken._getValues(uint256).rTransferAmount (#1053) is too similar to BankerDogeToken._transferToExcluded(address,address,uint256).tTransferAmount (#1013)
Variable BankerDogeToken.reflectionFromToken(uint256,bool).rTransferAmount (#711) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Variable BankerDogeToken._transferStandard(address,address,uint256).rTransferAmount (#1003) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Variable BankerDogeToken._getValues(uint256).rTransferAmount (#1053) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Variable BankerDogeToken._transferToExcluded(address,address,uint256).rTransferAmount (#1013) is too similar to BankerDogeToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1024)
Prevent variables from having similar names.

Additional information: link

BankerDogeToken.prepareForPreSale() (#1275-1285) uses literals with too many digits:
- _bMaxTxAmount = 1000000000 * 10 ** 9 (#1283)
BankerDogeToken.prepareForPreSale() (#1275-1285) uses literals with too many digits:
- _sMaxTxAmount = 1000000000 * 10 ** 9 (#1284)
BankerDogeToken.afterPreSale() (#1287-1297) uses literals with too many digits:
- _bMaxTxAmount = 6000000 * 10 ** 9 (#1294)
BankerDogeToken.afterPreSale() (#1287-1297) uses literals with too many digits:
- _sMaxTxAmount = 3000000 * 10 ** 9 (#1295)
BankerDogeToken.slitherConstructorVariables() (#445-1407) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#455)
BankerDogeToken.slitherConstructorVariables() (#445-1407) uses literals with too many digits:
- _bMaxTxAmount = 1000000000 * 10 ** 9 (#518)
BankerDogeToken.slitherConstructorVariables() (#445-1407) uses literals with too many digits:
- _sMaxTxAmount = 1000000000 * 10 ** 9 (#519)
BankerDogeToken.slitherConstructorVariables() (#445-1407) uses literals with too many digits:
- _trigger = 1000000000 * 10 ** 9 (#520)
BankerDogeToken.slitherConstructorConstantVariables() (#445-1407) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#468)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BankerDogeToken._buyBackTimeInterval (#527) should be constant
BankerDogeToken._isEnabledBuyBackAndBurn (#536) should be constant
BankerDogeToken.deadAddress (#455) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#201-204)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#206-210)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#212-214)
getTime() should be declared external:
- Ownable.getTime() (#216-218)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#220-225)
unlock() should be declared external:
- Ownable.unlock() (#227-232)
name() should be declared external:
- BankerDogeToken.name() (#602-604)
symbol() should be declared external:
- BankerDogeToken.symbol() (#606-608)
decimals() should be declared external:
- BankerDogeToken.decimals() (#610-612)
totalSupply() should be declared external:
- BankerDogeToken.totalSupply() (#614-616)
transfer(address,uint256) should be declared external:
- BankerDogeToken.transfer(address,uint256) (#623-626)
allowance(address,address) should be declared external:
- BankerDogeToken.allowance(address,address) (#628-630)
approve(address,uint256) should be declared external:
- BankerDogeToken.approve(address,uint256) (#632-635)
transferFrom(address,address,uint256) should be declared external:
- BankerDogeToken.transferFrom(address,address,uint256) (#637-641)
increaseAllowance(address,uint256) should be declared external:
- BankerDogeToken.increaseAllowance(address,uint256) (#643-646)
decreaseAllowance(address,uint256) should be declared external:
- BankerDogeToken.decreaseAllowance(address,uint256) (#648-651)
isExcludedFromReward(address) should be declared external:
- BankerDogeToken.isExcludedFromReward(address) (#653-655)
totalFees() should be declared external:
- BankerDogeToken.totalFees() (#657-659)
minimumTokensBeforeSwapAmount() should be declared external:
- BankerDogeToken.minimumTokensBeforeSwapAmount() (#661-663)
buyBackSellLimitAmount() should be declared external:
- BankerDogeToken.buyBackSellLimitAmount() (#665-667)
setRouterAddressAndCreatePair(address) should be declared external:
- BankerDogeToken.setRouterAddressAndCreatePair(address) (#671-675)
setRouterAddress(address) should be declared external:
- BankerDogeToken.setRouterAddress(address) (#678-681)
setPairAddress(address) should be declared external:
- BankerDogeToken.setPairAddress(address) (#684-686)
setLiquidityAddress(address) should be declared external:
- BankerDogeToken.setLiquidityAddress(address) (#689-692)
airdrop(uint256) should be declared external:
- BankerDogeToken.airdrop(uint256) (#695-702)
reflectionFromToken(uint256,bool) should be declared external:
- BankerDogeToken.reflectionFromToken(uint256,bool) (#705-714)
isExcludedFromFee(address) should be declared external:
- BankerDogeToken.isExcludedFromFee(address) (#1124-1126)
excludeFromFee(address) should be declared external:
- BankerDogeToken.excludeFromFee(address) (#1128-1130)
includeInFee(address) should be declared external:
- BankerDogeToken.includeInFee(address) (#1132-1134)
setBots(address[]) should be declared external:
- BankerDogeToken.setBots(address[]) (#1136-1141)
delBot(address) should be declared external:
- BankerDogeToken.delBot(address) (#1143-1145)
checkIfOnBotList(address) should be declared external:
- BankerDogeToken.checkIfOnBotList(address) (#1147-1149)
GetSwapMinutes() should be declared external:
- BankerDogeToken.GetSwapMinutes() (#1171-1173)
setBuyBackEnabled(bool) should be declared external:
- BankerDogeToken.setBuyBackEnabled(bool) (#1270-1273)
changeRouterVersion(address) should be declared external:
- BankerDogeToken.changeRouterVersion(address) (#1307-1320)
transferForeignToken(address,address) should be declared external:
- BankerDogeToken.transferForeignToken(address,address) (#1326-1330)
manualSwapAndLiquifyBNB(uint256) should be declared external:
- BankerDogeToken.manualSwapAndLiquifyBNB(uint256) (#1333-1354)
manualSwapAndLiquifyTokens(uint256) should be declared external:
- BankerDogeToken.manualSwapAndLiquifyTokens(uint256) (#1357-1378)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Token is deployed only at one blockchain


Telegram account link seems to be invalid


Twitter account seems to be suspended

Additional information: link


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for BANKER