Dog Masked Token Logo

DOGMSK [Dog Masked] Token

About DOGMSK

Listings

Token 22 months
CoinGecko 20 months
white paper

DOGMSK Defi is a Powerful DOGMSK Rewards built on the Binance smart chain platform, incorporating a smart contract that yields allocated rewards from each transaction to charities and token holders.
The mechanism of reflection tokens increases the number of ways investors can earn in DeFi as holders can earn rewards on their tokens while using it for staking and other ways of earning passive income.
The yield-generating token distribution process is easy, secure and transparent via the usage of smart contracts. There's no third party person to claim fees as the whole process is automated.
5% of all transactions (buy and sell) are allocated to Holders.

Social

Laser Scorebeta Last Audit: 11 August 2022

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

Anti-Scam

Links

Reentrancy in DogMasked._transfer(address,address,uint256) (#673-711):
External calls:
- swapTokens(contractTokenBalance) (#691)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
External calls sending eth:
- swapTokens(contractTokenBalance) (#691)
- recipient.transfer(amount) (#995)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _liquidityFee = _previousLiquidityFee (#922)
- _liquidityFee = 0 (#915)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#889)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#814)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#805)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#806)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#825)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#835)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#826)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#837)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rTotal = _rTotal.sub(rFee) (#844)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#891)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#834)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#815)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#836)
- buyBackTokens(balance.div(100)) (#699)
- inSwapAndLiquify = true (#500)
- inSwapAndLiquify = false (#502)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- marketingFee = previousMarketingFee (#924)
- marketingFee = 0 (#917)
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)

Redundant expression "this (#27)" inContext (#21-30)
Remove redundant statements if they congest code but offer no value.

Additional information: link

DogMasked.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#505-546) performs a multiplication on the result of a division:
-_maxTxAmount = _tTotal.div(1000).mul(3) (#527)
DogMasked.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#505-546) performs a multiplication on the result of a division:
-minimumTokensBeforeSwap = _tTotal.div(10000).mul(2) (#529)
DogMasked.swapTokens(uint256) (#713-724) performs a multiplication on the result of a division:
-transferToAddressETH(dappbuilderAddress,transferredBalance.div(_liquidityFee).mul(dappbuilderFee)) (#721)
DogMasked.swapTokens(uint256) (#713-724) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingFee.sub(dappbuilderFee))) (#722)
Consider ordering multiplication before division.

Additional information: link

DogMasked.addLiquidity(uint256,uint256) (#770-783) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#775-782)
Ensure that all the return values of the function calls are used.

Additional information: link

DogMasked.allowance(address,address).owner (#574) shadows:
- Ownable.owner() (#173-175) (function)
DogMasked._approve(address,address,uint256).owner (#665) shadows:
- Ownable.owner() (#173-175) (function)
Rename the local variables that shadow another component.

Additional information: link

DogMasked.setTaxFee(uint256) (#939-941) should emit an event for:
- _taxFee = taxFee (#940)
DogMasked.setBuybackFee(uint256) (#943-946) should emit an event for:
- buybackFee = _buybackFee (#944)
- _liquidityFee = buybackFee.add(marketingFee) (#945)
DogMasked.setMaxTxAmount(uint256) (#948-950) should emit an event for:
- _maxTxAmount = maxTxAmount (#949)
DogMasked.setMarketingFee(uint256) (#952-956) should emit an event for:
- marketingFee = _marketingFee (#954)
- _liquidityFee = buybackFee.add(marketingFee) (#955)
DogMasked.setNumTokensSellToAddToLiquidity(uint256) (#958-960) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#959)
DogMasked.setBuybackUpperLimit(uint256) (#962-964) should emit an event for:
- buyBackUpperLimit = buyBackLimit (#963)
Emit an event for critical parameter changes.

Additional information: link

DogMasked.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address)._ma (#505) lacks a zero-check on :
- marketingAddress = address(_ma) (#515)
DogMasked.setMarketingAddress(address)._marketingAddress (#966) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#967)
Check that the address is not zero.

Additional information: link

Reentrancy in DogMasked._transfer(address,address,uint256) (#673-711):
External calls:
- swapTokens(contractTokenBalance) (#691)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
External calls sending eth:
- swapTokens(contractTokenBalance) (#691)
- recipient.transfer(amount) (#995)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousLiquidityFee = _liquidityFee (#910)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousTaxFee = _taxFee (#909)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tFeeTotal = _tFeeTotal.add(tFee) (#845)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _taxFee = _previousTaxFee (#921)
- _taxFee = 0 (#914)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- buybackFee = previousBuybackFee (#923)
- buybackFee = 0 (#916)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- previousBuybackFee = buybackFee (#911)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- previousMarketingFee = marketingFee (#912)
Reentrancy in DogMasked.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#505-546):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#536-537)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#542)
- _isExcludedFromFee[address(this)] = true (#543)
- uniswapV2Router = _uniswapV2Router (#539)
Reentrancy in DogMasked.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#995)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
- _allowances[owner][spender] = amount (#669)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DogMasked._transfer(address,address,uint256) (#673-711):
External calls:
- swapTokens(contractTokenBalance) (#691)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
External calls sending eth:
- swapTokens(contractTokenBalance) (#691)
- recipient.transfer(amount) (#995)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#767)
- buyBackTokens(balance.div(100)) (#699)
- Transfer(sender,recipient,tTransferAmount) (#809)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#819)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#829)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#840)
- _tokenTransfer(from,to,amount,takeFee) (#710)
Reentrancy in DogMasked.constructor(string,string,uint8,uint256,uint256,uint256,uint256,address) (#505-546):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#536-537)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#545)
Reentrancy in DogMasked.swapETHForTokens(uint256) (#753-768):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#767)
Reentrancy in DogMasked.swapTokensForEth(uint256) (#733-751):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#750)
Reentrancy in DogMasked.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#742-748)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#995)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#670)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#103-112) uses assembly
- INLINE ASM (#110)
Address._functionCallWithValue(address,bytes,uint256,string) (#140-157) uses assembly
- INLINE ASM (#149-152)
Do not use evm assembly.

Additional information: link

DogMasked.includeInReward(address) (#652-663) has costly operations inside a loop:
- _excluded.pop() (#659)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#140-157) is never used and should be removed
Address.functionCall(address,bytes) (#123-125) is never used and should be removed
Address.functionCall(address,bytes,string) (#127-129) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#131-133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#135-138) is never used and should be removed
Address.isContract(address) (#103-112) is never used and should be removed
Address.sendValue(address,uint256) (#114-120) is never used and should be removed
Context._msgData() (#26-29) is never used and should be removed
DogMasked.addLiquidity(uint256,uint256) (#770-783) is never used and should be removed
SafeMath.mod(uint256,uint256) (#91-93) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#95-98) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#114-120):
- (success) = recipient.call{value: amount}() (#118)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#140-157):
- (success,returndata) = target.call{value: weiValue}(data) (#143)
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() (#252) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#253) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#269) is not in mixedCase
Function IUniswapV2Router01.WETH() (#290) is not in mixedCase
Parameter DogMasked.calculateTaxFee(uint256)._amount (#894) is not in mixedCase
Parameter DogMasked.calculateLiquidityFee(uint256)._amount (#900) is not in mixedCase
Parameter DogMasked.setBuybackFee(uint256)._buybackFee (#943) is not in mixedCase
Parameter DogMasked.setMarketingFee(uint256)._marketingFee (#952) is not in mixedCase
Parameter DogMasked.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#958) is not in mixedCase
Parameter DogMasked.setMarketingAddress(address)._marketingAddress (#966) is not in mixedCase
Parameter DogMasked.setSwapAndLiquifyEnabled(bool)._enabled (#970) is not in mixedCase
Parameter DogMasked.setBuyBackEnabled(bool)._enabled (#975) is not in mixedCase
Parameter DogMasked.presale(bool)._presale (#980) is not in mixedCase
Variable DogMasked._taxFee (#453) is not in mixedCase
Variable DogMasked._maxTxAmount (#467) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DogMasked._transfer(address,address,uint256) (#673-711):
External calls:
- swapTokens(contractTokenBalance) (#691)
- recipient.transfer(amount) (#995)
External calls sending eth:
- swapTokens(contractTokenBalance) (#691)
- recipient.transfer(amount) (#995)
- buyBackTokens(balance.div(100)) (#699)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _liquidityFee = _previousLiquidityFee (#922)
- _liquidityFee = 0 (#915)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousLiquidityFee = _liquidityFee (#910)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _previousTaxFee = _taxFee (#909)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#889)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#814)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#805)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#806)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#825)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#835)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#826)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#837)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _rTotal = _rTotal.sub(rFee) (#844)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tFeeTotal = _tFeeTotal.add(tFee) (#845)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#891)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#834)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#815)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#836)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- _taxFee = _previousTaxFee (#921)
- _taxFee = 0 (#914)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- buybackFee = previousBuybackFee (#923)
- buybackFee = 0 (#916)
- buyBackTokens(balance.div(100)) (#699)
- inSwapAndLiquify = true (#500)
- inSwapAndLiquify = false (#502)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- marketingFee = previousMarketingFee (#924)
- marketingFee = 0 (#917)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- previousBuybackFee = buybackFee (#911)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- previousMarketingFee = marketingFee (#912)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#767)
- buyBackTokens(balance.div(100)) (#699)
- Transfer(sender,recipient,tTransferAmount) (#809)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#819)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#829)
- _tokenTransfer(from,to,amount,takeFee) (#710)
- Transfer(sender,recipient,tTransferAmount) (#840)
- _tokenTransfer(from,to,amount,takeFee) (#710)
Reentrancy in DogMasked.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#995)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- recipient.transfer(amount) (#995)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#760-765)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
- _allowances[owner][spender] = amount (#669)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#670)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#295) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#296)
Variable DogMasked.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked._transferToExcluded(address,address,uint256).rTransferAmount (#813) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked._transferStandard(address,address,uint256).rTransferAmount (#804) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#865) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked._getValues(uint256).rTransferAmount (#850) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked._transferStandard(address,address,uint256).rTransferAmount (#804) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#865) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked._transferStandard(address,address,uint256).rTransferAmount (#804) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked._transferFromExcluded(address,address,uint256).rTransferAmount (#823) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked._transferStandard(address,address,uint256).rTransferAmount (#804) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Variable DogMasked._getValues(uint256).rTransferAmount (#850) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked._transferToExcluded(address,address,uint256).rTransferAmount (#813) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked._transferFromExcluded(address,address,uint256).rTransferAmount (#823) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked._transferBothExcluded(address,address,uint256).rTransferAmount (#833) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked._transferStandard(address,address,uint256).rTransferAmount (#804) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to DogMasked._transferBothExcluded(address,address,uint256).tTransferAmount (#833)
Variable DogMasked._transferToExcluded(address,address,uint256).rTransferAmount (#813) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked._transferToExcluded(address,address,uint256).rTransferAmount (#813) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked._transferToExcluded(address,address,uint256).rTransferAmount (#813) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Variable DogMasked._transferStandard(address,address,uint256).rTransferAmount (#804) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#865) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked._transferBothExcluded(address,address,uint256).rTransferAmount (#833) is too similar to DogMasked._transferFromExcluded(address,address,uint256).tTransferAmount (#823)
Variable DogMasked.reflectionFromToken(uint256,bool).rTransferAmount (#631) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Variable DogMasked._getValues(uint256).rTransferAmount (#850) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked._getValues(uint256).rTransferAmount (#850) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked._getValues(uint256).rTransferAmount (#850) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked._transferBothExcluded(address,address,uint256).rTransferAmount (#833) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#865) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#865) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked._transferBothExcluded(address,address,uint256).rTransferAmount (#833) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked._transferBothExcluded(address,address,uint256).rTransferAmount (#833) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked._transferFromExcluded(address,address,uint256).rTransferAmount (#823) is too similar to DogMasked._getTValues(uint256).tTransferAmount (#857)
Variable DogMasked._transferFromExcluded(address,address,uint256).rTransferAmount (#823) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked._transferFromExcluded(address,address,uint256).rTransferAmount (#823) is too similar to DogMasked._getValues(uint256).tTransferAmount (#849)
Variable DogMasked._transferToExcluded(address,address,uint256).rTransferAmount (#813) is too similar to DogMasked._transferStandard(address,address,uint256).tTransferAmount (#804)
Variable DogMasked._getValues(uint256).rTransferAmount (#850) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Variable DogMasked._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#865) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Variable DogMasked._transferBothExcluded(address,address,uint256).rTransferAmount (#833) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Variable DogMasked._transferFromExcluded(address,address,uint256).rTransferAmount (#823) is too similar to DogMasked._transferToExcluded(address,address,uint256).tTransferAmount (#813)
Prevent variables from having similar names.

Additional information: link

DogMasked.slitherConstructorVariables() (#427-1001) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#433)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#182-185)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#187-191)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#193-195)
getTime() should be declared external:
- Ownable.getTime() (#197-199)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#201-206)
unlock() should be declared external:
- Ownable.unlock() (#208-213)
name() should be declared external:
- DogMasked.name() (#548-550)
symbol() should be declared external:
- DogMasked.symbol() (#552-554)
decimals() should be declared external:
- DogMasked.decimals() (#556-558)
transfer(address,uint256) should be declared external:
- DogMasked.transfer(address,uint256) (#569-572)
allowance(address,address) should be declared external:
- DogMasked.allowance(address,address) (#574-576)
approve(address,uint256) should be declared external:
- DogMasked.approve(address,uint256) (#578-581)
transferFrom(address,address,uint256) should be declared external:
- DogMasked.transferFrom(address,address,uint256) (#583-587)
increaseAllowance(address,uint256) should be declared external:
- DogMasked.increaseAllowance(address,uint256) (#589-592)
decreaseAllowance(address,uint256) should be declared external:
- DogMasked.decreaseAllowance(address,uint256) (#594-597)
isExcludedFromReward(address) should be declared external:
- DogMasked.isExcludedFromReward(address) (#599-601)
totalFees() should be declared external:
- DogMasked.totalFees() (#603-605)
minimumTokensBeforeSwapAmount() should be declared external:
- DogMasked.minimumTokensBeforeSwapAmount() (#607-609)
buyBackUpperLimitAmount() should be declared external:
- DogMasked.buyBackUpperLimitAmount() (#611-613)
deliver(uint256) should be declared external:
- DogMasked.deliver(uint256) (#615-622)
reflectionFromToken(uint256,bool) should be declared external:
- DogMasked.reflectionFromToken(uint256,bool) (#625-634)
excludeFromReward(address) should be declared external:
- DogMasked.excludeFromReward(address) (#642-650)
isExcludedFromFee(address) should be declared external:
- DogMasked.isExcludedFromFee(address) (#927-929)
excludeFromFee(address) should be declared external:
- DogMasked.excludeFromFee(address) (#931-933)
includeInFee(address) should be declared external:
- DogMasked.includeInFee(address) (#935-937)
setBuyBackEnabled(bool) should be declared external:
- DogMasked.setBuyBackEnabled(bool) (#975-978)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account has relatively few subscribers


Unable to find Youtube account


Unable to find Discord account


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find KYC or doxxing proof


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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


Young tokens have high risks of price dump / death

Price for DOGMSK

News for DOGMSK