DOGELON Token Logo

DOGELON Token

ALERT: pump & dump

About DOGELON

Listings

Not Found
Token 3 years

DOGELON is a Binance Smart Chain token which was stealth launched on 6-28-2022. The tokenomics are 8% tax in and 8% tax out. DOGELON aims to be the peoples meme choice of the year

Social

Laser Scorebeta Last Audit: 28 June 2022

report
Token seems to be a scam (type: pump & dump).

Anti-Scam

Links

Reentrancy in DOGELON._transfer(address,address,uint256) (#632-670):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#699-705)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#930)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _liquidityFee = _previousLiquidityFee (#875)
- _liquidityFee = 0 (#870)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#762)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#771)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#782)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rTotal = _rTotal.sub(rFee) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#848)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#781)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#791)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#772)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#793)
- buyBackTokens(balance.div(100)) (#658)
- inSwapAndLiquify = true (#481)
- inSwapAndLiquify = false (#483)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)

DOGELON.swapTokens(uint256) (#672-681) performs a multiplication on the result of a division:
-transferToAddressETH(burnAddress,transferredBalance.div(_liquidityFee).mul(burnDivisor)) (#679)
Consider ordering multiplication before division.

Additional information: link

DOGELON.addLiquidity(uint256,uint256) (#727-740) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#732-739)
Ensure that all the return values of the function calls are used.

Additional information: link

DOGELON.allowance(address,address).owner (#528) shadows:
- Ownable.owner() (#162-164) (function)
DOGELON._approve(address,address,uint256).owner (#624) shadows:
- Ownable.owner() (#162-164) (function)
Rename the local variables that shadow another component.

Additional information: link

DOGELON.setTaxFeePercent(uint256) (#890-892) should emit an event for:
- _taxFee = taxFee (#891)
DOGELON.setLiquidityFeePercent(uint256) (#894-896) should emit an event for:
- _liquidityFee = liquidityFee (#895)
DOGELON.setMaxTxAmount(uint256) (#898-900) should emit an event for:
- _maxTxAmount = maxTxAmount (#899)
DOGELON.setburnDivisor(uint256) (#902-904) should emit an event for:
- burnDivisor = divisor (#903)
DOGELON.setNumTokensSellToAddToLiquidity(uint256) (#906-908) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#907)
DOGELON.setBuybackUpperLimit(uint256) (#910-912) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#911)
Emit an event for critical parameter changes.

Additional information: link

DOGELON.setburnAddress(address)._burnAddress (#914) lacks a zero-check on :
- burnAddress = address(_burnAddress) (#915)
Check that the address is not zero.

Additional information: link

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

Additional information: link

Address.isContract(address) (#92-101) uses assembly
- INLINE ASM (#99)
Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) uses assembly
- INLINE ASM (#138-141)
Do not use evm assembly.

Additional information: link

DOGELON.includeInReward(address) (#611-622) has costly operations inside a loop:
- _excluded.pop() (#618)
Use a local variable to hold the loop computation result.

Additional information: link

Reentrancy in DOGELON._transfer(address,address,uint256) (#632-670):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#699-705)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#930)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousLiquidityFee = _liquidityFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousTaxFee = _taxFee (#866)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tFeeTotal = _tFeeTotal.add(tFee) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _taxFee = _previousTaxFee (#874)
- _taxFee = 0 (#869)
Reentrancy in DOGELON.constructor() (#486-500):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#490-491)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#496)
- _isExcludedFromFee[address(this)] = true (#497)
- uniswapV2Router = _uniswapV2Router (#493)
Reentrancy in DOGELON.transferFrom(address,address,uint256) (#542-546):
External calls:
- _transfer(sender,recipient,amount) (#543)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#699-705)
External calls sending eth:
- _transfer(sender,recipient,amount) (#543)
- recipient.transfer(amount) (#930)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#544)
- _allowances[owner][spender] = amount (#628)
Apply the check-effects-interactions pattern.

Additional information: link

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

Pragma version^0.8.10 (#8) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Redundant expression "this (#16)" inContext (#10-19)
Remove redundant statements if they congest code but offer no value.

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.

DOGELON._decimals (#438) should be constant
DOGELON._name (#436) should be constant
DOGELON._symbol (#437) should be constant
DOGELON._tTotal (#432) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in DOGELON._transfer(address,address,uint256) (#632-670):
External calls:
- swapTokens(contractTokenBalance) (#650)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#699-705)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#930)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#724)
- buyBackTokens(balance.div(100)) (#658)
- Transfer(sender,recipient,tTransferAmount) (#766)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#669)
Reentrancy in DOGELON.constructor() (#486-500):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#490-491)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#499)
Reentrancy in DOGELON.swapETHForTokens(uint256) (#710-725):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#724)
Reentrancy in DOGELON.swapTokensForEth(uint256) (#690-708):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#699-705)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#707)
Reentrancy in DOGELON.transferFrom(address,address,uint256) (#542-546):
External calls:
- _transfer(sender,recipient,amount) (#543)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#699-705)
External calls sending eth:
- _transfer(sender,recipient,amount) (#543)
- recipient.transfer(amount) (#930)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#629)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#544)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#129-146) 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) (#116-118) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#124-127) is never used and should be removed
Address.isContract(address) (#92-101) is never used and should be removed
Address.sendValue(address,uint256) (#103-109) is never used and should be removed
Context._msgData() (#15-18) is never used and should be removed
DOGELON.addLiquidity(uint256,uint256) (#727-740) is never used and should be removed
SafeMath.mod(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#84-87) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#103-109):
- (success) = recipient.call{value: amount}() (#107)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#129-146):
- (success,returndata) = target.call{value: weiValue}(data) (#132)
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() (#241) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#242) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#258) is not in mixedCase
Function IUniswapV2Router01.WETH() (#279) is not in mixedCase
Parameter DOGELON.calculateTaxFee(uint256)._amount (#851) is not in mixedCase
Parameter DOGELON.calculateLiquidityFee(uint256)._amount (#857) is not in mixedCase
Parameter DOGELON.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#906) is not in mixedCase
Parameter DOGELON.setburnAddress(address)._burnAddress (#914) is not in mixedCase
Parameter DOGELON.setSwapAndLiquifyEnabled(bool)._enabled (#918) is not in mixedCase
Parameter DOGELON.setBuyBackEnabled(bool)._enabled (#923) is not in mixedCase
Variable DOGELON._taxFee (#441) is not in mixedCase
Variable DOGELON._liquidityFee (#444) is not in mixedCase
Variable DOGELON._maxTxAmount (#449) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DOGELON._transfer(address,address,uint256) (#632-670):
External calls:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#930)
External calls sending eth:
- swapTokens(contractTokenBalance) (#650)
- recipient.transfer(amount) (#930)
- buyBackTokens(balance.div(100)) (#658)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _liquidityFee = _previousLiquidityFee (#875)
- _liquidityFee = 0 (#870)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousLiquidityFee = _liquidityFee (#867)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _previousTaxFee = _taxFee (#866)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#846)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#762)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#771)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#782)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#763)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _rTotal = _rTotal.sub(rFee) (#801)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tFeeTotal = _tFeeTotal.add(tFee) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#848)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#781)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#791)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#772)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#793)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- _taxFee = _previousTaxFee (#874)
- _taxFee = 0 (#869)
- buyBackTokens(balance.div(100)) (#658)
- inSwapAndLiquify = true (#481)
- inSwapAndLiquify = false (#483)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#724)
- buyBackTokens(balance.div(100)) (#658)
- Transfer(sender,recipient,tTransferAmount) (#766)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#669)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#669)
Reentrancy in DOGELON.transferFrom(address,address,uint256) (#542-546):
External calls:
- _transfer(sender,recipient,amount) (#543)
- recipient.transfer(amount) (#930)
External calls sending eth:
- _transfer(sender,recipient,amount) (#543)
- recipient.transfer(amount) (#930)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#717-722)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#544)
- _allowances[owner][spender] = amount (#628)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#629)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#544)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#284) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#285)
Variable DOGELON._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#822) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON.reflectionFromToken(uint256,bool).rTransferAmount (#590) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON._transferToExcluded(address,address,uint256).rTransferAmount (#770) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Variable DOGELON._transferStandard(address,address,uint256).rTransferAmount (#761) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON._transferBothExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._transferFromExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON._getValues(uint256).rTransferAmount (#807) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON.reflectionFromToken(uint256,bool).rTransferAmount (#590) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Variable DOGELON._transferBothExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON._transferToExcluded(address,address,uint256).rTransferAmount (#770) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#822) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON._transferBothExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Variable DOGELON.reflectionFromToken(uint256,bool).rTransferAmount (#590) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON._transferToExcluded(address,address,uint256).rTransferAmount (#770) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._transferFromExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON._getValues(uint256).rTransferAmount (#807) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON._transferToExcluded(address,address,uint256).rTransferAmount (#770) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON.reflectionFromToken(uint256,bool).rTransferAmount (#590) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._transferBothExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON._transferBothExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGELON._transferStandard(address,address,uint256).tTransferAmount (#761)
Variable DOGELON._transferFromExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON._transferStandard(address,address,uint256).rTransferAmount (#761) is too similar to DOGELON._transferFromExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGELON._transferFromExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#822) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON.reflectionFromToken(uint256,bool).rTransferAmount (#590) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON._getValues(uint256).rTransferAmount (#807) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Variable DOGELON._transferStandard(address,address,uint256).rTransferAmount (#761) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON._transferFromExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Variable DOGELON._getValues(uint256).rTransferAmount (#807) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON._transferToExcluded(address,address,uint256).rTransferAmount (#770) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#822) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON._transferBothExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON._transferStandard(address,address,uint256).rTransferAmount (#761) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#822) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._transferFromExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON._transferStandard(address,address,uint256).rTransferAmount (#761) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._getValues(uint256).rTransferAmount (#807) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON.reflectionFromToken(uint256,bool).rTransferAmount (#590) is too similar to DOGELON._transferBothExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGELON._transferToExcluded(address,address,uint256).rTransferAmount (#770) is too similar to DOGELON._getTValues(uint256).tTransferAmount (#814)
Variable DOGELON._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#822) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Variable DOGELON._getValues(uint256).rTransferAmount (#807) is too similar to DOGELON._transferToExcluded(address,address,uint256).tTransferAmount (#770)
Variable DOGELON._transferStandard(address,address,uint256).rTransferAmount (#761) is too similar to DOGELON._getValues(uint256).tTransferAmount (#806)
Prevent variables from having similar names.

Additional information: link

DOGELON.slitherConstructorVariables() (#416-936) uses literals with too many digits:
- burnAddress = address(0x000000000000000000000000000000000000dEaD) (#420)
DOGELON.slitherConstructorVariables() (#416-936) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#421)
DOGELON.slitherConstructorVariables() (#416-936) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#432)
DOGELON.slitherConstructorVariables() (#416-936) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 6 * 10 ** 9 (#449)
DOGELON.slitherConstructorVariables() (#416-936) uses literals with too many digits:
- buyBackUpperLimit = 1000000000 * 10 ** 18 (#451)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#182-184)
getTime() should be declared external:
- Ownable.getTime() (#186-188)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#190-195)
unlock() should be declared external:
- Ownable.unlock() (#197-202)
name() should be declared external:
- DOGELON.name() (#502-504)
symbol() should be declared external:
- DOGELON.symbol() (#506-508)
decimals() should be declared external:
- DOGELON.decimals() (#510-512)
totalSupply() should be declared external:
- DOGELON.totalSupply() (#514-516)
transfer(address,uint256) should be declared external:
- DOGELON.transfer(address,uint256) (#523-526)
allowance(address,address) should be declared external:
- DOGELON.allowance(address,address) (#528-530)
approve(address,uint256) should be declared external:
- DOGELON.approve(address,uint256) (#532-535)
transferFrom(address,address,uint256) should be declared external:
- DOGELON.transferFrom(address,address,uint256) (#542-546)
increaseAllowance(address,uint256) should be declared external:
- DOGELON.increaseAllowance(address,uint256) (#548-551)
decreaseAllowance(address,uint256) should be declared external:
- DOGELON.decreaseAllowance(address,uint256) (#553-556)
isExcludedFromReward(address) should be declared external:
- DOGELON.isExcludedFromReward(address) (#558-560)
totalFees() should be declared external:
- DOGELON.totalFees() (#562-564)
minimumTokensBeforeSwapAmount() should be declared external:
- DOGELON.minimumTokensBeforeSwapAmount() (#566-568)
buyBackUpperLimitAmount() should be declared external:
- DOGELON.buyBackUpperLimitAmount() (#570-572)
deliver(uint256) should be declared external:
- DOGELON.deliver(uint256) (#574-581)
reflectionFromToken(uint256,bool) should be declared external:
- DOGELON.reflectionFromToken(uint256,bool) (#584-593)
excludeFromReward(address) should be declared external:
- DOGELON.excludeFromReward(address) (#601-609)
isExcludedFromFee(address) should be declared external:
- DOGELON.isExcludedFromFee(address) (#878-880)
excludeFromFee(address) should be declared external:
- DOGELON.excludeFromFee(address) (#882-884)
includeInFee(address) should be declared external:
- DOGELON.includeInFee(address) (#886-888)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DOGELON.setSwapAndLiquifyEnabled(bool) (#918-921)
setBuyBackEnabled(bool) should be declared external:
- DOGELON.setBuyBackEnabled(bool) (#923-926)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is low.


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link

Price for DOGELON

News for DOGELON