Shiba Floki which operates on Binance Smart Chain is the latest cryptocurrency that's a descendant of meme father Dogecoin. More specifically, it's a hyper-deflationary subcoin that has a smart sharing system built in ecosystem so every investor gets more shibafloki added to their wallet. This means every card owner gets %5 commission fee for every transaction that takes place. Imagine being able to track fresh new tokens immediately even before they launch while being sure if buying them is safe.
Reentrancy in ShibaFloki._transfer(address,address,uint256) (#1095-1133):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _rOwned[wallet] = _rOwned[wallet].add(rMarketing) (#1036)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1028)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1230)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1208)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1209)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1254)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#895)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1255)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1232)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#897)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _rTotal = _rTotal.sub(rFee) (#956)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1030)
- _tOwned[wallet] = _tOwned[wallet].add(tMarketing) (#1038)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#894)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1253)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1231)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#896)
Apply the check-effects-interactions pattern.
Additional information: link
ShibaFloki.transferAny(address,address,uint256) (#942-949) ignores return value by IERC20(token).transfer(to,amount) (#948)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Contract ownership is not renounced (belongs to a wallet)
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious
ShibaFloki.addLiquidity(uint256,uint256) (#1159-1169) ignores return value by FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
Ensure that all the return values of the function calls are used.
Additional information: link
ShibaFloki.allowance(address,address).owner (#720) shadows:
- Ownable.owner() (#213-215) (function)
ShibaFloki._approve(address,address,uint256).owner (#1084) shadows:
- Ownable.owner() (#213-215) (function)
Rename the local variables that shadow another component.
Additional information: link
ShibaFloki.setTaxFeePercent(uint256) (#914-916) should emit an event for:
- _taxFee = taxFee (#915)
ShibaFloki.setLiquidityFeePercent(uint256) (#918-920) should emit an event for:
- _liquidityFee = liquidityFee (#919)
ShibaFloki.setMarketingFeePercent(uint256) (#922-924) should emit an event for:
- _marketingFee = marketingFee (#923)
ShibaFloki.setMaxTxPercent(uint256) (#926-928) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#927)
Emit an event for critical parameter changes.
Additional information: link
ShibaFloki.transferETH(address,uint256).to (#951) lacks a zero-check on :
- address(to).transfer(amount) (#952)
ShibaFloki.changeWallet(address).newWallet (#1262) lacks a zero-check on :
- wallet = address(newWallet) (#1263)
Check that the address is not zero.
Additional information: link
Reentrancy in ShibaFloki._transfer(address,address,uint256) (#1095-1133):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _liquidityFee = _previousLiquidityFee (#1075)
- _liquidityFee = 0 (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _marketingFee = _previousMarketingFee (#1076)
- _marketingFee = 0 (#1070)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousLiquidityFee = _liquidityFee (#1065)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousMarketingFee = _marketingFee (#1066)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _previousTaxFee = _taxFee (#1064)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _tFeeTotal = _tFeeTotal.add(tFee) (#957)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- _taxFee = _previousTaxFee (#1074)
- _taxFee = 0 (#1068)
Reentrancy in ShibaFloki.constructor() (#672-688):
External calls:
- flokiPair = FlokiFactory(_FlokiRouter.factory()).createPair(address(this),_FlokiRouter.WETH()) (#677-680)
State variables written after the call(s):
- FlokiRouter = _FlokiRouter (#681)
- _isExcludedFromFee[owner()] = true (#682)
- _isExcludedFromFee[address(this)] = true (#683)
- _isExcludedFromMarketFee[owner()] = true (#684)
- _isExcludedFromMarketFee[address(this)] = true (#685)
- wallet = msg.sender (#687)
Reentrancy in ShibaFloki.swapAndLiquify(uint256) (#1135-1143):
External calls:
- swapTokensForEth(half) (#1139)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
- addLiquidity(otherHalf,newBalance) (#1141)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1141)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1141)
- _allowances[owner][spender] = amount (#1091)
Reentrancy in ShibaFloki.transferFrom(address,address,uint256) (#738-753):
External calls:
- _transfer(sender,recipient,amount) (#743)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
External calls sending eth:
- _transfer(sender,recipient,amount) (#743)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#744-751)
- _allowances[owner][spender] = amount (#1091)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ShibaFloki._transfer(address,address,uint256) (#1095-1133):
External calls:
- swapAndLiquify(contractTokenBalance) (#1126)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1126)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1213)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,recipient,tTransferAmount) (#1236)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,recipient,tTransferAmount) (#1259)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
- Transfer(sender,recipient,tTransferAmount) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1132)
Reentrancy in ShibaFloki.constructor() (#672-688):
External calls:
- flokiPair = FlokiFactory(_FlokiRouter.factory()).createPair(address(this),_FlokiRouter.WETH()) (#677-680)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#686)
Reentrancy in ShibaFloki.swapAndLiquify(uint256) (#1135-1143):
External calls:
- swapTokensForEth(half) (#1139)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
- addLiquidity(otherHalf,newBalance) (#1141)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1141)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1092)
- addLiquidity(otherHalf,newBalance) (#1141)
- SwapAndLiquify(half,newBalance,otherHalf) (#1142)
Reentrancy in ShibaFloki.transferFrom(address,address,uint256) (#738-753):
External calls:
- _transfer(sender,recipient,amount) (#743)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
- FlokiRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1150-1156)
External calls sending eth:
- _transfer(sender,recipient,amount) (#743)
- FlokiRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1161-1168)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1092)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#744-751)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#247-255) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#252)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#109-116) uses assembly
- INLINE ASM (#112-114)
Address._functionCallWithValue(address,bytes,uint256,string) (#172-194) uses assembly
- INLINE ASM (#186-189)
Do not use evm assembly.
Additional information: link
ShibaFloki._transfer(address,address,uint256) (#1095-1133) compares to a boolean constant:
-require(bool,string)(transferEnabled == true,Transfer blocked!) (#1109)
ShibaFloki._transfer(address,address,uint256) (#1095-1133) compares to a boolean constant:
-require(bool,string)(_isExcludedFromTransfer[from] != true,Transfer blocked from this address) (#1100-1103)
Remove the equality to the boolean constant.
Additional information: link
ShibaFloki.includeInReward(address) (#867-878) has costly operations inside a loop:
- _excluded.pop() (#874)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#172-194) is never used and should be removed
Address.functionCall(address,bytes) (#130-135) is never used and should be removed
Address.functionCall(address,bytes,string) (#137-143) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#145-157) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#159-170) is never used and should be removed
Address.isContract(address) (#109-116) is never used and should be removed
Address.sendValue(address,uint256) (#118-128) is never used and should be removed
Context._msgData() (#102-105) is never used and should be removed
SafeMath.mod(uint256,uint256) (#83-85) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#87-94) is never used and should be removed
Remove unused functions.
Additional information: link
ShibaFloki._rTotal (#622) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ShibaFloki._previousTaxFee (#630) is set pre-construction with a non-constant function or state variable:
- _taxFee
ShibaFloki._previousLiquidityFee (#633) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ShibaFloki._previousMarketingFee (#636) 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) (#118-128):
- (success) = recipient.call{value: amount}() (#123)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#172-194):
- (success,returndata) = target.call{value: weiValue}(data) (#179-181)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function FlokiPair.DOMAIN_SEPARATOR() (#321) is not in mixedCase
Function FlokiPair.PERMIT_TYPEHASH() (#323) is not in mixedCase
Function FlokiPair.MINIMUM_LIQUIDITY() (#354) is not in mixedCase
Function RouterOne.WETH() (#400) is not in mixedCase
Event ShibaFlokitransferEnabledUpdated(bool) (#650) is not in CapWords
Parameter ShibaFloki.setSwapAndLiquifyEnabled(bool)._enabled (#930) is not in mixedCase
Parameter ShibaFloki.setTransferEnabled(bool)._enabled (#935) is not in mixedCase
Parameter ShibaFloki.calculateTaxFee(uint256)._amount (#1041) is not in mixedCase
Parameter ShibaFloki.calculateLiquidityFee(uint256)._amount (#1045) is not in mixedCase
Parameter ShibaFloki.calculateMarketingFee(uint256)._amount (#1053) is not in mixedCase
Variable ShibaFloki._taxFee (#629) is not in mixedCase
Variable ShibaFloki._liquidityFee (#632) is not in mixedCase
Variable ShibaFloki._marketingFee (#635) is not in mixedCase
Variable ShibaFloki.FlokiRouter (#638) is not in mixedCase
Variable ShibaFloki._maxTxAmount (#646) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#103)" inContext (#97-106)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable RouterOne.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#405) is too similar to RouterOne.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#406)
Variable ShibaFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#887) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Variable ShibaFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki._transferStandard(address,address,uint256).rTransferAmount (#1201) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1001) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#887) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._transferStandard(address,address,uint256).rTransferAmount (#1201) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Variable ShibaFloki._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1001) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Variable ShibaFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#887) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Variable ShibaFloki.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#887) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._transferStandard(address,address,uint256).rTransferAmount (#1201) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Variable ShibaFloki._transferStandard(address,address,uint256).rTransferAmount (#1201) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#887) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1001) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._transferStandard(address,address,uint256).rTransferAmount (#1201) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1223) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._getValues(uint256).rTransferAmount (#963) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1223) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki._transferStandard(address,address,uint256).rTransferAmount (#1201) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1223) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Variable ShibaFloki._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1001) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._getValues(uint256).rTransferAmount (#963) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1223) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki._getValues(uint256).rTransferAmount (#963) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._getValues(uint256).rTransferAmount (#963) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1001) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki.reflectionFromToken(uint256,bool).rTransferAmount (#822) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1223) is too similar to ShibaFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#1248)
Variable ShibaFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#887) is too similar to ShibaFloki._getTValues(uint256).tTransferAmount (#980)
Variable ShibaFloki._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1001) is too similar to ShibaFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#889)
Variable ShibaFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#1246) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki._transferToExcluded(address,address,uint256).rTransferAmount (#1223) is too similar to ShibaFloki._getValues(uint256).tTransferAmount (#962)
Variable ShibaFloki._getValues(uint256).rTransferAmount (#963) is too similar to ShibaFloki._transferStandard(address,address,uint256).tTransferAmount (#1203)
Variable ShibaFloki._getValues(uint256).rTransferAmount (#963) is too similar to ShibaFloki._transferToExcluded(address,address,uint256).tTransferAmount (#1225)
Prevent variables from having similar names.
Additional information: link
ShibaFloki.slitherConstructorVariables() (#603-1266) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 18 (#621)
ShibaFloki.slitherConstructorVariables() (#603-1266) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 18 (#646)
ShibaFloki.slitherConstructorVariables() (#603-1266) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 600000 * 10 ** 6 * 10 ** 18 (#647)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ShibaFloki._decimals (#627) should be constant
ShibaFloki._name (#625) should be constant
ShibaFloki._symbol (#626) should be constant
ShibaFloki._tTotal (#621) should be constant
ShibaFloki.numTokensSellToAddToLiquidity (#647) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#222-225)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#227-234)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#236-238)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#240-245)
unlock() should be declared external:
- Ownable.unlock() (#247-255)
name() should be declared external:
- ShibaFloki.name() (#690-692)
symbol() should be declared external:
- ShibaFloki.symbol() (#694-696)
decimals() should be declared external:
- ShibaFloki.decimals() (#698-700)
totalSupply() should be declared external:
- ShibaFloki.totalSupply() (#702-704)
transfer(address,uint256) should be declared external:
- ShibaFloki.transfer(address,uint256) (#711-718)
allowance(address,address) should be declared external:
- ShibaFloki.allowance(address,address) (#720-727)
approve(address,uint256) should be declared external:
- ShibaFloki.approve(address,uint256) (#729-736)
transferFrom(address,address,uint256) should be declared external:
- ShibaFloki.transferFrom(address,address,uint256) (#738-753)
increaseAllowance(address,uint256) should be declared external:
- ShibaFloki.increaseAllowance(address,uint256) (#755-766)
decreaseAllowance(address,uint256) should be declared external:
- ShibaFloki.decreaseAllowance(address,uint256) (#768-782)
isExcludedFromReward(address) should be declared external:
- ShibaFloki.isExcludedFromReward(address) (#784-786)
isExcludedFromTransfer(address) should be declared external:
- ShibaFloki.isExcludedFromTransfer(address) (#788-794)
totalFees() should be declared external:
- ShibaFloki.totalFees() (#796-798)
deliver(uint256) should be declared external:
- ShibaFloki.deliver(uint256) (#800-810)
reflectionFromToken(uint256,bool) should be declared external:
- ShibaFloki.reflectionFromToken(uint256,bool) (#812-825)
excludeFromTransfer(address) should be declared external:
- ShibaFloki.excludeFromTransfer(address) (#840-847)
excludeFromReward(address) should be declared external:
- ShibaFloki.excludeFromReward(address) (#849-856)
excludeFromFee(address) should be declared external:
- ShibaFloki.excludeFromFee(address) (#904-907)
includeInFee(address) should be declared external:
- ShibaFloki.includeInFee(address) (#909-912)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ShibaFloki.setSwapAndLiquifyEnabled(bool) (#930-933)
setTransferEnabled(bool) should be declared external:
- ShibaFloki.setTransferEnabled(bool) (#935-938)
isExcludedFromFee(address) should be declared external:
- ShibaFloki.isExcludedFromFee(address) (#1079-1081)
Use the external attribute for functions never called from the contract.
Additional information: link
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 8% buy tax and 7% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Token has a considerable age, but we're still unable to find its website
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Youtube account
Unable to find Discord account