Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in LDV2._transfer(address,address,uint256) (#1101-1145):
External calls:
- swapAndLiquify(contractTokenBalance) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1179-1185)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1132)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1144)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1040)
- _rOwned[_charityWalletAddress] = _rOwned[_charityWalletAddress].add(rCharity) (#1048)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1236)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1226)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1248)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1227)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#949)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1238)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1249)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#951)
- _tokenTransfer(from,to,amount,takeFee) (#1144)
- _rTotal = _rTotal.sub(rFee) (#993)
- _tokenTransfer(from,to,amount,takeFee) (#1144)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1042)
- _tOwned[_charityWalletAddress] = _tOwned[_charityWalletAddress].add(tCharity) (#1050)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#948)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1247)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1237)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#950)
Apply the check-effects-interactions pattern.
Additional information: link
LDV2.addLiquidity(uint256,uint256) (#1188-1201) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
Ensure that all the return values of the function calls are used.
Additional information: link
LDV2._approve(address,address,uint256).owner (#1093) shadows:
- Ownable.owner() (#529-531) (function)
Rename the local variables that shadow another component.
Additional information: link
LDV2.setMaxTxPercent(uint256) (#978-982) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#979-981)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in LDV2.transferFrom(address,address,uint256) (#874-878):
External calls:
- _transfer(sender,recipient,amount) (#875)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1179-1185)
External calls sending eth:
- _transfer(sender,recipient,amount) (#875)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#876)
- _allowances[owner][spender] = amount (#1097)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LDV2.transferFrom(address,address,uint256) (#874-878):
External calls:
- _transfer(sender,recipient,amount) (#875)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1179-1185)
External calls sending eth:
- _transfer(sender,recipient,amount) (#875)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1193-1200)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1098)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#876)
Apply the check-effects-interactions pattern.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#481-498) uses assembly
- INLINE ASM (#490-493)
Do not use evm assembly.
Additional information: link
SafeMath.trySub(uint256,uint256) (#108-113) is never used and should be removed
Remove unused functions.
Additional information: link
LDV2._previousLiquidityFee (#796) 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
solc-0.8.3 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.functionDelegateCall(address,bytes,string) (#473-479):
- (success,returndata) = target.delegatecall(data) (#477)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable LDV2._maxTxAmount (#804) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#310)" inContext (#304-313)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable LDV2._transferBothExcluded(address,address,uint256).rTransferAmount (#947) is too similar to LDV2._transferToExcluded(address,address,uint256).tTransferAmount (#1235)
Prevent variables from having similar names.
Additional information: link
LDV2.slitherConstructorVariables() (#766-1257) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 200000000000000 * 10 ** 6 * 10 ** 9 (#805)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
LDV2.numTokensSellToAddToLiquidity (#805) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- LDV2.isExcludedFromFee(address) (#1089-1091)
Use the external attribute for functions never called from the contract.
Additional information: link
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 website, listings and other project-related information
Token has a considerable age, but we're still unable to find its website
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Unable to find Telegram and Twitter accounts