Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
LoveFloki.addLiquidity(uint256,uint256) (#1271-1287) sends eth to arbitrary user
Dangerous calls:
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in LoveFloki._transfer(address,address,uint256) (#1192-1250):
External calls:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- (success) = recipient.call{value: amount}() (#900)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- (success) = recipient.call{value: amount}() (#900)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1246)
- _balances[sender] = senderBalance - amount (#719)
- _balances[recipient] += amount (#721)
- super._transfer(from,to,amount) (#1249)
- _balances[sender] = senderBalance - amount (#719)
- _balances[recipient] += amount (#721)
- swapping = false (#1229)
Apply the check-effects-interactions pattern.
Additional information: link
LoveFloki.withdrawOtherTokens(address,address) (#1174-1179) ignores return value by token.transfer(_account,tokenBalance) (#1177)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
LoveFloki.setLiquidityFee(uint256) (#1121-1123) should emit an event for:
- liquidityFee = value (#1122)
LoveFloki.setMarketingFee(uint256) (#1125-1127) should emit an event for:
- marketingFee = value (#1126)
LoveFloki.setDevFee(uint256) (#1129-1131) should emit an event for:
- devFee = value (#1130)
Emit an event for critical parameter changes.
Additional information: link
LoveFloki.updateUniswapV2Router(address)._uniswapV2Pair (#1093) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1094)
LoveFloki.setMarketingWallet(address).wallet (#1111) lacks a zero-check on :
- marketingWalletAddress = wallet (#1113)
LoveFloki.setDevWallet(address).wallet (#1116) lacks a zero-check on :
- devWalletAddress = wallet (#1118)
Check that the address is not zero.
Additional information: link
LoveFloki.swapTokensForEth(uint256) (#1289-1309) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1295)
LoveFloki.swapTokensForEth(uint256) (#1289-1309) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
LoveFloki.addLiquidity(uint256,uint256) (#1271-1287) has external calls inside a loop: (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
Address.sendValue(address,uint256) (#896-902) has external calls inside a loop: (success) = recipient.call{value: amount}() (#900)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in LoveFloki._transfer(address,address,uint256) (#1192-1250):
External calls:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- (success) = recipient.call{value: amount}() (#900)
State variables written after the call(s):
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- _allowances[owner][spender] = amount (#798)
Reentrancy in LoveFloki._transfer(address,address,uint256) (#1192-1250):
External calls:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- (success) = recipient.call{value: amount}() (#900)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- (success) = recipient.call{value: amount}() (#900)
State variables written after the call(s):
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- _allowances[owner][spender] = amount (#798)
Reentrancy in LoveFloki.constructor() (#1042-1065):
External calls:
- _uniswapV2Pair = ISwapFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1045)
State variables written after the call(s):
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1063)
- _balances[account] += amount (#743)
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1063)
- _totalSupply += amount (#742)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1050)
- automatedMarketMakerPairs[pair] = value (#1164)
- excludeFromFees(owner(),true) (#1053)
- isExcludedFromFees[account] = excluded (#1098)
- excludeFromFees(marketingWalletAddress,true) (#1054)
- isExcludedFromFees[account] = excluded (#1098)
- excludeFromFees(devWalletAddress,true) (#1055)
- isExcludedFromFees[account] = excluded (#1098)
- excludeFromFees(BURN_ADDRESS,true) (#1056)
- isExcludedFromFees[account] = excluded (#1098)
- excludeFromFees(address(this),true) (#1057)
- isExcludedFromFees[account] = excluded (#1098)
- maxTxAmount = totalSupply() / 500 (#1064)
- uniswapV2Pair = _uniswapV2Pair (#1048)
- uniswapV2Router = _uniswapV2Router (#1047)
Reentrancy in LoveFloki.swapAndLiquify(uint256) (#1257-1269):
External calls:
- newBalance = swapTokensForEth(half) (#1263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- addLiquidity(otherHalf,newBalance) (#1266)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1266)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1266)
- _allowances[owner][spender] = amount (#798)
Reentrancy in LoveFloki.updateUniswapV2Router(address) (#1089-1095):
External calls:
- _uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1093)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1094)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in LoveFloki._transfer(address,address,uint256) (#1192-1250):
External calls:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- (success) = recipient.call{value: amount}() (#900)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#799)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
Reentrancy in LoveFloki._transfer(address,address,uint256) (#1192-1250):
External calls:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- address(feeAddress).sendValue(newBalance) (#1254)
- (success) = recipient.call{value: amount}() (#900)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
External calls sending eth:
- swapAndLiquify(swapTokens) (#1221)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- swapAndSendToFee(marketingTokens,marketingWalletAddress) (#1224)
- (success) = recipient.call{value: amount}() (#900)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- (success) = recipient.call{value: amount}() (#900)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#799)
- swapAndSendToFee(devTokens,devWalletAddress) (#1226)
- Transfer(sender,recipient,amount) (#723)
- super._transfer(from,to,amount) (#1249)
- Transfer(sender,recipient,amount) (#723)
- super._transfer(from,address(this),fees) (#1246)
Reentrancy in LoveFloki.constructor() (#1042-1065):
External calls:
- _uniswapV2Pair = ISwapFactory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1045)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1100)
- excludeFromFees(devWalletAddress,true) (#1055)
- ExcludeFromFees(account,excluded) (#1100)
- excludeFromFees(marketingWalletAddress,true) (#1054)
- ExcludeFromFees(account,excluded) (#1100)
- excludeFromFees(owner(),true) (#1053)
- ExcludeFromFees(account,excluded) (#1100)
- excludeFromFees(address(this),true) (#1057)
- ExcludeFromFees(account,excluded) (#1100)
- excludeFromFees(BURN_ADDRESS,true) (#1056)
- SetAutomatedMarketMakerPair(pair,value) (#1166)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1050)
- Transfer(address(0),account,amount) (#744)
- _mint(owner(),1_000_000_000 * 10 ** 18) (#1063)
Reentrancy in LoveFloki.swapAndLiquify(uint256) (#1257-1269):
External calls:
- newBalance = swapTokensForEth(half) (#1263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1300-1306)
- addLiquidity(otherHalf,newBalance) (#1266)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
- address(marketingWalletAddress).sendValue(ethAmount - ethFromLiquidity) (#1286)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1266)
- (success) = recipient.call{value: amount}() (#900)
- (ethFromLiquidity) = uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1277-1284)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#799)
- addLiquidity(otherHalf,newBalance) (#1266)
- SwapAndLiquify(half,newBalance,otherHalf) (#1268)
Reentrancy in LoveFloki.withdrawExcessBNB(address) (#1183-1190):
External calls:
- address(_account).sendValue(contractBNBBalance) (#1187)
Event emitted after the call(s):
- AccidentallySentBNBWithdrawn(_account,contractBNBBalance) (#1189)
Reentrancy in LoveFloki.withdrawOtherTokens(address,address) (#1174-1179):
External calls:
- token.transfer(_account,tokenBalance) (#1177)
Event emitted after the call(s):
- AccidentallySentTokenWithdrawn(_token,_account,tokenBalance) (#1178)
Apply the check-effects-interactions pattern.
Additional information: link
LoveFloki._transfer(address,address,uint256) (#1192-1250) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(isBlacklistedUntil[from] < block.timestamp && isBlacklistedUntil[to] < block.timestamp,LoveFloki: Blacklisted address) (#1200)
- canSwap = contractTokenBalance >= swapTokensAtAmount && launchedAt + 10 < block.timestamp && tradingOpened (#1210)
- canSwap && ! swapping && ! automatedMarketMakerPairs[from] && from != owner() && to != owner() (#1212-1216)
- launchedAt + 10 < block.timestamp (#1240)
LoveFloki.addLiquidity(uint256,uint256) (#1271-1287) uses timestamp for comparisons
Dangerous comparisons:
- ethAmount - ethFromLiquidity > 0 (#1285)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#869-878) uses assembly
- INLINE ASM (#876)
Address._functionCallWithValue(address,bytes,uint256,string) (#962-983) uses assembly
- INLINE ASM (#975-978)
Do not use evm assembly.
Additional information: link
LoveFloki._transfer(address,address,uint256) (#1192-1250) has costly operations inside a loop:
- swapping = true (#1218)
LoveFloki._transfer(address,address,uint256) (#1192-1250) has costly operations inside a loop:
- swapping = false (#1229)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#962-983) is never used and should be removed
Address.functionCall(address,bytes) (#922-924) is never used and should be removed
Address.functionCall(address,bytes,string) (#932-934) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#947-949) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#957-960) is never used and should be removed
Address.isContract(address) (#869-878) is never used and should be removed
Context._msgData() (#307-310) is never used and should be removed
ERC20._burn(address,uint256) (#760-775) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#896-902):
- (success) = recipient.call{value: amount}() (#900)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#962-983):
- (success,returndata) = target.call{value: weiValue}(data) (#966)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function ISwapPair.DOMAIN_SEPARATOR() (#60) is not in mixedCase
Function ISwapPair.PERMIT_TYPEHASH() (#61) is not in mixedCase
Function ISwapPair.MINIMUM_LIQUIDITY() (#78) is not in mixedCase
Function ISwapRouter01.WETH() (#98) is not in mixedCase
Parameter LoveFloki.toggleTrading(bool)._tradingOpened (#1157) is not in mixedCase
Parameter LoveFloki.withdrawOtherTokens(address,address)._token (#1174) is not in mixedCase
Parameter LoveFloki.withdrawOtherTokens(address,address)._account (#1174) is not in mixedCase
Parameter LoveFloki.withdrawExcessBNB(address)._account (#1183) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#308)" inContext (#302-311)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable ISwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#103) is too similar to ISwapRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#104)
Prevent variables from having similar names.
Additional information: link
LoveFloki.slitherConstructorConstantVariables() (#991-1311) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#1000)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#333) is never used in LoveFloki (#991-1311)
Ownable._lockTime (#334) is never used in LoveFloki (#991-1311)
LoveFloki.antibotEndTime (#1015) is never used in LoveFloki (#991-1311)
Remove unused state variables.
Additional information: link
LoveFloki.antibotEndTime (#1015) should be constant
LoveFloki.feeDenominator (#1010) should be constant
LoveFloki.swapTokensAtAmount (#1002) should be constant
Ownable._lockTime (#334) should be constant
Ownable._previousOwner (#333) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#369-372)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#378-382)
name() should be declared external:
- ERC20.name() (#547-549)
symbol() should be declared external:
- ERC20.symbol() (#555-557)
decimals() should be declared external:
- ERC20.decimals() (#572-574)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#598-601)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#606-608)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#617-620)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#635-649)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#663-666)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#682-690)
updateUniswapV2Router(address) should be declared external:
- LoveFloki.updateUniswapV2Router(address) (#1089-1095)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- LoveFloki.excludeMultipleAccountsFromFees(address[],bool) (#1103-1109)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- LoveFloki.setAutomatedMarketMakerPair(address,bool) (#1142-1146)
excludedFromFees(address) should be declared external:
- LoveFloki.excludedFromFees(address) (#1169-1171)
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.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. 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 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 website, listings and other project-related information
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