Floki Shiba is cute but with a lot of BITE! $FSHIB is a deflationary coin designed to become more scarce over time. All holders of Floki Shiba will earn more Floki Shiba that is automatically sent to your wallet by simply by holding Floki Shiba coins in your wallet. Watch the amount of Floki Shiba grow in your wallet as all holders automatically receive a 5% fee from every transaction that happens on the Floki Shiba network. The community owns the Floki Shiba network earning from fees generated on the Floki Shiba network.
FlokiShiba.addLiquidity(uint256,uint256) (#1089-1102) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in FlokiShiba._transfer(address,address,uint256) (#1002-1046):
External calls:
- swapAndLiquify(contractTokenBalance) (#1033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#953)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1136)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1127)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1147)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#867)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1138)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _rTotal = _rTotal.sub(rFee) (#908)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#955)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#866)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1146)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1137)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#868)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
Contract ownership is not renounced (belongs to a wallet)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#423-426)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#432-436)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#438-440)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#443-448)
unlock() should be declared external:
- Ownable.unlock() (#451-456)
name() should be declared external:
- FlokiShiba.name() (#757-759)
symbol() should be declared external:
- FlokiShiba.symbol() (#761-763)
decimals() should be declared external:
- FlokiShiba.decimals() (#765-767)
totalSupply() should be declared external:
- FlokiShiba.totalSupply() (#769-771)
transfer(address,uint256) should be declared external:
- FlokiShiba.transfer(address,uint256) (#778-781)
allowance(address,address) should be declared external:
- FlokiShiba.allowance(address,address) (#783-785)
approve(address,uint256) should be declared external:
- FlokiShiba.approve(address,uint256) (#787-790)
transferFrom(address,address,uint256) should be declared external:
- FlokiShiba.transferFrom(address,address,uint256) (#792-796)
increaseAllowance(address,uint256) should be declared external:
- FlokiShiba.increaseAllowance(address,uint256) (#798-801)
decreaseAllowance(address,uint256) should be declared external:
- FlokiShiba.decreaseAllowance(address,uint256) (#803-806)
isExcludedFromReward(address) should be declared external:
- FlokiShiba.isExcludedFromReward(address) (#808-810)
totalFees() should be declared external:
- FlokiShiba.totalFees() (#812-814)
deliver(uint256) should be declared external:
- FlokiShiba.deliver(uint256) (#816-823)
reflectionFromToken(uint256,bool) should be declared external:
- FlokiShiba.reflectionFromToken(uint256,bool) (#825-834)
excludeFromReward(address) should be declared external:
- FlokiShiba.excludeFromReward(address) (#842-850)
excludeFromFee(address) should be declared external:
- FlokiShiba.excludeFromFee(address) (#875-877)
includeInFee(address) should be declared external:
- FlokiShiba.includeInFee(address) (#879-881)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- FlokiShiba.setNumTokensSellToAddToLiquidity(uint256) (#891-893)
setMaxTxPercent(uint256) should be declared external:
- FlokiShiba.setMaxTxPercent(uint256) (#895-897)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FlokiShiba.setSwapAndLiquifyEnabled(bool) (#899-902)
claimTokens() should be declared external:
- FlokiShiba.claimTokens() (#959-961)
isExcludedFromFee(address) should be declared external:
- FlokiShiba.isExcludedFromFee(address) (#990-992)
Use the external attribute for functions never called from the contract.
Additional information: link
FlokiShiba.addLiquidity(uint256,uint256) (#1089-1102) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
Ensure that all the return values of the function calls are used.
Additional information: link
FlokiShiba.allowance(address,address).owner (#783) shadows:
- Ownable.owner() (#404-406) (function)
FlokiShiba._approve(address,address,uint256).owner (#994) shadows:
- Ownable.owner() (#404-406) (function)
Rename the local variables that shadow another component.
Additional information: link
FlokiShiba.setTaxFeePercent(uint256) (#883-885) should emit an event for:
- _taxFee = taxFee (#884)
FlokiShiba.setLiquidityFeePercent(uint256) (#887-889) should emit an event for:
- _liquidityFee = liquidityFee (#888)
FlokiShiba.setNumTokensSellToAddToLiquidity(uint256) (#891-893) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber * 10 ** _decimals (#892)
FlokiShiba.setMaxTxPercent(uint256) (#895-897) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#896)
Emit an event for critical parameter changes.
Additional information: link
FlokiShiba.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address).tokenOwner (#724) lacks a zero-check on :
- _owner = tokenOwner (#752)
Check that the address is not zero.
Additional information: link
Reentrancy in FlokiShiba._transfer(address,address,uint256) (#1002-1046):
External calls:
- swapAndLiquify(contractTokenBalance) (#1033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _liquidityFee = _previousLiquidityFee (#987)
- _liquidityFee = 0 (#982)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _previousLiquidityFee = _liquidityFee (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _previousTaxFee = _taxFee (#978)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _tFeeTotal = _tFeeTotal.add(tFee) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- _taxFee = _previousTaxFee (#986)
- _taxFee = 0 (#981)
Reentrancy in FlokiShiba.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address) (#724-754):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#742-743)
State variables written after the call(s):
- _isExcludedFromFee[tokenOwner] = true (#749)
- _isExcludedFromFee[address(this)] = true (#750)
- _owner = tokenOwner (#752)
- uniswapV2Router = _uniswapV2Router (#746)
Reentrancy in FlokiShiba.swapAndLiquify(uint256) (#1048-1069):
External calls:
- swapTokensForEth(half) (#1060)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
- addLiquidity(otherHalf,newBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1066)
- _allowances[owner][spender] = amount (#998)
Reentrancy in FlokiShiba.transferFrom(address,address,uint256) (#792-796):
External calls:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
External calls sending eth:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#794)
- _allowances[owner][spender] = amount (#998)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FlokiShiba._transfer(address,address,uint256) (#1002-1046):
External calls:
- swapAndLiquify(contractTokenBalance) (#1033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1033)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1131)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- Transfer(sender,recipient,tTransferAmount) (#1151)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- Transfer(sender,recipient,tTransferAmount) (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount,takeFee) (#1045)
Reentrancy in FlokiShiba.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address) (#724-754):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#742-743)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#753)
Reentrancy in FlokiShiba.swapAndLiquify(uint256) (#1048-1069):
External calls:
- swapTokensForEth(half) (#1060)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
- addLiquidity(otherHalf,newBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1066)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#999)
- addLiquidity(otherHalf,newBalance) (#1066)
- SwapAndLiquify(half,newBalance,otherHalf) (#1068)
Reentrancy in FlokiShiba.transferFrom(address,address,uint256) (#792-796):
External calls:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1080-1086)
External calls sending eth:
- _transfer(sender,recipient,amount) (#793)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1094-1101)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#999)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#794)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#451-456) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#453)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._owner (#394) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#495) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#496) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#513) is not in mixedCase
Function IUniswapV2Router01.WETH() (#535) is not in mixedCase
Parameter FlokiShiba.setSwapAndLiquifyEnabled(bool)._enabled (#899) is not in mixedCase
Parameter FlokiShiba.calculateTaxFee(uint256)._amount (#963) is not in mixedCase
Parameter FlokiShiba.calculateLiquidityFee(uint256)._amount (#969) is not in mixedCase
Variable FlokiShiba._taxFee (#695) is not in mixedCase
Variable FlokiShiba._liquidityFee (#698) is not in mixedCase
Variable FlokiShiba._maxTxAmount (#707) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#540) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#541)
Variable FlokiShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._transferToExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba._getValues(uint256).rTransferAmount (#914) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable FlokiShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable FlokiShiba.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._transferStandard(address,address,uint256).rTransferAmount (#1126) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable FlokiShiba.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable FlokiShiba._transferStandard(address,address,uint256).rTransferAmount (#1126) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba._transferStandard(address,address,uint256).rTransferAmount (#1126) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to FlokiShiba._transferToExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FlokiShiba._getValues(uint256).rTransferAmount (#914) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._transferToExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable FlokiShiba._transferStandard(address,address,uint256).rTransferAmount (#1126) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba._transferToExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._getValues(uint256).rTransferAmount (#914) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#929) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba._transferToExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FlokiShiba._getValues(uint256).tTransferAmount (#913)
Variable FlokiShiba._transferStandard(address,address,uint256).rTransferAmount (#1126) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable FlokiShiba._transferStandard(address,address,uint256).rTransferAmount (#1126) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._getValues(uint256).rTransferAmount (#914) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba.reflectionFromToken(uint256,bool).rTransferAmount (#831) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba._getValues(uint256).rTransferAmount (#914) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._transferToExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to FlokiShiba._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable FlokiShiba._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to FlokiShiba._getTValues(uint256).tTransferAmount (#921)
Variable FlokiShiba._transferToExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FlokiShiba._transferStandard(address,address,uint256).tTransferAmount (#1126)
Variable FlokiShiba._getValues(uint256).rTransferAmount (#914) is too similar to FlokiShiba._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Prevent variables from having similar names.
Additional information: link
FlokiShiba.includeInReward(address) (#852-863) has costly operations inside a loop:
- _excluded.pop() (#859)
Use a local variable to hold the loop computation result.
Additional information: link
Contract has 36% buy tax and 36% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Unable to find token on CoinHunt
Additional information: link
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but social accounts / website are missing or have few users
Alexa traffic rank is relatively low
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts