LunaDoge Token Logo

LOGE [LunaDoge] Token

ALERT: dead

About LOGE

Listings

Token 4 years
white paper

LunaDoge is a DeFi meme token inspired by Dogecoin and reflect.finance. Two functions occur during each trade: static rewards and automatic liquidity pool (""LP"") acquisition via transaction taxes. A 5% tax is applied to every trade for static rewards and a 5% tax is applied to every trade for automatic LP acquisition.

Static rewards are used to solve problems related to impermanent loss. The reward amount is conditional upon the volume of the token being traded. This mechanism aims to alleviate some of the downward sell pressure put on the token. Furthermore, the mechanism encourages holders to hold onto their tokens to obtain rewards from every LOGE transaction. The static rewards are proportionally shared over all LOGE holders and dependent on the total tokens held.

Automatic LP acquisition is a function of the contract that is beneficial for holders as the LunaDoge contract applies a 5% tax to every transaction of which half is sold to BNB (the asset paired with LOGE in the liquidity pool) and then the equal share of BNB and LOGE is added to the LP, creating an ever-increasing floor for the liquidity pool. As the liquidity pool increases, the price stability increases as well. The purpose of the automatic LP acquisition is to prevent big price swings when top holders sell or new investors want to enter the tokens without having to worry too much about slippage. The automatic LP acquisition creates a long-term benefit for the token and solves the prior issues related to static rewards, where rewarding holders was only beneficial in the short-term.

Social

Laser Scorebeta Last Audit: 18 January 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


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

Reentrancy in LunaDoge._transfer(address,address,uint256) (#989-1033):
External calls:
- swapAndLiquify(contractTokenBalance) (#1020)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1020)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#945)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1114)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1123)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1134)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#861)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1115)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1125)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1135)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#863)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _rTotal = _rTotal.sub(rFee) (#900)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#947)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#860)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1133)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1124)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#862)
Apply the check-effects-interactions pattern.

Additional information: link

LunaDoge.addLiquidity(uint256,uint256) (#1076-1089) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Ensure that all the return values of the function calls are used.

Additional information: link

LunaDoge.allowance(address,address).owner (#776) shadows:
- Ownable.owner() (#412-414) (function)
LunaDoge._approve(address,address,uint256).owner (#981) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.

Additional information: link

LunaDoge.setTaxFeePercent(uint256) (#877-879) should emit an event for:
- _taxFee = taxFee (#878)
LunaDoge.setLiquidityFeePercent(uint256) (#881-883) should emit an event for:
- _liquidityFee = liquidityFee (#882)
LunaDoge.setMaxTxPercent(uint256) (#885-889) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#886-888)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in LunaDoge._transfer(address,address,uint256) (#989-1033):
External calls:
- swapAndLiquify(contractTokenBalance) (#1020)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1020)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _liquidityFee = _previousLiquidityFee (#974)
- _liquidityFee = 0 (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _previousLiquidityFee = _liquidityFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _previousTaxFee = _taxFee (#965)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _tFeeTotal = _tFeeTotal.add(tFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- _taxFee = _previousTaxFee (#973)
- _taxFee = 0 (#968)
Reentrancy in LunaDoge.constructor() (#732-748):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#737-738)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#744)
- _isExcludedFromFee[address(this)] = true (#745)
- uniswapV2Router = _uniswapV2Router (#741)
Reentrancy in LunaDoge.swapAndLiquify(uint256) (#1035-1056):
External calls:
- swapTokensForEth(half) (#1047)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
- addLiquidity(otherHalf,newBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1053)
- _allowances[owner][spender] = amount (#985)
Reentrancy in LunaDoge.transferFrom(address,address,uint256) (#785-789):
External calls:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
External calls sending eth:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#787)
- _allowances[owner][spender] = amount (#985)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LunaDoge._transfer(address,address,uint256) (#989-1033):
External calls:
- swapAndLiquify(contractTokenBalance) (#1020)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1020)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1118)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- Transfer(sender,recipient,tTransferAmount) (#1128)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- Transfer(sender,recipient,tTransferAmount) (#1138)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
- Transfer(sender,recipient,tTransferAmount) (#866)
- _tokenTransfer(from,to,amount,takeFee) (#1032)
Reentrancy in LunaDoge.constructor() (#732-748):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#737-738)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#747)
Reentrancy in LunaDoge.swapAndLiquify(uint256) (#1035-1056):
External calls:
- swapTokensForEth(half) (#1047)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
- addLiquidity(otherHalf,newBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1053)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#986)
- addLiquidity(otherHalf,newBalance) (#1053)
- SwapAndLiquify(half,newBalance,otherHalf) (#1055)
Reentrancy in LunaDoge.transferFrom(address,address,uint256) (#785-789):
External calls:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1067-1073)
External calls sending eth:
- _transfer(sender,recipient,amount) (#786)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1081-1088)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#986)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#787)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#461)
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

LunaDoge.includeInReward(address) (#846-857) has costly operations inside a loop:
- _excluded.pop() (#853)
Use a local variable to hold the loop computation result.

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

LunaDoge._rTotal (#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
LunaDoge._previousTaxFee (#704) is set pre-construction with a non-constant function or state variable:
- _taxFee
LunaDoge._previousLiquidityFee (#707) 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) (#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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter LunaDoge.setSwapAndLiquifyEnabled(bool)._enabled (#891) is not in mixedCase
Parameter LunaDoge.calculateTaxFee(uint256)._amount (#950) is not in mixedCase
Parameter LunaDoge.calculateLiquidityFee(uint256)._amount (#956) is not in mixedCase
Variable LunaDoge._taxFee (#703) is not in mixedCase
Variable LunaDoge._liquidityFee (#706) is not in mixedCase
Variable LunaDoge._maxTxAmount (#715) 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 (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable LunaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1132) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1132) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._getValues(uint256).rTransferAmount (#906) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1132) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1132) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._getValues(uint256).rTransferAmount (#906) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._getValues(uint256).rTransferAmount (#906) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1122) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._getValues(uint256).rTransferAmount (#906) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._transferStandard(address,address,uint256).rTransferAmount (#1113) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1122) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1122) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1122) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1122) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Variable LunaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1132) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Variable LunaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._getValues(uint256).rTransferAmount (#906) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge._transferStandard(address,address,uint256).rTransferAmount (#1113) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._transferStandard(address,address,uint256).rTransferAmount (#1113) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Variable LunaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to LunaDoge._transferStandard(address,address,uint256).tTransferAmount (#1113)
Variable LunaDoge._transferToExcluded(address,address,uint256).rTransferAmount (#1122) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#921) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Variable LunaDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#1132) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge._transferStandard(address,address,uint256).rTransferAmount (#1113) is too similar to LunaDoge._getValues(uint256).tTransferAmount (#905)
Variable LunaDoge._getValues(uint256).rTransferAmount (#906) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Variable LunaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to LunaDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#859)
Variable LunaDoge.reflectionFromToken(uint256,bool).rTransferAmount (#824) is too similar to LunaDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#1132)
Variable LunaDoge._transferStandard(address,address,uint256).rTransferAmount (#1113) is too similar to LunaDoge._transferToExcluded(address,address,uint256).tTransferAmount (#1122)
Variable LunaDoge._transferStandard(address,address,uint256).rTransferAmount (#1113) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Variable LunaDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#859) is too similar to LunaDoge._getTValues(uint256).tTransferAmount (#913)
Prevent variables from having similar names.

Additional information: link

LunaDoge.slitherConstructorVariables() (#681-1141) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#695)
LunaDoge.slitherConstructorVariables() (#681-1141) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#715)
LunaDoge.slitherConstructorVariables() (#681-1141) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#716)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

LunaDoge._decimals (#701) should be constant
LunaDoge._name (#699) should be constant
LunaDoge._symbol (#700) should be constant
LunaDoge._tTotal (#695) should be constant
LunaDoge.numTokensSellToAddToLiquidity (#716) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#431-434)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#440-444)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#446-448)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#451-456)
unlock() should be declared external:
- Ownable.unlock() (#459-464)
name() should be declared external:
- LunaDoge.name() (#750-752)
symbol() should be declared external:
- LunaDoge.symbol() (#754-756)
decimals() should be declared external:
- LunaDoge.decimals() (#758-760)
totalSupply() should be declared external:
- LunaDoge.totalSupply() (#762-764)
transfer(address,uint256) should be declared external:
- LunaDoge.transfer(address,uint256) (#771-774)
allowance(address,address) should be declared external:
- LunaDoge.allowance(address,address) (#776-778)
approve(address,uint256) should be declared external:
- LunaDoge.approve(address,uint256) (#780-783)
transferFrom(address,address,uint256) should be declared external:
- LunaDoge.transferFrom(address,address,uint256) (#785-789)
increaseAllowance(address,uint256) should be declared external:
- LunaDoge.increaseAllowance(address,uint256) (#791-794)
decreaseAllowance(address,uint256) should be declared external:
- LunaDoge.decreaseAllowance(address,uint256) (#796-799)
isExcludedFromReward(address) should be declared external:
- LunaDoge.isExcludedFromReward(address) (#801-803)
totalFees() should be declared external:
- LunaDoge.totalFees() (#805-807)
deliver(uint256) should be declared external:
- LunaDoge.deliver(uint256) (#809-816)
reflectionFromToken(uint256,bool) should be declared external:
- LunaDoge.reflectionFromToken(uint256,bool) (#818-827)
excludeFromReward(address) should be declared external:
- LunaDoge.excludeFromReward(address) (#835-844)
excludeFromFee(address) should be declared external:
- LunaDoge.excludeFromFee(address) (#869-871)
includeInFee(address) should be declared external:
- LunaDoge.includeInFee(address) (#873-875)
setSwapAndLiquifyEnabled(bool) should be declared external:
- LunaDoge.setSwapAndLiquifyEnabled(bool) (#891-894)
isExcludedFromFee(address) should be declared external:
- LunaDoge.isExcludedFromFee(address) (#977-979)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Last post in Twitter was more than 180 days ago


Unable to find Youtube account


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


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

Price for LOGE

News for LOGE