Udders Token Logo

BOOBS [Udders] Token

About BOOBS

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 30 December 2021

report
Token seems to be anonymous. As long as we are unable to find website score is limited.

Udders.swapAndLiquify(uint256) (#1038-1067) sends eth to arbitrary user
Dangerous calls:
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Udders._transfer(address,address,uint256) (#987-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _liquidityFee = _previousLiquidityFee (#971)
- _liquidityFee = 0 (#964)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _marketingFee = _previousMarketingFee (#972)
- _marketingFee = 0 (#965)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#939)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1125)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1134)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#865)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1145)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1146)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _rTotal = _rTotal.sub(rFee) (#890)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#941)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#864)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1144)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1135)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#866)
Apply the check-effects-interactions pattern.

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.

Udders.swapAndLiquify(uint256) (#1038-1067) performs a multiplication on the result of a division:
-half = toLiquify.div(2) (#1045)
-liquidityBalance = fromSwap.mul(half).div(toSwapForEth) (#1060)
Consider ordering multiplication before division.

Additional information: link

Udders.addLiquidity(uint256,uint256) (#1087-1100) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
Ensure that all the return values of the function calls are used.

Additional information: link

Udders.allowance(address,address).owner (#781) shadows:
- Ownable.owner() (#428-430) (function)
Udders._approve(address,address,uint256).owner (#979) shadows:
- Ownable.owner() (#428-430) (function)
Rename the local variables that shadow another component.

Additional information: link

Udders.constructor(address).marketingWallet (#735) lacks a zero-check on :
- _marketingWallet = address(marketingWallet) (#746)
Check that the address is not zero.

Additional information: link

Reentrancy in Udders._transfer(address,address,uint256) (#987-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousLiquidityFee = _liquidityFee (#960)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousMarketingFee = _marketingFee (#961)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousTaxFee = _taxFee (#959)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _tFeeTotal = _tFeeTotal.add(tFee) (#891)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _taxFee = _previousTaxFee (#970)
- _taxFee = 0 (#963)
Reentrancy in Udders.constructor(address) (#735-753):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#741-742)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#749)
- _isExcludedFromFee[address(this)] = true (#750)
- _marketingWallet = address(marketingWallet) (#746)
- uniswapV2Router = _uniswapV2Router (#745)
Reentrancy in Udders.swapAndLiquify(uint256) (#1038-1067):
External calls:
- swapTokensForEth(toSwapForEth) (#1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
- addLiquidity(otherHalf,liquidityBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
External calls sending eth:
- addLiquidity(otherHalf,liquidityBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
State variables written after the call(s):
- addLiquidity(otherHalf,liquidityBalance) (#1062)
- _allowances[owner][spender] = amount (#983)
Reentrancy in Udders.transferFrom(address,address,uint256) (#790-794):
External calls:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#792)
- _allowances[owner][spender] = amount (#983)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Udders._transfer(address,address,uint256) (#987-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1129)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1139)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1149)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#870)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
Reentrancy in Udders.constructor(address) (#735-753):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#741-742)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#752)
Reentrancy in Udders.swapAndLiquify(uint256) (#1038-1067):
External calls:
- swapTokensForEth(toSwapForEth) (#1056)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
- addLiquidity(otherHalf,liquidityBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
External calls sending eth:
- addLiquidity(otherHalf,liquidityBalance) (#1062)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#984)
- addLiquidity(otherHalf,liquidityBalance) (#1062)
- SwapAndLiquify(half,liquidityBalance,otherHalf) (#1064)
Reentrancy in Udders.transferFrom(address,address,uint256) (#790-794):
External calls:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#984)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#792)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#281-290) uses assembly
- INLINE ASM (#288)
Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) uses assembly
- INLINE ASM (#387-390)
Do not use evm assembly.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#374-395) is never used and should be removed
Address.functionCall(address,bytes) (#334-336) is never used and should be removed
Address.functionCall(address,bytes,string) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#359-361) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#369-372) is never used and should be removed
Address.isContract(address) (#281-290) is never used and should be removed
Address.sendValue(address,uint256) (#308-314) is never used and should be removed
Context._msgData() (#253-256) is never used and should be removed
SafeMath.mod(uint256,uint256) (#226-228) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#242-245) is never used and should be removed
Remove unused functions.

Additional information: link

Udders._rTotal (#692) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Udders._previousTaxFee (#700) is set pre-construction with a non-constant function or state variable:
- _taxFee
Udders._previousLiquidityFee (#703) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Udders._previousMarketingFee (#706) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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) (#308-314):
- (success) = recipient.call{value: amount}() (#312)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#374-395):
- (success,returndata) = target.call{value: weiValue}(data) (#378)
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() (#499) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#500) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#517) is not in mixedCase
Function IUniswapV2Router01.WETH() (#539) is not in mixedCase
Parameter Udders.setSwapAndLiquifyEnabled(bool)._enabled (#881) is not in mixedCase
Function Udders._getMaxWalletSize() (#920-922) is not in mixedCase
Parameter Udders.calculateTaxFee(uint256)._amount (#944) is not in mixedCase
Parameter Udders.calculateLiquidityFee(uint256)._amount (#950) is not in mixedCase
Variable Udders._taxFee (#699) is not in mixedCase
Variable Udders._liquidityFee (#702) is not in mixedCase
Variable Udders._marketingFee (#705) is not in mixedCase
Variable Udders._maxTxAmount (#717) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#254)" inContext (#248-257)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Udders._transfer(address,address,uint256) (#987-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _liquidityFee = _previousLiquidityFee (#971)
- _liquidityFee = 0 (#964)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _marketingFee = _previousMarketingFee (#972)
- _marketingFee = 0 (#965)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousLiquidityFee = _liquidityFee (#960)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousMarketingFee = _marketingFee (#961)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousTaxFee = _taxFee (#959)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#939)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1125)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1134)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#865)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1145)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1146)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#867)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _rTotal = _rTotal.sub(rFee) (#890)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _tFeeTotal = _tFeeTotal.add(tFee) (#891)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#941)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#864)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1144)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1135)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#866)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _taxFee = _previousTaxFee (#970)
- _taxFee = 0 (#963)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1129)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1149)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1139)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#870)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
Reentrancy in Udders.transferFrom(address,address,uint256) (#790-794):
External calls:
- _transfer(sender,recipient,amount) (#791)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
External calls sending eth:
- _transfer(sender,recipient,amount) (#791)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,burnAddress,block.timestamp) (#1092-1099)
- _marketingWallet.transfer(fromSwap.sub(liquidityBalance)) (#1066)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#792)
- _allowances[owner][spender] = amount (#983)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#984)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#792)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#544) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#545)
Variable Udders._transferFromExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#911) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders._getValues(uint256).rTransferAmount (#896) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders._transferFromExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders._transferFromExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders._transferFromExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders._transferToExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#911) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._getValues(uint256).rTransferAmount (#896) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._getValues(uint256).rTransferAmount (#896) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders._getValues(uint256).rTransferAmount (#896) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#911) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#911) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders._transferToExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders._transferToExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#911) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._getValues(uint256).rTransferAmount (#896) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable Udders._transferToExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable Udders.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable Udders._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable Udders._transferFromExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable Udders._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to Udders._getValues(uint256).tTransferAmount (#895)
Variable Udders._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to Udders._transferFromExcluded(address,address,uint256).tTransferAmount (#1143)
Variable Udders._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders._transferToExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to Udders._transferBothExcluded(address,address,uint256).tTransferAmount (#863)
Variable Udders._transferBothExcluded(address,address,uint256).rTransferAmount (#863) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders._transferToExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders.reflectionFromToken(uint256,bool).rTransferAmount (#829) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders._transferFromExcluded(address,address,uint256).rTransferAmount (#1143) is too similar to Udders._getTValues(uint256).tTransferAmount (#903)
Variable Udders._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to Udders._transferToExcluded(address,address,uint256).tTransferAmount (#1133)
Variable Udders._getValues(uint256).rTransferAmount (#896) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable Udders._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#911) is too similar to Udders._transferStandard(address,address,uint256).tTransferAmount (#1124)
Prevent variables from having similar names.

Additional information: link

Udders.slitherConstructorVariables() (#677-1153) uses literals with too many digits:
- _tTotal = 100000000000 (#691)
Udders.slitherConstructorVariables() (#677-1153) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#711)
Udders.slitherConstructorVariables() (#677-1153) uses literals with too many digits:
- _maxTxAmount = 5000000000 (#717)
Udders.slitherConstructorVariables() (#677-1153) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 700000000 (#718)
Udders.slitherConstructorVariables() (#677-1153) uses literals with too many digits:
- _maxWalletSize = 5000000000 (#719)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#412) is never used in Udders (#677-1153)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#412) should be constant
Udders._decimals (#697) should be constant
Udders._maxTxAmount (#717) should be constant
Udders._maxWalletSize (#719) should be constant
Udders._name (#695) should be constant
Udders._symbol (#696) should be constant
Udders._tTotal (#691) should be constant
Udders.burnAddress (#711) should be constant
Udders.numTokensSellToAddToLiquidity (#718) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#447-450)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#456-460)
name() should be declared external:
- Udders.name() (#755-757)
symbol() should be declared external:
- Udders.symbol() (#759-761)
decimals() should be declared external:
- Udders.decimals() (#763-765)
totalSupply() should be declared external:
- Udders.totalSupply() (#767-769)
transfer(address,uint256) should be declared external:
- Udders.transfer(address,uint256) (#776-779)
allowance(address,address) should be declared external:
- Udders.allowance(address,address) (#781-783)
approve(address,uint256) should be declared external:
- Udders.approve(address,uint256) (#785-788)
transferFrom(address,address,uint256) should be declared external:
- Udders.transferFrom(address,address,uint256) (#790-794)
increaseAllowance(address,uint256) should be declared external:
- Udders.increaseAllowance(address,uint256) (#796-799)
decreaseAllowance(address,uint256) should be declared external:
- Udders.decreaseAllowance(address,uint256) (#801-804)
isExcludedFromReward(address) should be declared external:
- Udders.isExcludedFromReward(address) (#806-808)
totalFees() should be declared external:
- Udders.totalFees() (#810-812)
deliver(uint256) should be declared external:
- Udders.deliver(uint256) (#814-821)
reflectionFromToken(uint256,bool) should be declared external:
- Udders.reflectionFromToken(uint256,bool) (#823-832)
excludeFromReward(address) should be declared external:
- Udders.excludeFromReward(address) (#840-848)
excludeFromFee(address) should be declared external:
- Udders.excludeFromFee(address) (#873-875)
includeInFee(address) should be declared external:
- Udders.includeInFee(address) (#877-879)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Udders.setSwapAndLiquifyEnabled(bool) (#881-884)
_getMaxWalletSize() should be declared external:
- Udders._getMaxWalletSize() (#920-922)
isExcludedFromFee(address) should be declared external:
- Udders.isExcludedFromFee(address) (#975-977)
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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for BOOBS