Inspired by Elon's dog. MarsFlokiInu isn’t your average cryptocurrency. Elon will take his Floki to Mars. It is the people’s cryptocurrency. A movement. MarsFlokiInu will liberate all mankind from the effects of inflation. By combining the power of memes with real utility and charitability, MarsFlokiInu gives power and opportunity to the people -- to the underdogs -- instead of venture capitalists and hedge funds. MarsFlokiInu aims to be the most known and most used cryptocurrency in the world.
Reentrancy in FLOKI._transfer(address,address,uint256) (#633-671):
External calls:
- swapTokens(contractTokenBalance) (#651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#944)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _liquidityFee = _previousLiquidityFee (#876)
- _liquidityFee = 0 (#871)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#847)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#772)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#793)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rTotal = _rTotal.sub(rFee) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#849)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#792)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#782)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#773)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#794)
- buyBackTokens(balance.div(100)) (#659)
- inSwapAndLiquify = true (#487)
- inSwapAndLiquify = false (#489)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Ownable.unlock() (#203-208) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#205)
Avoid relying on block.timestamp.
Additional information: link
Redundant expression "this (#22)" inContext (#16-25)
Remove redundant statements if they congest code but offer no value.
Additional information: link
FLOKI._decimals (#444) should be constant
FLOKI._name (#442) should be constant
FLOKI._symbol (#443) should be constant
FLOKI._tTotal (#438) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
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
FLOKI.swapTokens(uint256) (#673-682) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#680)
Consider ordering multiplication before division.
Additional information: link
FLOKI.addLiquidity(uint256,uint256) (#728-741) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#733-740)
Ensure that all the return values of the function calls are used.
Additional information: link
FLOKI.allowance(address,address).owner (#534) shadows:
- Ownable.owner() (#168-170) (function)
FLOKI._approve(address,address,uint256).owner (#625) shadows:
- Ownable.owner() (#168-170) (function)
Rename the local variables that shadow another component.
Additional information: link
FLOKI.setTaxFeePercent(uint256) (#891-893) should emit an event for:
- _taxFee = taxFee (#892)
FLOKI.setLiquidityFeePercent(uint256) (#895-897) should emit an event for:
- _liquidityFee = liquidityFee (#896)
FLOKI.setMaxTxAmount(uint256) (#899-901) should emit an event for:
- _maxTxAmount = maxTxAmount (#900)
FLOKI.setMarketingDivisor(uint256) (#903-905) should emit an event for:
- marketingDivisor = divisor (#904)
FLOKI.setNumTokensSellToAddToLiquidity(uint256) (#907-909) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#908)
FLOKI.setBuybackUpperLimit(uint256) (#911-913) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#912)
Emit an event for critical parameter changes.
Additional information: link
FLOKI.setMarketingAddress(address)._marketingAddress (#915) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#916)
Check that the address is not zero.
Additional information: link
Reentrancy in FLOKI._transfer(address,address,uint256) (#633-671):
External calls:
- swapTokens(contractTokenBalance) (#651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#944)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousLiquidityFee = _liquidityFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tFeeTotal = _tFeeTotal.add(tFee) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _taxFee = _previousTaxFee (#875)
- _taxFee = 0 (#870)
Reentrancy in FLOKI.constructor() (#492-506):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#496-497)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#502)
- _isExcludedFromFee[address(this)] = true (#503)
- uniswapV2Router = _uniswapV2Router (#499)
Reentrancy in FLOKI.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#944)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
- _allowances[owner][spender] = amount (#629)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FLOKI._transfer(address,address,uint256) (#633-671):
External calls:
- swapTokens(contractTokenBalance) (#651)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#944)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#725)
- buyBackTokens(balance.div(100)) (#659)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#798)
- _tokenTransfer(from,to,amount,takeFee) (#670)
Reentrancy in FLOKI.constructor() (#492-506):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#496-497)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#505)
Reentrancy in FLOKI.swapETHForTokens(uint256) (#711-726):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#725)
Reentrancy in FLOKI.swapTokensForEth(uint256) (#691-709):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#708)
Reentrancy in FLOKI.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#700-706)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#944)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#630)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#98-107) uses assembly
- INLINE ASM (#105)
Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) uses assembly
- INLINE ASM (#144-147)
Do not use evm assembly.
Additional information: link
FLOKI.includeInReward(address) (#612-623) has costly operations inside a loop:
- _excluded.pop() (#619)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) is never used and should be removed
Address.functionCall(address,bytes) (#118-120) is never used and should be removed
Address.functionCall(address,bytes,string) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#126-128) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#130-133) is never used and should be removed
Address.isContract(address) (#98-107) is never used and should be removed
Address.sendValue(address,uint256) (#109-115) is never used and should be removed
Context._msgData() (#21-24) is never used and should be removed
FLOKI.addLiquidity(uint256,uint256) (#728-741) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-93) is never used and should be removed
Remove unused functions.
Additional information: link
FLOKI._rTotal (#439) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FLOKI._previousTaxFee (#448) is set pre-construction with a non-constant function or state variable:
- _taxFee
FLOKI._previousLiquidityFee (#451) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#109-115):
- (success) = recipient.call{value: amount}() (#113)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#135-152):
- (success,returndata) = target.call{value: weiValue}(data) (#138)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#247) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#248) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#264) is not in mixedCase
Function IUniswapV2Router01.WETH() (#285) is not in mixedCase
Parameter FLOKI.calculateTaxFee(uint256)._amount (#852) is not in mixedCase
Parameter FLOKI.calculateLiquidityFee(uint256)._amount (#858) is not in mixedCase
Parameter FLOKI.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#907) is not in mixedCase
Parameter FLOKI.setMarketingAddress(address)._marketingAddress (#915) is not in mixedCase
Parameter FLOKI.setSwapAndLiquifyEnabled(bool)._enabled (#919) is not in mixedCase
Parameter FLOKI.setBuyBackEnabled(bool)._enabled (#924) is not in mixedCase
Variable FLOKI._taxFee (#447) is not in mixedCase
Variable FLOKI._liquidityFee (#450) is not in mixedCase
Variable FLOKI._maxTxAmount (#455) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in FLOKI._transfer(address,address,uint256) (#633-671):
External calls:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#944)
External calls sending eth:
- swapTokens(contractTokenBalance) (#651)
- recipient.transfer(amount) (#944)
- buyBackTokens(balance.div(100)) (#659)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _liquidityFee = _previousLiquidityFee (#876)
- _liquidityFee = 0 (#871)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousLiquidityFee = _liquidityFee (#868)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _previousTaxFee = _taxFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#847)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#763)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#772)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#793)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _rTotal = _rTotal.sub(rFee) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tFeeTotal = _tFeeTotal.add(tFee) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#849)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#792)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#782)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#773)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- _taxFee = _previousTaxFee (#875)
- _taxFee = 0 (#870)
- buyBackTokens(balance.div(100)) (#659)
- inSwapAndLiquify = true (#487)
- inSwapAndLiquify = false (#489)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#725)
- buyBackTokens(balance.div(100)) (#659)
- Transfer(sender,recipient,tTransferAmount) (#767)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#670)
- Transfer(sender,recipient,tTransferAmount) (#798)
- _tokenTransfer(from,to,amount,takeFee) (#670)
Reentrancy in FLOKI.transferFrom(address,address,uint256) (#543-547):
External calls:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#944)
External calls sending eth:
- _transfer(sender,recipient,amount) (#544)
- recipient.transfer(amount) (#944)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#718-723)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
- _allowances[owner][spender] = amount (#629)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#630)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#545)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#290) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#291)
Variable FLOKI._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI._transferFromExcluded(address,address,uint256).rTransferAmount (#781) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#823) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._transferBothExcluded(address,address,uint256).rTransferAmount (#791) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._getValues(uint256).rTransferAmount (#808) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#591) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI._getValues(uint256).rTransferAmount (#808) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#823) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI._transferToExcluded(address,address,uint256).rTransferAmount (#771) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI._transferFromExcluded(address,address,uint256).rTransferAmount (#781) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#823) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._transferToExcluded(address,address,uint256).rTransferAmount (#771) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._getValues(uint256).rTransferAmount (#808) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI._transferBothExcluded(address,address,uint256).rTransferAmount (#791) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#591) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#591) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._getValues(uint256).rTransferAmount (#808) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#823) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable FLOKI._transferBothExcluded(address,address,uint256).rTransferAmount (#791) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI._transferFromExcluded(address,address,uint256).rTransferAmount (#781) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#823) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._transferToExcluded(address,address,uint256).rTransferAmount (#771) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._transferStandard(address,address,uint256).rTransferAmount (#762) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#591) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#591) is too similar to FLOKI._getValues(uint256).tTransferAmount (#807)
Variable FLOKI._transferBothExcluded(address,address,uint256).rTransferAmount (#791) is too similar to FLOKI._transferFromExcluded(address,address,uint256).tTransferAmount (#781)
Variable FLOKI._getValues(uint256).rTransferAmount (#808) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI._transferFromExcluded(address,address,uint256).rTransferAmount (#781) is too similar to FLOKI._transferToExcluded(address,address,uint256).tTransferAmount (#771)
Variable FLOKI._transferToExcluded(address,address,uint256).rTransferAmount (#771) is too similar to FLOKI._transferBothExcluded(address,address,uint256).tTransferAmount (#791)
Variable FLOKI._getValues(uint256).rTransferAmount (#808) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable FLOKI._transferToExcluded(address,address,uint256).rTransferAmount (#771) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable FLOKI.reflectionFromToken(uint256,bool).rTransferAmount (#591) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable FLOKI._transferBothExcluded(address,address,uint256).rTransferAmount (#791) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI._transferFromExcluded(address,address,uint256).rTransferAmount (#781) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable FLOKI._transferToExcluded(address,address,uint256).rTransferAmount (#771) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI._transferFromExcluded(address,address,uint256).rTransferAmount (#781) is too similar to FLOKI._getTValues(uint256).tTransferAmount (#815)
Variable FLOKI._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#823) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Variable FLOKI._transferBothExcluded(address,address,uint256).rTransferAmount (#791) is too similar to FLOKI._transferStandard(address,address,uint256).tTransferAmount (#762)
Prevent variables from having similar names.
Additional information: link
FLOKI.prepareForPreSale() (#929-934) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#933)
FLOKI.afterPreSale() (#936-941) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#940)
FLOKI.slitherConstructorVariables() (#422-950) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#427)
FLOKI.slitherConstructorVariables() (#422-950) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#438)
FLOKI.slitherConstructorVariables() (#422-950) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#455)
FLOKI.slitherConstructorVariables() (#422-950) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#456)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#177-180)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#182-186)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#188-190)
getTime() should be declared external:
- Ownable.getTime() (#192-194)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#196-201)
unlock() should be declared external:
- Ownable.unlock() (#203-208)
name() should be declared external:
- FLOKI.name() (#508-510)
symbol() should be declared external:
- FLOKI.symbol() (#512-514)
decimals() should be declared external:
- FLOKI.decimals() (#516-518)
totalSupply() should be declared external:
- FLOKI.totalSupply() (#520-522)
transfer(address,uint256) should be declared external:
- FLOKI.transfer(address,uint256) (#529-532)
allowance(address,address) should be declared external:
- FLOKI.allowance(address,address) (#534-536)
approve(address,uint256) should be declared external:
- FLOKI.approve(address,uint256) (#538-541)
transferFrom(address,address,uint256) should be declared external:
- FLOKI.transferFrom(address,address,uint256) (#543-547)
increaseAllowance(address,uint256) should be declared external:
- FLOKI.increaseAllowance(address,uint256) (#549-552)
decreaseAllowance(address,uint256) should be declared external:
- FLOKI.decreaseAllowance(address,uint256) (#554-557)
isExcludedFromReward(address) should be declared external:
- FLOKI.isExcludedFromReward(address) (#559-561)
totalFees() should be declared external:
- FLOKI.totalFees() (#563-565)
minimumTokensBeforeSwapAmount() should be declared external:
- FLOKI.minimumTokensBeforeSwapAmount() (#567-569)
buyBackUpperLimitAmount() should be declared external:
- FLOKI.buyBackUpperLimitAmount() (#571-573)
deliver(uint256) should be declared external:
- FLOKI.deliver(uint256) (#575-582)
reflectionFromToken(uint256,bool) should be declared external:
- FLOKI.reflectionFromToken(uint256,bool) (#585-594)
excludeFromReward(address) should be declared external:
- FLOKI.excludeFromReward(address) (#602-610)
isExcludedFromFee(address) should be declared external:
- FLOKI.isExcludedFromFee(address) (#879-881)
excludeFromFee(address) should be declared external:
- FLOKI.excludeFromFee(address) (#883-885)
includeInFee(address) should be declared external:
- FLOKI.includeInFee(address) (#887-889)
setBuyBackEnabled(bool) should be declared external:
- FLOKI.setBuyBackEnabled(bool) (#924-927)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts