Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in FlokiCrush._transfer(address,address,uint256) (#981-1009):
External calls:
- swapAndLiquify(contractTokenBalance) (#1004)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1043-1049)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1004)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1008)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#937)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1120)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1111)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1112)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#878)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1131)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1132)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1122)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#880)
- _tokenTransfer(from,to,amount) (#1008)
- _rTotal = _rTotal.sub(rFee) (#892)
- _tokenTransfer(from,to,amount) (#1008)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#939)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#877)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1130)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1121)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#879)
Apply the check-effects-interactions pattern.
Additional information: link
FlokiCrush.setMaxTxPercent(uint256) (#1177-1182) contains a tautology or contradiction:
- require(bool,string)(maxTxPercent >= 0,Cannot set transaction amount less than 10 percent!) (#1178)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
FlokiCrush.addLiquidity(uint256,uint256) (#1052-1065) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Ensure that all the return values of the function calls are used.
Additional information: link
FlokiCrush._approve(address,address,uint256).owner (#973) shadows:
- Ownable.owner() (#424-426) (function)
Rename the local variables that shadow another component.
Additional information: link
FlokiCrush.setMaxTxPercent(uint256) (#1177-1182) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1179-1181)
Emit an event for critical parameter changes.
Additional information: link
FlokiCrush.setCharityWallet(address).newWallet (#1173) lacks a zero-check on :
- CharityWallet = newWallet (#1174)
Check that the address is not zero.
Additional information: link
Reentrancy in FlokiCrush.transferFrom(address,address,uint256) (#802-806):
External calls:
- _transfer(sender,recipient,amount) (#803)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1043-1049)
External calls sending eth:
- _transfer(sender,recipient,amount) (#803)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#804)
- _allowances[owner][spender] = amount (#977)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FlokiCrush.transferFrom(address,address,uint256) (#802-806):
External calls:
- _transfer(sender,recipient,amount) (#803)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1043-1049)
External calls sending eth:
- _transfer(sender,recipient,amount) (#803)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1057-1064)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#978)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#804)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#471-476) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#473)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#369-390) uses assembly
- INLINE ASM (#382-385)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#237-240) is never used and should be removed
Remove unused functions.
Additional information: link
FlokiCrush._previousCharityFee (#724) is set pre-construction with a non-constant function or state variable:
- _CharityFee
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._functionCallWithValue(address,bytes,uint256,string) (#369-390):
- (success,returndata) = target.call{value: weiValue}(data) (#373)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable FlokiCrush._maxTxAmount (#732) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#249)" inContext (#243-252)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable FlokiCrush._transferFromExcluded(address,address,uint256).rTransferAmount (#1129) is too similar to FlokiCrush._transferStandard(address,address,uint256).tTransferAmount (#1110)
Prevent variables from having similar names.
Additional information: link
FlokiCrush.numTokensSellToAddToLiquidity (#733) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setSwapAndLiquifyEnabled(bool) should be declared external:
- FlokiCrush.setSwapAndLiquifyEnabled(bool) (#1184-1187)
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.
Number of Binance Smart Chain (BSC) token holders is low.
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 no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Unable to find Telegram and Twitter accounts