LumiGhost Token Logo

LUMIGHOST Token

About LUMIGHOST

Listings

Not Found
Token 2 years
white paper

Haunted House is an arcade game where the main mission is to catch as many ghosts as possible. Complete the levels, open new locations, win tournaments, and take tokens.

Laser Scorebeta Last Audit: 13 June 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.


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

Reentrancy in LumiGhost._transfer(address,address,uint256) (#1010-1044):
External calls:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#957)
- _rOwned[_gameDevProcess] = _rOwned[_gameDevProcess].add(rGameDevProcess) (#911)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1125)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1147)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#855)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#857)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _rTotal = _rTotal.sub(rFee) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _tOwned[_gameDevProcess] = _tOwned[_gameDevProcess].add(tGameDevProcess) (#910)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#959)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#854)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1146)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1136)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#856)
Apply the check-effects-interactions pattern.

Additional information: link

LumiGhost._isExcluded (#700) is never initialized. It is used in:
- LumiGhost.balanceOf(address) (#782-785)
- LumiGhost.isExcludedFromReward(address) (#817-819)
- LumiGhost.deliver(uint256) (#825-832)
- LumiGhost._takeLiquidity(uint256) (#954-960)
- LumiGhost._tokenTransfer(address,address,uint256,bool) (#1103-1121)
LumiGhost._excluded (#701) is never initialized. It is used in:
- LumiGhost._getCurrentSupply() (#942-952)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

LumiGhost.setTaxFeePercent(uint256) (#872-875) contains a tautology or contradiction:
- require(bool,string)(taxFee >= 0 && taxFee <= maxTaxFee,taxFee out of range) (#873)
LumiGhost.setLiquidityFeePercent(uint256) (#877-880) contains a tautology or contradiction:
- require(bool,string)(liquidityFee >= 0 && liquidityFee <= maxLiqFee,liquidityFee out of range) (#878)
LumiGhost.setGameDevProcessFeePercent(uint256) (#882-885) contains a tautology or contradiction:
- require(bool,string)(gameDevProcessFee >= 0 && gameDevProcessFee <= maxDevFee,gameDevProcessFee out of range) (#883)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

LumiGhost.addLiquidity(uint256,uint256) (#1087-1100) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
Ensure that all the return values of the function calls are used.

Additional information: link

LumiGhost.allowance(address,address).owner (#792) shadows:
- Ownable.owner() (#413-415) (function)
LumiGhost._approve(address,address,uint256).owner (#1002) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.

Additional information: link

LumiGhost.setTaxFeePercent(uint256) (#872-875) should emit an event for:
- _taxFee = taxFee (#874)
LumiGhost.setLiquidityFeePercent(uint256) (#877-880) should emit an event for:
- _liquidityFee = liquidityFee (#879)
LumiGhost.setGameDevProcessFeePercent(uint256) (#882-885) should emit an event for:
- _gameDevProcessFee = gameDevProcessFee (#884)
LumiGhost.setMaxTxPercent(uint256) (#887-892) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#889-891)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in LumiGhost._transfer(address,address,uint256) (#1010-1044):
External calls:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _gameDevProcessFee = _previousGameDevProcessFee (#995)
- _gameDevProcessFee = 0 (#989)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _liquidityFee = _previousLiquidityFee (#994)
- _liquidityFee = 0 (#988)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _previousGameDevProcessFee = _gameDevProcessFee (#985)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _previousLiquidityFee = _liquidityFee (#984)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _previousTaxFee = _taxFee (#983)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _tFeeTotal = _tFeeTotal.add(tFee) (#904)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- _taxFee = _previousTaxFee (#993)
- _taxFee = 0 (#987)
Reentrancy in LumiGhost.constructor() (#745-764):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#752-753)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#759)
- _isExcludedFromFee[address(this)] = true (#760)
- _isExcludedFromFee[_gameDevProcess] = true (#761)
- uniswapV2Router = _uniswapV2Router (#756)
Reentrancy in LumiGhost.swapAndLiquify(uint256) (#1046-1067):
External calls:
- swapTokensForEth(half) (#1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
- addLiquidity(otherHalf,newBalance) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1064)
- _allowances[owner][spender] = amount (#1006)
Reentrancy in LumiGhost.transferFrom(address,address,uint256) (#801-805):
External calls:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#803)
- _allowances[owner][spender] = amount (#1006)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LumiGhost._transfer(address,address,uint256) (#1010-1044):
External calls:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1031)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1130)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- Transfer(sender,recipient,tTransferAmount) (#1152)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- Transfer(sender,recipient,tTransferAmount) (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
- Transfer(sender,recipient,tTransferAmount) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#1043)
Reentrancy in LumiGhost.constructor() (#745-764):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#752-753)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#763)
Reentrancy in LumiGhost.swapAndLiquify(uint256) (#1046-1067):
External calls:
- swapTokensForEth(half) (#1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
- addLiquidity(otherHalf,newBalance) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1007)
- addLiquidity(otherHalf,newBalance) (#1064)
- SwapAndLiquify(half,newBalance,otherHalf) (#1066)
Reentrancy in LumiGhost.transferFrom(address,address,uint256) (#801-805):
External calls:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1078-1084)
External calls sending eth:
- _transfer(sender,recipient,amount) (#802)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,dead,block.timestamp) (#1092-1099)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1007)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#803)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#460-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#462)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#265-274) uses assembly
- INLINE ASM (#272)
Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) uses assembly
- INLINE ASM (#371-374)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) is never used and should be removed
Address.functionCall(address,bytes) (#318-320) is never used and should be removed
Address.functionCall(address,bytes,string) (#328-330) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#353-356) is never used and should be removed
Address.isContract(address) (#265-274) is never used and should be removed
Address.sendValue(address,uint256) (#292-298) is never used and should be removed
Context._msgData() (#237-240) is never used and should be removed
SafeMath.mod(uint256,uint256) (#210-212) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#504) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#505) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Function IUniswapV2Router01.WETH() (#544) is not in mixedCase
Parameter LumiGhost.setSwapAndLiquifyEnabled(bool)._enabled (#894) is not in mixedCase
Parameter LumiGhost.calculateTaxFee(uint256)._amount (#962) is not in mixedCase
Parameter LumiGhost.calculateLiquidityFee(uint256)._amount (#968) is not in mixedCase
Parameter LumiGhost.calculateGameDevProcessFee(uint256)._amount (#974) is not in mixedCase
Constant LumiGhost._tTotal (#704) is not in UPPER_CASE_WITH_UNDERSCORES
Variable LumiGhost._maxTxAmount (#712) is not in mixedCase
Variable LumiGhost._taxFee (#714) is not in mixedCase
Variable LumiGhost._liquidityFee (#717) is not in mixedCase
Variable LumiGhost._gameDevProcessFee (#720) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

LumiGhost._decimals (#710) should be constant
LumiGhost._name (#708) should be constant
LumiGhost._symbol (#709) should be constant
LumiGhost.dead (#685) should be constant
LumiGhost.maxDevFee (#689) should be constant
LumiGhost.maxLiqFee (#687) should be constant
LumiGhost.maxTaxFee (#688) should be constant
LumiGhost.minMxTxPercentage (#690) should be constant
LumiGhost.router (#702) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#432-435)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#447-449)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#452-457)
unlock() should be declared external:
- Ownable.unlock() (#460-465)
name() should be declared external:
- LumiGhost.name() (#766-768)
symbol() should be declared external:
- LumiGhost.symbol() (#770-772)
decimals() should be declared external:
- LumiGhost.decimals() (#774-776)
totalSupply() should be declared external:
- LumiGhost.totalSupply() (#778-780)
transfer(address,uint256) should be declared external:
- LumiGhost.transfer(address,uint256) (#787-790)
allowance(address,address) should be declared external:
- LumiGhost.allowance(address,address) (#792-794)
approve(address,uint256) should be declared external:
- LumiGhost.approve(address,uint256) (#796-799)
transferFrom(address,address,uint256) should be declared external:
- LumiGhost.transferFrom(address,address,uint256) (#801-805)
increaseAllowance(address,uint256) should be declared external:
- LumiGhost.increaseAllowance(address,uint256) (#807-810)
decreaseAllowance(address,uint256) should be declared external:
- LumiGhost.decreaseAllowance(address,uint256) (#812-815)
isExcludedFromReward(address) should be declared external:
- LumiGhost.isExcludedFromReward(address) (#817-819)
totalFees() should be declared external:
- LumiGhost.totalFees() (#821-823)
deliver(uint256) should be declared external:
- LumiGhost.deliver(uint256) (#825-832)
reflectionFromToken(uint256,bool) should be declared external:
- LumiGhost.reflectionFromToken(uint256,bool) (#834-843)
excludeFromFee(address) should be declared external:
- LumiGhost.excludeFromFee(address) (#864-866)
includeInFee(address) should be declared external:
- LumiGhost.includeInFee(address) (#868-870)
setSwapAndLiquifyEnabled(bool) should be declared external:
- LumiGhost.setSwapAndLiquifyEnabled(bool) (#894-897)
isExcludedFromFee(address) should be declared external:
- LumiGhost.isExcludedFromFee(address) (#998-1000)
disableFees() should be declared external:
- LumiGhost.disableFees() (#1155-1165)
enableFees() should be declared external:
- LumiGhost.enableFees() (#1167-1173)
Use the external attribute for functions never called from the contract.

Additional information: link

LumiGhost.prevLiqFee (#691) is set pre-construction with a non-constant function or state variable:
- maxLiqFee
LumiGhost.prevTaxFee (#692) is set pre-construction with a non-constant function or state variable:
- maxTaxFee
LumiGhost.prevDevFee (#693) is set pre-construction with a non-constant function or state variable:
- maxDevFee
LumiGhost._previousTaxFee (#715) is set pre-construction with a non-constant function or state variable:
- _taxFee
LumiGhost._previousLiquidityFee (#718) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
LumiGhost._previousGameDevProcessFee (#721) is set pre-construction with a non-constant function or state variable:
- _gameDevProcessFee
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) (#292-298):
- (success) = recipient.call{value: amount}() (#296)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#358-379):
- (success,returndata) = target.call{value: weiValue}(data) (#362)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (#238)" inContext (#232-241)
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 (#549) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#550)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._getValues(uint256).tGameDevProcess (#915)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._takeGameDevProcessFee(uint256).tGameDevProcess (#907)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tGameDevProcess (#1134)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).tGameDevProcess (#928)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tGameDevProcess (#853)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tGameDevProcess (#853)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._getValues(uint256).tGameDevProcess (#915)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tGameDevProcess (#853)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._getValues(uint256).tGameDevProcess (#915)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._transferStandard(address,address,uint256).tGameDevProcess (#1124)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._takeGameDevProcessFee(uint256).tGameDevProcess (#907)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._takeGameDevProcessFee(uint256).tGameDevProcess (#907)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tGameDevProcess (#1134)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tGameDevProcess (#1134)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tGameDevProcess (#1145)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).tGameDevProcess (#928)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).tGameDevProcess (#928)
Variable LumiGhost._transferBothExcluded(address,address,uint256).rTransferAmount (#853) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable LumiGhost._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable LumiGhost._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost._transferBothExcluded(address,address,uint256).rTransferAmount (#853) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._getValues(uint256).rTransferAmount (#916) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._transferStandard(address,address,uint256).rTransferAmount (#1124) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost._transferFromExcluded(address,address,uint256).rTransferAmount (#1145) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tGameDevProcess (#1145)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._getTValues(uint256).tGameDevProcess (#923)
Variable LumiGhost._gameDevProcess (#686) is too similar to LumiGhost._transferStandard(address,address,uint256).tGameDevProcess (#1124)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tGameDevProcess (#1145)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rGameDevProcess (#932) is too similar to LumiGhost._getTValues(uint256).tGameDevProcess (#923)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._getTValues(uint256).tGameDevProcess (#923)
Variable LumiGhost._takeGameDevProcessFee(uint256).rGameDevProcess (#909) is too similar to LumiGhost._transferStandard(address,address,uint256).tGameDevProcess (#1124)
Variable LumiGhost._transferBothExcluded(address,address,uint256).rTransferAmount (#853) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable LumiGhost._transferBothExcluded(address,address,uint256).rTransferAmount (#853) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost._getValues(uint256).rTransferAmount (#916) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._getValues(uint256).rTransferAmount (#916) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost._getValues(uint256).rTransferAmount (#916) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable LumiGhost.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to LumiGhost._transferToExcluded(address,address,uint256).tTransferAmount (#1134)
Variable LumiGhost._getValues(uint256).rTransferAmount (#916) is too similar to LumiGhost._transferStandard(address,address,uint256).tTransferAmount (#1124)
Variable LumiGhost.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to LumiGhost._transferBothExcluded(address,address,uint256).tTransferAmount (#853)
Variable LumiGhost._transferToExcluded(address,address,uint256).rTransferAmount (#1134) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost._transferBothExcluded(address,address,uint256).rTransferAmount (#853) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost._transferBothExcluded(address,address,uint256).rTransferAmount (#853) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable LumiGhost.reflectionFromToken(uint256,bool).rTransferAmount (#840) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Variable LumiGhost._getValues(uint256).rTransferAmount (#916) is too similar to LumiGhost._getValues(uint256).tTransferAmount (#915)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to LumiGhost._getTValues(uint256).tTransferAmount (#924)
Variable LumiGhost._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#933) is too similar to LumiGhost._transferFromExcluded(address,address,uint256).tTransferAmount (#1145)
Prevent variables from having similar names.

Additional information: link

LumiGhost.slitherConstructorVariables() (#682-1175) uses literals with too many digits:
- dead = 0x000000000000000000000000000000000000dEaD (#685)
LumiGhost.slitherConstructorVariables() (#682-1175) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 9 (#712)
LumiGhost.slitherConstructorConstantVariables() (#682-1175) uses literals with too many digits:
- _tTotal = 500000000 * 10 ** 9 (#704)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is low.

Contract has 4% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Token has only one trading pair

No disclosed threats


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Token has no active CoinGecko listing / rank


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

Price for LUMIGHOST

News for LUMIGHOST