Reentrancy in LOOF._taxedTransfer(address,address,uint256,bool,bool) (#742-778):
External calls:
- _swapContractToken() (#764)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
External calls sending eth:
- _swapContractToken() (#764)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
State variables written after the call(s):
- _removeToken(sender,amount) (#769)
- _balances[addr] = newAmount (#803)
- _balances[address(this)] += contractToken (#771)
- _addToken(recipient,taxedAmount) (#774)
- _balances[addr] = newAmount (#797)
Apply the check-effects-interactions pattern.
Additional information: link
LOOF.sellLockTime (#911) is never initialized. It is used in:
- LOOF.getSellLockTimeInSeconds() (#899-901)
- LOOF.AddressResetSellLock() (#904-906)
LOOF._liquidityUnlockTime (#975) is never initialized. It is used in:
- LOOF.getLiquidityReleaseTimeInSeconds() (#871-876)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Contract creator or owner is blacklisted for past scams
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
LOOF._swapContractToken().tmpSuccess (#838) is written in both
(tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
tmpSuccess = false (#839)
Fix or remove the writes.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
LOOF._swapContractToken() (#815-840) performs a multiplication on the result of a division:
-tokenToSwap = sellLimit / 5 (#818)
-tokenForLiquidity = (tokenToSwap * _liquidityTax) / totalTax (#824)
Consider ordering multiplication before division.
Additional information: link
LOOF.constructor() (#687-709) ignores return value by _excluded.add(TeamWallet) (#707)
LOOF.constructor() (#687-709) ignores return value by _excluded.add(msg.sender) (#708)
LOOF._addLiquidity(uint256,uint256) (#857-868) ignores return value by _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
LOOF.burnLiq() (#979-994) ignores return value by liquidityToken.approve(address(_pancakeRouter),amount) (#983)
LOOF.burnLiq() (#979-994) ignores return value by _pancakeRouter.removeLiquidityETHSupportingFeeOnTransferTokens(address(this),amount,0,0,address(this),block.timestamp) (#984-991)
Ensure that all the return values of the function calls are used.
Additional information: link
LOOF.allowance(address,address)._owner (#1033) shadows:
- Ownable._owner (#188) (state variable)
LOOF._approve(address,address,uint256).owner (#1041) shadows:
- Ownable.owner() (#198-200) (function)
Rename the local variables that shadow another component.
Additional information: link
LOOF.changeTax(uint8,uint8) (#711-714) should emit an event for:
- _buyTax = buyTax (#712)
- _sellTax = sellTax (#713)
LOOF.TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) (#928-939) should emit an event for:
- _burnTax = burnTaxes (#932)
- _liquidityTax = liquidityTaxes (#933)
- _stakingTax = stakingTaxes (#934)
- _buyTax = buyTax (#936)
- _sellTax = sellTax (#937)
- _transferTax = transferTax (#938)
LOOF.TeamUpdateLimits(uint256,uint256,uint256) (#947-955) should emit an event for:
- balanceLimit = newBalanceLimit (#952)
- sellLimit = newSellLimit (#953)
- buyLimit = newBuyLimit (#954)
Emit an event for critical parameter changes.
Additional information: link
LOOF.SetupLiquidityTokenAddress(address).liquidityTokenAddress (#970) lacks a zero-check on :
- _liquidityTokenAddress = liquidityTokenAddress (#971)
Check that the address is not zero.
Additional information: link
Reentrancy in LOOF._swapContractToken() (#815-840):
External calls:
- _swapTokenForBNB(swapToken) (#833)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- _addLiquidity(liqToken,liqBNB) (#836)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
External calls sending eth:
- _addLiquidity(liqToken,liqBNB) (#836)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
State variables written after the call(s):
- _addLiquidity(liqToken,liqBNB) (#836)
- _allowances[owner][spender] = amount (#1045)
Reentrancy in LOOF._taxedTransfer(address,address,uint256,bool,bool) (#742-778):
External calls:
- _swapContractToken() (#764)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
External calls sending eth:
- _swapContractToken() (#764)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
State variables written after the call(s):
- _circulatingSupply -= tokensToBeBurnt (#772)
Reentrancy in LOOF.constructor() (#687-709):
External calls:
- _pancakePairAddress = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#693)
State variables written after the call(s):
- _burnTax = 0 (#701)
- _buyTax = 0 (#696)
- _liquidityTax = 0 (#702)
- _marketingTax = 0 (#704)
- _sellTax = 0 (#697)
- _stakingTax = 0 (#703)
- _transferTax = 0 (#699)
Reentrancy in LOOF.transferFrom(address,address,uint256) (#1049-1057):
External calls:
- _transfer(sender,recipient,amount) (#1050)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1050)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (#1055)
- _allowances[owner][spender] = amount (#1045)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LOOF._swapContractToken() (#815-840):
External calls:
- _swapTokenForBNB(swapToken) (#833)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- _addLiquidity(liqToken,liqBNB) (#836)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
External calls sending eth:
- _addLiquidity(liqToken,liqBNB) (#836)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1046)
- _addLiquidity(liqToken,liqBNB) (#836)
Reentrancy in LOOF._taxedTransfer(address,address,uint256,bool,bool) (#742-778):
External calls:
- _swapContractToken() (#764)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
External calls sending eth:
- _swapContractToken() (#764)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
Event emitted after the call(s):
- Transfer(sender,recipient,taxedAmount) (#776)
Reentrancy in LOOF.transferFrom(address,address,uint256) (#1049-1057):
External calls:
- _transfer(sender,recipient,amount) (#1050)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- _pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(amount,0,path,address(this),block.timestamp) (#848-854)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1050)
- _pancakeRouter.addLiquidityETH{value: bnbamount}(address(this),tokenamount,0,0,address(this),block.timestamp) (#860-867)
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1046)
- _approve(sender,msg.sender,currentAllowance - amount) (#1055)
Apply the check-effects-interactions pattern.
Additional information: link
LOOF.getLiquidityReleaseTimeInSeconds() (#871-876) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < _liquidityUnlockTime (#872)
LOOF.getAddressSellLockTimeInSeconds(address) (#891-898) uses timestamp for comparisons
Dangerous comparisons:
- lockTime <= block.timestamp (#893)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#223-232) uses assembly
- INLINE ASM (#230)
Address._verifyCallResult(bool,bytes,string) (#368-385) uses assembly
- INLINE ASM (#377-380)
Do not use evm assembly.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#368-385) is never used and should be removed
Address.functionCall(address,bytes) (#276-278) is never used and should be removed
Address.functionCall(address,bytes,string) (#286-288) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#301-303) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#311-318) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#350-352) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#360-366) is never used and should be removed
Address.functionStaticCall(address,bytes) (#326-328) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#336-342) is never used and should be removed
Address.isContract(address) (#223-232) is never used and should be removed
Address.sendValue(address,uint256) (#250-256) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (#475-478) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (#461-463) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (#417-449) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#492-494) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#600-602) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (#584-586) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#530-532) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#638-640) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#509-511) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#617-619) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (#570-572) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#516-518) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#624-626) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (#556-558) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#502-504) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#610-612) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#250-256):
- (success) = recipient.call{value: amount}() (#254)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#311-318):
- (success,returndata) = target.call{value: value}(data) (#316)
Low level call in Address.functionStaticCall(address,bytes,string) (#336-342):
- (success,returndata) = target.staticcall(data) (#340)
Low level call in Address.functionDelegateCall(address,bytes,string) (#360-366):
- (success,returndata) = target.delegatecall(data) (#364)
Low level call in LOOF._swapContractToken() (#815-840):
- (tmpSuccess) = address(TeamWallet).call{gas: 30000,value: distributeBNB}() (#838)
Low level call in LOOF.sendBNB() (#996-999):
- (sent) = TeamWallet.call{value: (address(this).balance)}() (#997)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeERC20.DOMAIN_SEPARATOR() (#34) is not in mixedCase
Function IPancakeERC20.PERMIT_TYPEHASH() (#35) is not in mixedCase
Function IPancakeRouter01.WETH() (#138) is not in mixedCase
Parameter LOOF.getAddressSellLockTimeInSeconds(address).AddressToCheck (#891) is not in mixedCase
Function LOOF.AddressResetSellLock() (#904-906) is not in mixedCase
Function LOOF.TeamSwitchManualBNBConversion(bool) (#915-917) is not in mixedCase
Function LOOF.TeamDisableSellLock(bool) (#920-922) is not in mixedCase
Function LOOF.TeamEnableSellLock(bool) (#924-926) is not in mixedCase
Function LOOF.TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) (#928-939) is not in mixedCase
Function LOOF.TeamCreateLPandBNB() (#942-944) is not in mixedCase
Function LOOF.TeamUpdateLimits(uint256,uint256,uint256) (#947-955) is not in mixedCase
Function LOOF.SetupEnableTrading() (#962-964) is not in mixedCase
Function LOOF.SetupDisableTrading() (#966-968) is not in mixedCase
Function LOOF.SetupLiquidityTokenAddress(address) (#970-972) is not in mixedCase
Parameter LOOF.allowance(address,address)._owner (#1033) is not in mixedCase
Constant LOOF._name (#655) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LOOF._symbol (#656) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LOOF._decimals (#657) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LOOF.InitialSupply (#658) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LOOF.DefaultLiquidityLockTime (#661) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LOOF.TeamWallet (#663) is not in UPPER_CASE_WITH_UNDERSCORES
Constant LOOF.PancakeRouter (#664) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#57) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#58)
Prevent variables from having similar names.
Additional information: link
LOOF.slitherConstructorVariables() (#643-1074) uses literals with too many digits:
- balanceLimit = 30000000 * 10 ** _decimals (#668)
LOOF.slitherConstructorVariables() (#643-1074) uses literals with too many digits:
- buyLimit = 30000000 * 10 ** _decimals (#670)
LOOF.slitherConstructorConstantVariables() (#643-1074) uses literals with too many digits:
- InitialSupply = 100000000 * 10 ** _decimals (#658)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
LOOF._excludedFromStaking (#653) is never used in LOOF (#643-1074)
LOOF.DefaultLiquidityLockTime (#661) is never used in LOOF (#643-1074)
Remove unused state variables.
Additional information: link
LOOF._liquidityUnlockTime (#975) should be constant
LOOF.sellLockTime (#911) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#208-211)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#213-217)
changeTax(uint8,uint8) should be declared external:
- LOOF.changeTax(uint8,uint8) (#711-714)
getLiquidityReleaseTimeInSeconds() should be declared external:
- LOOF.getLiquidityReleaseTimeInSeconds() (#871-876)
getBurnedTokens() should be declared external:
- LOOF.getBurnedTokens() (#878-880)
getLimits() should be declared external:
- LOOF.getLimits() (#882-884)
getTaxes() should be declared external:
- LOOF.getTaxes() (#886-888)
getAddressSellLockTimeInSeconds(address) should be declared external:
- LOOF.getAddressSellLockTimeInSeconds(address) (#891-898)
getSellLockTimeInSeconds() should be declared external:
- LOOF.getSellLockTimeInSeconds() (#899-901)
AddressResetSellLock() should be declared external:
- LOOF.AddressResetSellLock() (#904-906)
TeamSwitchManualBNBConversion(bool) should be declared external:
- LOOF.TeamSwitchManualBNBConversion(bool) (#915-917)
TeamDisableSellLock(bool) should be declared external:
- LOOF.TeamDisableSellLock(bool) (#920-922)
TeamEnableSellLock(bool) should be declared external:
- LOOF.TeamEnableSellLock(bool) (#924-926)
TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) should be declared external:
- LOOF.TeamSetTaxes(uint8,uint8,uint8,uint8,uint8,uint8) (#928-939)
TeamCreateLPandBNB() should be declared external:
- LOOF.TeamCreateLPandBNB() (#942-944)
SetupEnableTrading() should be declared external:
- LOOF.SetupEnableTrading() (#962-964)
SetupDisableTrading() should be declared external:
- LOOF.SetupDisableTrading() (#966-968)
SetupLiquidityTokenAddress(address) should be declared external:
- LOOF.SetupLiquidityTokenAddress(address) (#970-972)
burnLiq() should be declared external:
- LOOF.burnLiq() (#979-994)
sendBNB() should be declared external:
- LOOF.sendBNB() (#996-999)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts