ZeusFloki Token Logo

ZeusFloki Token

About ZeusFloki

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 9 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in ZeusFloki._transfer(address,address,uint256) (#640-670):
External calls:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#591)
- _rOwned[_developmentWalletAddress] = _rOwned[_developmentWalletAddress].add(rDevelopment) (#598)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#732)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#723)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#516)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#724)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#743)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#744)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#734)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#518)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rTotal = _rTotal.sub(rFee) (#550)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#593)
- _tOwned[_developmentWalletAddress] = _tOwned[_developmentWalletAddress].add(tDevelopment) (#600)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#515)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#742)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#733)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#517)
Apply the check-effects-interactions pattern.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#173-176)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#177-181)
name() should be declared external:
- ZeusFloki.name() (#424-426)
symbol() should be declared external:
- ZeusFloki.symbol() (#427-429)
decimals() should be declared external:
- ZeusFloki.decimals() (#430-432)
totalSupply() should be declared external:
- ZeusFloki.totalSupply() (#433-435)
transfer(address,uint256) should be declared external:
- ZeusFloki.transfer(address,uint256) (#440-443)
allowance(address,address) should be declared external:
- ZeusFloki.allowance(address,address) (#444-446)
approve(address,uint256) should be declared external:
- ZeusFloki.approve(address,uint256) (#447-450)
transferFrom(address,address,uint256) should be declared external:
- ZeusFloki.transferFrom(address,address,uint256) (#451-455)
increaseAllowance(address,uint256) should be declared external:
- ZeusFloki.increaseAllowance(address,uint256) (#456-459)
decreaseAllowance(address,uint256) should be declared external:
- ZeusFloki.decreaseAllowance(address,uint256) (#460-463)
isExcludedFromReward(address) should be declared external:
- ZeusFloki.isExcludedFromReward(address) (#464-466)
totalFees() should be declared external:
- ZeusFloki.totalFees() (#467-469)
deliver(uint256) should be declared external:
- ZeusFloki.deliver(uint256) (#470-477)
reflectionFromToken(uint256,bool) should be declared external:
- ZeusFloki.reflectionFromToken(uint256,bool) (#478-487)
excludeFromReward(address) should be declared external:
- ZeusFloki.excludeFromReward(address) (#493-500)
excludeFromFee(address) should be declared external:
- ZeusFloki.excludeFromFee(address) (#524-526)
includeInFee(address) should be declared external:
- ZeusFloki.includeInFee(address) (#527-529)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ZeusFloki.setSwapAndLiquifyEnabled(bool) (#544-547)
isExcludedFromFee(address) should be declared external:
- ZeusFloki.isExcludedFromFee(address) (#631-633)
Use the external attribute for functions never called from the contract.

Additional information: link

ZeusFloki.addLiquidity(uint256,uint256) (#693-703) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
Ensure that all the return values of the function calls are used.

Additional information: link

ZeusFloki.allowance(address,address).owner (#444) shadows:
- Ownable.owner() (#166-168) (function)
ZeusFloki._approve(address,address,uint256).owner (#634) shadows:
- Ownable.owner() (#166-168) (function)
Rename the local variables that shadow another component.

Additional information: link

ZeusFloki.setTaxFeePercent(uint256) (#530-532) should emit an event for:
- _taxFee = taxFee (#531)
ZeusFloki.setDevelopmentFeePercent(uint256) (#533-535) should emit an event for:
- _developmentFee = developmentFee (#534)
ZeusFloki.setLiquidityFeePercent(uint256) (#536-538) should emit an event for:
- _liquidityFee = liquidityFee (#537)
ZeusFloki.setMaxTxPercent(uint256) (#539-543) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#540-542)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in ZeusFloki._transfer(address,address,uint256) (#640-670):
External calls:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _developmentFee = _previousDevelopmentFee (#628)
- _developmentFee = 0 (#623)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _liquidityFee = _previousLiquidityFee (#629)
- _liquidityFee = 0 (#624)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousDevelopmentFee = _developmentFee (#620)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousLiquidityFee = _liquidityFee (#621)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousTaxFee = _taxFee (#619)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tFeeTotal = _tFeeTotal.add(tFee) (#551)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _taxFee = _previousTaxFee (#627)
- _taxFee = 0 (#622)
Reentrancy in ZeusFloki.constructor() (#414-423):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#417-418)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#420)
- _isExcludedFromFee[address(this)] = true (#421)
- uniswapV2Router = _uniswapV2Router (#419)
Reentrancy in ZeusFloki.swapAndLiquify(uint256) (#671-679):
External calls:
- swapTokensForEth(half) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
- addLiquidity(otherHalf,newBalance) (#677)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#677)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#677)
- _allowances[owner][spender] = amount (#637)
Reentrancy in ZeusFloki.transferFrom(address,address,uint256) (#451-455):
External calls:
- _transfer(sender,recipient,amount) (#452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
External calls sending eth:
- _transfer(sender,recipient,amount) (#452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#453)
- _allowances[owner][spender] = amount (#637)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ZeusFloki._transfer(address,address,uint256) (#640-670):
External calls:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#663)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#728)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#748)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#738)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#522)
- _tokenTransfer(from,to,amount,takeFee) (#669)
Reentrancy in ZeusFloki.constructor() (#414-423):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#417-418)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#422)
Reentrancy in ZeusFloki.swapAndLiquify(uint256) (#671-679):
External calls:
- swapTokensForEth(half) (#675)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
- addLiquidity(otherHalf,newBalance) (#677)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#677)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- addLiquidity(otherHalf,newBalance) (#677)
- SwapAndLiquify(half,newBalance,otherHalf) (#678)
Reentrancy in ZeusFloki.transferFrom(address,address,uint256) (#451-455):
External calls:
- _transfer(sender,recipient,amount) (#452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#685-691)
External calls sending eth:
- _transfer(sender,recipient,amount) (#452)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#695-702)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#453)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#102-106) uses assembly
- INLINE ASM (#104)
Address._verifyCallResult(bool,bytes,string) (#143-156) uses assembly
- INLINE ASM (#148-151)
Do not use evm assembly.

Additional information: link

ZeusFloki.includeInReward(address) (#501-512) has costly operations inside a loop:
- _excluded.pop() (#508)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#143-156) is never used and should be removed
Address.functionCall(address,bytes) (#112-114) is never used and should be removed
Address.functionCall(address,bytes,string) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#121-126) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#135-137) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#138-142) is never used and should be removed
Address.functionStaticCall(address,bytes) (#127-129) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#130-134) is never used and should be removed
Address.isContract(address) (#102-106) is never used and should be removed
Address.sendValue(address,uint256) (#107-111) is never used and should be removed
Context._msgData() (#95-98) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#77-82) is never used and should be removed
SafeMath.mod(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#83-88) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#23-29) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#44-49) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#50-55) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#36-43) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#30-35) is never used and should be removed
Remove unused functions.

Additional information: link

ZeusFloki._rTotal (#383) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ZeusFloki._previousTaxFee (#389) is set pre-construction with a non-constant function or state variable:
- _taxFee
ZeusFloki._previousDevelopmentFee (#391) is set pre-construction with a non-constant function or state variable:
- _developmentFee
ZeusFloki._previousLiquidityFee (#393) 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) (#107-111):
- (success) = recipient.call{value: amount}() (#109)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#121-126):
- (success,returndata) = target.call{value: value}(data) (#124)
Low level call in Address.functionStaticCall(address,bytes,string) (#130-134):
- (success,returndata) = target.staticcall(data) (#132)
Low level call in Address.functionDelegateCall(address,bytes,string) (#138-142):
- (success,returndata) = target.delegatecall(data) (#140)
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() (#208) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#209) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#223) is not in mixedCase
Function IUniswapV2Router01.WETH() (#241) is not in mixedCase
Parameter ZeusFloki.setSwapAndLiquifyEnabled(bool)._enabled (#544) is not in mixedCase
Parameter ZeusFloki.calculateTaxFee(uint256)._amount (#602) is not in mixedCase
Parameter ZeusFloki.calculateDevelopmentFee(uint256)._amount (#607) is not in mixedCase
Parameter ZeusFloki.calculateLiquidityFee(uint256)._amount (#612) is not in mixedCase
Variable ZeusFloki._taxFee (#388) is not in mixedCase
Variable ZeusFloki._developmentFee (#390) is not in mixedCase
Variable ZeusFloki._liquidityFee (#392) is not in mixedCase
Variable ZeusFloki._maxTxAmount (#400) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#96)" inContext (#91-99)
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 (#245) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#246)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tDevelopment (#731)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tDevelopment (#741)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._takeDevelopment(uint256).tDevelopment (#595)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tDevelopment (#514)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._getValues(uint256).tDevelopment (#554)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._transferStandard(address,address,uint256).tDevelopment (#722)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._takeDevelopment(uint256).tDevelopment (#595)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tDevelopment (#741)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tDevelopment (#514)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._getValues(uint256).tDevelopment (#554)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#565)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._transferStandard(address,address,uint256).tDevelopment (#722)
Variable ZeusFloki._getValues(uint256).rTransferAmount (#555) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#570) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#514) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#514) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki._getValues(uint256).rTransferAmount (#555) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#570) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#570) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#741) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._transferToExcluded(address,address,uint256).rTransferAmount (#731) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#570) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki._getValues(uint256).rTransferAmount (#555) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#514) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#741) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._transferToExcluded(address,address,uint256).rTransferAmount (#731) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#570) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#514) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._transferToExcluded(address,address,uint256).rTransferAmount (#731) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tDevelopment (#731)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rDevelopment (#569) is too similar to ZeusFloki._getTValues(uint256).tDevelopment (#561)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).tDevelopment (#565)
Variable ZeusFloki._takeDevelopment(uint256).rDevelopment (#597) is too similar to ZeusFloki._getTValues(uint256).tDevelopment (#561)
Variable ZeusFloki.reflectionFromToken(uint256,bool).rTransferAmount (#484) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki._transferToExcluded(address,address,uint256).rTransferAmount (#731) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#741) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki.reflectionFromToken(uint256,bool).rTransferAmount (#484) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki.reflectionFromToken(uint256,bool).rTransferAmount (#484) is too similar to ZeusFloki._transferStandard(address,address,uint256).tTransferAmount (#722)
Variable ZeusFloki._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to ZeusFloki._transferToExcluded(address,address,uint256).tTransferAmount (#731)
Variable ZeusFloki.reflectionFromToken(uint256,bool).rTransferAmount (#484) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Variable ZeusFloki._getValues(uint256).rTransferAmount (#555) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#741) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki.reflectionFromToken(uint256,bool).rTransferAmount (#484) is too similar to ZeusFloki._transferFromExcluded(address,address,uint256).tTransferAmount (#741)
Variable ZeusFloki._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#741) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Variable ZeusFloki._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Variable ZeusFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#514) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Variable ZeusFloki.reflectionFromToken(uint256,bool).rTransferAmount (#484) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#570) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Variable ZeusFloki._transferStandard(address,address,uint256).rTransferAmount (#722) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._transferFromExcluded(address,address,uint256).rTransferAmount (#741) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._transferToExcluded(address,address,uint256).rTransferAmount (#731) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki._transferToExcluded(address,address,uint256).rTransferAmount (#731) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Variable ZeusFloki._transferBothExcluded(address,address,uint256).rTransferAmount (#514) is too similar to ZeusFloki._getValues(uint256).tTransferAmount (#554)
Variable ZeusFloki._getValues(uint256).rTransferAmount (#555) is too similar to ZeusFloki._transferBothExcluded(address,address,uint256).tTransferAmount (#514)
Variable ZeusFloki._getValues(uint256).rTransferAmount (#555) is too similar to ZeusFloki._getTValues(uint256).tTransferAmount (#562)
Prevent variables from having similar names.

Additional information: link

ZeusFloki.slitherConstructorVariables() (#371-751) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 18 (#382)
ZeusFloki.slitherConstructorVariables() (#371-751) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 18 (#400)
ZeusFloki.slitherConstructorVariables() (#371-751) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 1000000000 * 10 ** 18 (#401)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ZeusFloki._decimals (#387) should be constant
ZeusFloki._developmentWalletAddress (#380) should be constant
ZeusFloki._name (#385) should be constant
ZeusFloki._symbol (#386) should be constant
ZeusFloki._tTotal (#382) should be constant
ZeusFloki.numTokensSellToAddToLiquidity (#401) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:


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 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.


Unable to find Telegram and Twitter accounts


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

Price for ZeusFloki