Dick Butt Token Token Logo

DBT [Dick Butt] Token

ALERT: dead

About DBT

Listings

Not Found
Token 3 years

This project was dead before it started. Join BrightBit for a real project.

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


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

Reentrancy in DickButt._transfer(address,address,uint256) (#1032-1076):
External calls:
- swapAndLiquify(contractTokenBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#988)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1157)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1166)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#904)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1158)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1177)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1178)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1168)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#906)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _rTotal = _rTotal.sub(rFee) (#943)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#990)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1176)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#903)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1167)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#905)
Apply the check-effects-interactions pattern.

Additional information: link

DickButt.addLiquidity(uint256,uint256) (#1119-1132) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
Ensure that all the return values of the function calls are used.

Additional information: link

Redundant expression "this (#281)" inContext (#275-284)
Remove redundant statements if they congest code but offer no value.

Additional information: link

DickButt._rTotal (#740) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DickButt._previousTaxFee (#748) is set pre-construction with a non-constant function or state variable:
- _taxFee
DickButt._previousLiquidityFee (#751) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#335-341):
- (success) = recipient.call{value: amount}() (#339)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#401-422):
- (success,returndata) = target.call{value: weiValue}(data) (#405)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

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

Additional information: link

Address.isContract(address) (#308-317) uses assembly
- INLINE ASM (#315)
Address._functionCallWithValue(address,bytes,uint256,string) (#401-422) uses assembly
- INLINE ASM (#414-417)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#401-422) is never used and should be removed
Address.functionCall(address,bytes) (#361-363) is never used and should be removed
Address.functionCall(address,bytes,string) (#371-373) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#386-388) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#396-399) is never used and should be removed
Address.isContract(address) (#308-317) is never used and should be removed
Address.sendValue(address,uint256) (#335-341) is never used and should be removed
Context._msgData() (#280-283) is never used and should be removed
SafeMath.mod(uint256,uint256) (#253-255) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#269-272) is never used and should be removed
Remove unused functions.

Additional information: link

DickButt.includeInReward(address) (#889-900) has costly operations inside a loop:
- _excluded.pop() (#896)
Use a local variable to hold the loop computation result.

Additional information: link

DickButt.allowance(address,address).owner (#820) shadows:
- Ownable.owner() (#456-458) (function)
DickButt._approve(address,address,uint256).owner (#1024) shadows:
- Ownable.owner() (#456-458) (function)
Rename the local variables that shadow another component.

Additional information: link

DickButt.setTaxFeePercent(uint256) (#920-922) should emit an event for:
- _taxFee = taxFee (#921)
DickButt.setLiquidityFeePercent(uint256) (#924-926) should emit an event for:
- _liquidityFee = liquidityFee (#925)
DickButt.setMaxTxPercent(uint256) (#928-932) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#929-931)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in DickButt._transfer(address,address,uint256) (#1032-1076):
External calls:
- swapAndLiquify(contractTokenBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _liquidityFee = _previousLiquidityFee (#1017)
- _liquidityFee = 0 (#1012)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _previousLiquidityFee = _liquidityFee (#1009)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _previousTaxFee = _taxFee (#1008)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _tFeeTotal = _tFeeTotal.add(tFee) (#944)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- _taxFee = _previousTaxFee (#1016)
- _taxFee = 0 (#1011)
Reentrancy in DickButt.constructor() (#776-792):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#781-782)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#788)
- _isExcludedFromFee[address(this)] = true (#789)
- uniswapV2Router = _uniswapV2Router (#785)
Reentrancy in DickButt.swapAndLiquify(uint256) (#1078-1099):
External calls:
- swapTokensForEth(half) (#1090)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
- addLiquidity(otherHalf,newBalance) (#1096)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1096)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1096)
- _allowances[owner][spender] = amount (#1028)
Reentrancy in DickButt.transferFrom(address,address,uint256) (#829-833):
External calls:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
External calls sending eth:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#831)
- _allowances[owner][spender] = amount (#1028)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DickButt._transfer(address,address,uint256) (#1032-1076):
External calls:
- swapAndLiquify(contractTokenBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1063)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1161)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- Transfer(sender,recipient,tTransferAmount) (#1171)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- Transfer(sender,recipient,tTransferAmount) (#1181)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
- Transfer(sender,recipient,tTransferAmount) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1075)
Reentrancy in DickButt.constructor() (#776-792):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#781-782)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#791)
Reentrancy in DickButt.swapAndLiquify(uint256) (#1078-1099):
External calls:
- swapTokensForEth(half) (#1090)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
- addLiquidity(otherHalf,newBalance) (#1096)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1096)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1029)
- addLiquidity(otherHalf,newBalance) (#1096)
- SwapAndLiquify(half,newBalance,otherHalf) (#1098)
Reentrancy in DickButt.transferFrom(address,address,uint256) (#829-833):
External calls:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1110-1116)
External calls sending eth:
- _transfer(sender,recipient,amount) (#830)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1124-1131)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1029)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#831)
Apply the check-effects-interactions pattern.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#547) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#548) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#565) is not in mixedCase
Function IUniswapV2Router01.WETH() (#587) is not in mixedCase
Parameter DickButt.setSwapAndLiquifyEnabled(bool)._enabled (#934) is not in mixedCase
Parameter DickButt.calculateTaxFee(uint256)._amount (#993) is not in mixedCase
Parameter DickButt.calculateLiquidityFee(uint256)._amount (#999) is not in mixedCase
Variable DickButt._taxFee (#747) is not in mixedCase
Variable DickButt._liquidityFee (#750) is not in mixedCase
Variable DickButt._maxTxAmount (#759) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#592) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#593)
Variable DickButt._transferBothExcluded(address,address,uint256).rTransferAmount (#902) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Variable DickButt.reflectionFromToken(uint256,bool).rTransferAmount (#868) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._getValues(uint256).rTransferAmount (#949) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt.reflectionFromToken(uint256,bool).rTransferAmount (#868) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._transferBothExcluded(address,address,uint256).rTransferAmount (#902) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._getValues(uint256).rTransferAmount (#949) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt._transferBothExcluded(address,address,uint256).rTransferAmount (#902) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Variable DickButt._transferBothExcluded(address,address,uint256).rTransferAmount (#902) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt._transferBothExcluded(address,address,uint256).rTransferAmount (#902) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to DickButt._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable DickButt._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to DickButt._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable DickButt.reflectionFromToken(uint256,bool).rTransferAmount (#868) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Variable DickButt._getValues(uint256).rTransferAmount (#949) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt._getValues(uint256).rTransferAmount (#949) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._transferBothExcluded(address,address,uint256).rTransferAmount (#902) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt._getValues(uint256).rTransferAmount (#949) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt._getValues(uint256).rTransferAmount (#949) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Variable DickButt._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Variable DickButt._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt.reflectionFromToken(uint256,bool).rTransferAmount (#868) is too similar to DickButt._getTValues(uint256).tTransferAmount (#956)
Variable DickButt.reflectionFromToken(uint256,bool).rTransferAmount (#868) is too similar to DickButt._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable DickButt._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to DickButt._transferBothExcluded(address,address,uint256).tTransferAmount (#902)
Variable DickButt._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Variable DickButt.reflectionFromToken(uint256,bool).rTransferAmount (#868) is too similar to DickButt._getValues(uint256).tTransferAmount (#948)
Prevent variables from having similar names.

Additional information: link

DickButt.slitherConstructorVariables() (#725-1188) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#739)
DickButt.slitherConstructorVariables() (#725-1188) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#759)
DickButt.slitherConstructorVariables() (#725-1188) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#760)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DickButt._decimals (#745) should be constant
DickButt._name (#743) should be constant
DickButt._symbol (#744) should be constant
DickButt._tTotal (#739) should be constant
DickButt.numTokensSellToAddToLiquidity (#760) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#475-478)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#484-488)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#490-492)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#495-500)
unlock() should be declared external:
- Ownable.unlock() (#503-508)
name() should be declared external:
- DickButt.name() (#794-796)
symbol() should be declared external:
- DickButt.symbol() (#798-800)
decimals() should be declared external:
- DickButt.decimals() (#802-804)
totalSupply() should be declared external:
- DickButt.totalSupply() (#806-808)
transfer(address,uint256) should be declared external:
- DickButt.transfer(address,uint256) (#815-818)
allowance(address,address) should be declared external:
- DickButt.allowance(address,address) (#820-822)
approve(address,uint256) should be declared external:
- DickButt.approve(address,uint256) (#824-827)
transferFrom(address,address,uint256) should be declared external:
- DickButt.transferFrom(address,address,uint256) (#829-833)
increaseAllowance(address,uint256) should be declared external:
- DickButt.increaseAllowance(address,uint256) (#835-838)
decreaseAllowance(address,uint256) should be declared external:
- DickButt.decreaseAllowance(address,uint256) (#840-843)
isExcludedFromReward(address) should be declared external:
- DickButt.isExcludedFromReward(address) (#845-847)
totalFees() should be declared external:
- DickButt.totalFees() (#849-851)
deliver(uint256) should be declared external:
- DickButt.deliver(uint256) (#853-860)
reflectionFromToken(uint256,bool) should be declared external:
- DickButt.reflectionFromToken(uint256,bool) (#862-871)
excludeFromReward(address) should be declared external:
- DickButt.excludeFromReward(address) (#879-887)
excludeFromFee(address) should be declared external:
- DickButt.excludeFromFee(address) (#912-914)
includeInFee(address) should be declared external:
- DickButt.includeInFee(address) (#916-918)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DickButt.setSwapAndLiquifyEnabled(bool) (#934-937)
isExcludedFromFee(address) should be declared external:
- DickButt.isExcludedFromFee(address) (#1020-1022)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for DBT