dogeprince Token Logo

dogeprince Token

About dogeprince

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 14 February 2022

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


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

Reentrancy in DogePrince._transfer(address,address,uint256) (#1019-1065):
External calls:
- swapAndMarketing(marketingToken) (#1045)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
External calls sending eth:
- swapAndMarketing(marketingToken) (#1045)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#953)
- _rOwned[deadWallet] = _rOwned[deadWallet].add(rBurn) (#965)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1163)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1183)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1226)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1205)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1185)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1206)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1228)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _rTotal = _rTotal.sub(rFee) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#954)
- _tOwned[deadWallet] = _tOwned[deadWallet].add(tBurn) (#966)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1204)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1225)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1184)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1227)
- swapAndLiquify(contractTokenBalance) (#1048)
- inSwapAndLiquify = true (#735)
- inSwapAndLiquify = false (#737)
Apply the check-effects-interactions pattern.

Additional information: link

DogePrince._getReflectFee(uint256) (#929-934) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_taxFee).div(100) (#931)
-rFee = tFee.mul(currentRate) (#932)
DogePrince._takeLiquidity(address,uint256) (#948-958) performs a multiplication on the result of a division:
-tLiquidity = tAmount.mul(_liquidityFee).div(100) (#951)
-rLiquidity = tLiquidity.mul(currentRate) (#952)
DogePrince._takeBurn(address,uint256) (#960-970) performs a multiplication on the result of a division:
-tBurn = tAmount.mul(_burnFee).div(100) (#963)
-rBurn = tBurn.mul(currentRate) (#964)
Consider ordering multiplication before division.

Additional information: link

DogePrince._transferToExcluded(address,address,uint256).tFeeAmount (#1174) is a local variable never initialized
DogePrince._transferFromExcluded(address,address,uint256).tFeeAmount (#1195) is a local variable never initialized
DogePrince._transferStandard(address,address,uint256).tFeeAmount (#1154) is a local variable never initialized
DogePrince._transferBothExcluded(address,address,uint256).tFeeAmount (#1216) is a local variable never initialized
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

DogePrince.addLiquidity(uint256,uint256) (#1113-1126) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
Ensure that all the return values of the function calls are used.

Additional information: link

DogePrince.allowance(address,address).owner (#804) shadows:
- Ownable.owner() (#408-410) (function)
DogePrince._approve(address,address,uint256).owner (#1011) shadows:
- Ownable.owner() (#408-410) (function)
Rename the local variables that shadow another component.

Additional information: link

DogePrince.setMarketingRate(uint256) (#856-858) should emit an event for:
- _marketingRate = value (#857)
DogePrince.setMaxWalletAmount(uint256) (#898-900) should emit an event for:
- maxWalletAmount = amount * 10 ** _decimals (#899)
DogePrince.setNumTokensSellToAddToLiquidity(uint256) (#902-904) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber * 10 ** _decimals (#903)
Emit an event for critical parameter changes.

Additional information: link

DogePrince.setMarketingWallet(address).account (#860) lacks a zero-check on :
- marketingWallet = account (#861)
DogePrince.setLiquidityCollector(address).account (#864) lacks a zero-check on :
- liquidityCollector = account (#865)
Check that the address is not zero.

Additional information: link

Reentrancy in DogePrince._transfer(address,address,uint256) (#1019-1065):
External calls:
- swapAndMarketing(marketingToken) (#1045)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
External calls sending eth:
- swapAndMarketing(marketingToken) (#1045)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance) (#1048)
- _allowances[owner][spender] = amount (#1015)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _burnFee = _previousBurnFee (#1004)
- _burnFee = 0 (#998)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _liquidityFee = _previousLiquidityFee (#1003)
- _liquidityFee = 0 (#997)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousBurnFee = _burnFee (#994)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousLiquidityFee = _liquidityFee (#993)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousTaxFee = _taxFee (#992)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _tFeeTotal = _tFeeTotal.add(tFee) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _taxFee = _previousTaxFee (#1002)
- _taxFee = 0 (#996)
Reentrancy in DogePrince.constructor() (#740-775):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#761-762)
State variables written after the call(s):
- _isExcludedFromFee[tokenOwner] = true (#768)
- _isExcludedFromFee[deadWallet] = true (#769)
- _isExcludedFromFee[address(this)] = true (#770)
- _isExcludedFromFee[address(_uniswapV2Router)] = true (#771)
- _owner = tokenOwner (#773)
- uniswapV2Router = _uniswapV2Router (#765)
Reentrancy in DogePrince.swapAndLiquify(uint256) (#1072-1093):
External calls:
- swapTokensForEth(half) (#1084)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
- addLiquidity(otherHalf,newBalance) (#1090)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1090)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1090)
- _allowances[owner][spender] = amount (#1015)
Reentrancy in DogePrince.transferFrom(address,address,uint256) (#813-817):
External calls:
- _transfer(sender,recipient,amount) (#814)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
External calls sending eth:
- _transfer(sender,recipient,amount) (#814)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#815)
- _allowances[owner][spender] = amount (#1015)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DogePrince._transfer(address,address,uint256) (#1019-1065):
External calls:
- swapAndMarketing(marketingToken) (#1045)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
External calls sending eth:
- swapAndMarketing(marketingToken) (#1045)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1016)
- swapAndLiquify(contractTokenBalance) (#1048)
- SwapAndLiquify(half,newBalance,otherHalf) (#1092)
- swapAndLiquify(contractTokenBalance) (#1048)
- Transfer(sender,address(this),tLiquidity) (#956)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,deadWallet,tBurn) (#968)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1187)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1208)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1230)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
Reentrancy in DogePrince.constructor() (#740-775):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#761-762)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#774)
Reentrancy in DogePrince.swapAndLiquify(uint256) (#1072-1093):
External calls:
- swapTokensForEth(half) (#1084)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
- addLiquidity(otherHalf,newBalance) (#1090)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1090)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1016)
- addLiquidity(otherHalf,newBalance) (#1090)
- SwapAndLiquify(half,newBalance,otherHalf) (#1092)
Reentrancy in DogePrince.transferFrom(address,address,uint256) (#813-817):
External calls:
- _transfer(sender,recipient,amount) (#814)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1104-1110)
External calls sending eth:
- _transfer(sender,recipient,amount) (#814)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1016)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#815)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.

Additional information: link

DogePrince.includeInReward(address) (#877-888) has costly operations inside a loop:
- _excluded.pop() (#884)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
DogePrince.calculateLiquidityFee(uint256) (#983-987) is never used and should be removed
DogePrince.calculateTaxFee(uint256) (#977-981) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#398) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#499) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#500) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#517) is not in mixedCase
Function IUniswapV2Router01.WETH() (#539) is not in mixedCase
Parameter DogePrince.setSwapAndLiquifyEnabled(bool)._enabled (#906) is not in mixedCase
Parameter DogePrince.calculateTaxFee(uint256)._amount (#977) is not in mixedCase
Parameter DogePrince.calculateLiquidityFee(uint256)._amount (#983) is not in mixedCase
Variable DogePrince._taxFee (#699) is not in mixedCase
Variable DogePrince._liquidityFee (#702) is not in mixedCase
Variable DogePrince._burnFee (#705) is not in mixedCase
Variable DogePrince._marketingRate (#708) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in DogePrince._transfer(address,address,uint256) (#1019-1065):
External calls:
- swapAndMarketing(marketingToken) (#1045)
- address(marketingWallet).transfer(address(this).balance) (#1069)
External calls sending eth:
- swapAndMarketing(marketingToken) (#1045)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- swapAndLiquify(contractTokenBalance) (#1048)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
State variables written after the call(s):
- swapAndLiquify(contractTokenBalance) (#1048)
- _allowances[owner][spender] = amount (#1015)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _burnFee = _previousBurnFee (#1004)
- _burnFee = 0 (#998)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _liquidityFee = _previousLiquidityFee (#1003)
- _liquidityFee = 0 (#997)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousBurnFee = _burnFee (#994)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousLiquidityFee = _liquidityFee (#993)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _previousTaxFee = _taxFee (#992)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#953)
- _rOwned[deadWallet] = _rOwned[deadWallet].add(rBurn) (#965)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1163)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1183)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1226)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1164)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1205)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1185)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1206)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1228)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _rTotal = _rTotal.sub(rFee) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _tFeeTotal = _tFeeTotal.add(tFee) (#916)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#954)
- _tOwned[deadWallet] = _tOwned[deadWallet].add(tBurn) (#966)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1204)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1225)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1184)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1227)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- _taxFee = _previousTaxFee (#1002)
- _taxFee = 0 (#996)
- swapAndLiquify(contractTokenBalance) (#1048)
- inSwapAndLiquify = true (#735)
- inSwapAndLiquify = false (#737)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1016)
- swapAndLiquify(contractTokenBalance) (#1048)
- SwapAndLiquify(half,newBalance,otherHalf) (#1092)
- swapAndLiquify(contractTokenBalance) (#1048)
- Transfer(sender,address(this),tLiquidity) (#956)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,deadWallet,tBurn) (#968)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1187)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1208)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
- Transfer(sender,recipient,tTransferAmount) (#1230)
- _tokenTransfer(from,to,amount,takeFee) (#1060)
Reentrancy in DogePrince.transferFrom(address,address,uint256) (#813-817):
External calls:
- _transfer(sender,recipient,amount) (#814)
- address(marketingWallet).transfer(address(this).balance) (#1069)
External calls sending eth:
- _transfer(sender,recipient,amount) (#814)
- address(marketingWallet).transfer(address(this).balance) (#1069)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityCollector,block.timestamp) (#1118-1125)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#815)
- _allowances[owner][spender] = amount (#1015)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1016)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#815)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#544) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#545)
Variable DogePrince._transferStandard(address,address,uint256).rReflectFee (#1157) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tReflectFee (#1198)
Variable DogePrince._transferBothExcluded(address,address,uint256).rReflectFee (#1219) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tReflectFee (#1198)
Variable DogePrince._transferFromExcluded(address,address,uint256).rReflectFee (#1198) is too similar to DogePrince._transferToExcluded(address,address,uint256).tReflectFee (#1177)
Variable DogePrince._transferStandard(address,address,uint256).rReflectFee (#1157) is too similar to DogePrince._transferToExcluded(address,address,uint256).tReflectFee (#1177)
Variable DogePrince._transferBothExcluded(address,address,uint256).rReflectFee (#1219) is too similar to DogePrince._transferToExcluded(address,address,uint256).tReflectFee (#1177)
Variable DogePrince._transferStandard(address,address,uint256).rReflectFee (#1157) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tReflectFee (#1219)
Variable DogePrince._transferBothExcluded(address,address,uint256).rTransferAmount (#1224) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable DogePrince._transferToExcluded(address,address,uint256).rTransferAmount (#1182) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable DogePrince._transferStandard(address,address,uint256).rTransferAmount (#1162) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable DogePrince._transferStandard(address,address,uint256).rTransferAmount (#1162) is too similar to DogePrince._transferToExcluded(address,address,uint256).tTransferAmount (#1181)
Variable DogePrince._transferToExcluded(address,address,uint256).rTransferAmount (#1182) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable DogePrince._transferStandard(address,address,uint256).rTransferAmount (#1162) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable DogePrince._transferFromExcluded(address,address,uint256).rReflectFee (#1198) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tReflectFee (#1219)
Variable DogePrince._transferToExcluded(address,address,uint256).rReflectFee (#1177) is too similar to DogePrince._transferStandard(address,address,uint256).tReflectFee (#1157)
Variable DogePrince._transferToExcluded(address,address,uint256).rReflectFee (#1177) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tReflectFee (#1198)
Variable DogePrince._transferToExcluded(address,address,uint256).rReflectFee (#1177) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tReflectFee (#1219)
Variable DogePrince._transferBothExcluded(address,address,uint256).rReflectFee (#1219) is too similar to DogePrince._transferStandard(address,address,uint256).tReflectFee (#1157)
Variable DogePrince._transferStandard(address,address,uint256).rReflectFee (#1157) is too similar to DogePrince._transferStandard(address,address,uint256).tReflectFee (#1157)
Variable DogePrince._transferBothExcluded(address,address,uint256).rReflectFee (#1219) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tReflectFee (#1219)
Variable DogePrince._transferToExcluded(address,address,uint256).rReflectFee (#1177) is too similar to DogePrince._transferToExcluded(address,address,uint256).tReflectFee (#1177)
Variable DogePrince._transferFromExcluded(address,address,uint256).rReflectFee (#1198) is too similar to DogePrince._transferStandard(address,address,uint256).tReflectFee (#1157)
Variable DogePrince._transferFromExcluded(address,address,uint256).rReflectFee (#1198) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tReflectFee (#1198)
Variable DogePrince._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to DogePrince._transferToExcluded(address,address,uint256).tTransferAmount (#1181)
Variable DogePrince._transferToExcluded(address,address,uint256).rTransferAmount (#1182) is too similar to DogePrince._transferStandard(address,address,uint256).tTransferAmount (#1161)
Variable DogePrince._transferBothExcluded(address,address,uint256).rTransferAmount (#1224) is too similar to DogePrince._transferStandard(address,address,uint256).tTransferAmount (#1161)
Variable DogePrince._transferStandard(address,address,uint256).rTransferAmount (#1162) is too similar to DogePrince._transferStandard(address,address,uint256).tTransferAmount (#1161)
Variable DogePrince._transferBothExcluded(address,address,uint256).rTransferAmount (#1224) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Variable DogePrince._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to DogePrince._transferFromExcluded(address,address,uint256).tTransferAmount (#1202)
Variable DogePrince._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to DogePrince._transferStandard(address,address,uint256).tTransferAmount (#1161)
Variable DogePrince._transferBothExcluded(address,address,uint256).rTransferAmount (#1224) is too similar to DogePrince._transferToExcluded(address,address,uint256).tTransferAmount (#1181)
Variable DogePrince._transferToExcluded(address,address,uint256).rTransferAmount (#1182) is too similar to DogePrince._transferToExcluded(address,address,uint256).tTransferAmount (#1181)
Variable DogePrince._transferFromExcluded(address,address,uint256).rTransferAmount (#1203) is too similar to DogePrince._transferBothExcluded(address,address,uint256).tTransferAmount (#1223)
Prevent variables from having similar names.

Additional information: link

DogePrince.constructor() (#740-775) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** _decimals (#745)
DogePrince.constructor() (#740-775) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 5000000000000 * 10 ** _decimals (#754)
DogePrince.constructor() (#740-775) uses literals with too many digits:
- maxWalletAmount = 1000000000000000 * 10 ** _decimals (#755)
DogePrince.slitherConstructorVariables() (#677-1233) uses literals with too many digits:
- deadWallet = address(0x000000000000000000000000000000000000dEaD) (#713)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DogePrince.deadWallet (#713) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#408-410)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#427-430)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#436-440)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#442-444)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#447-452)
unlock() should be declared external:
- Ownable.unlock() (#455-460)
name() should be declared external:
- DogePrince.name() (#778-780)
symbol() should be declared external:
- DogePrince.symbol() (#782-784)
decimals() should be declared external:
- DogePrince.decimals() (#786-788)
totalSupply() should be declared external:
- DogePrince.totalSupply() (#790-792)
transfer(address,uint256) should be declared external:
- DogePrince.transfer(address,uint256) (#799-802)
allowance(address,address) should be declared external:
- DogePrince.allowance(address,address) (#804-806)
approve(address,uint256) should be declared external:
- DogePrince.approve(address,uint256) (#808-811)
transferFrom(address,address,uint256) should be declared external:
- DogePrince.transferFrom(address,address,uint256) (#813-817)
increaseAllowance(address,uint256) should be declared external:
- DogePrince.increaseAllowance(address,uint256) (#819-822)
decreaseAllowance(address,uint256) should be declared external:
- DogePrince.decreaseAllowance(address,uint256) (#824-827)
isExcludedFromReward(address) should be declared external:
- DogePrince.isExcludedFromReward(address) (#829-831)
totalFees() should be declared external:
- DogePrince.totalFees() (#833-835)
deliver(uint256) should be declared external:
- DogePrince.deliver(uint256) (#837-844)
setBlacklist(address,bool) should be declared external:
- DogePrince.setBlacklist(address,bool) (#852-854)
setMarketingRate(uint256) should be declared external:
- DogePrince.setMarketingRate(uint256) (#856-858)
setMarketingWallet(address) should be declared external:
- DogePrince.setMarketingWallet(address) (#860-862)
setLiquidityCollector(address) should be declared external:
- DogePrince.setLiquidityCollector(address) (#864-866)
excludeFromReward(address) should be declared external:
- DogePrince.excludeFromReward(address) (#868-875)
excludeFromFee(address) should be declared external:
- DogePrince.excludeFromFee(address) (#890-892)
includeInFee(address) should be declared external:
- DogePrince.includeInFee(address) (#894-896)
setMaxWalletAmount(uint256) should be declared external:
- DogePrince.setMaxWalletAmount(uint256) (#898-900)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- DogePrince.setNumTokensSellToAddToLiquidity(uint256) (#902-904)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DogePrince.setSwapAndLiquifyEnabled(bool) (#906-909)
claimTokens() should be declared external:
- DogePrince.claimTokens() (#973-975)
isExcludedFromFee(address) should be declared external:
- DogePrince.isExcludedFromFee(address) (#1007-1009)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 12% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for dogeprince