Community Doge Coin Token Logo

CCDOGE [Community Doge Coin] Token

ALERT: dead

About CCDOGE

Listings

Token 3 years
white paper

CCDOGE is the world’s first 3A type token with auto-deflation, auto-farming, and auto-market-maker mechanisms. Users could get rewards simply by holding it, and CCDOGE will be added to liquidity and burn address automatically at the same time of each transaction.

Laser Scorebeta Last Audit: 7 December 2021

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

CCDOGE._addLiquidity(uint256,uint256) (contracts/Coin.sol#1373-1386) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CCDOGE._transfer(address,address,uint256) (contracts/Coin.sol#1285-1330):
External calls:
- _swapAndLiquify(contractTokenBalance) (contracts/Coin.sol#1317)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
External calls sending eth:
- _swapAndLiquify(contractTokenBalance) (contracts/Coin.sol#1317)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/Coin.sol#1240)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Coin.sol#1411)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Coin.sol#1420)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Coin.sol#1441)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Coin.sol#1412)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Coin.sol#1431)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Coin.sol#1422)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Coin.sol#1432)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Coin.sol#1443)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _rTotal = _rTotal.sub(rFee.div(2)) (contracts/Coin.sol#1182)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _tOwned[deadAddress] = _tOwned[deadAddress].add(tFee.div(2)) (contracts/Coin.sol#1185)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/Coin.sol#1242)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Coin.sol#1440)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Coin.sol#1430)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Coin.sol#1421)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Coin.sol#1442)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

LockProjectExt._newProject(uint256,uint256).tempLock (contracts/Coin.sol#778) 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

CCDOGE.addLiquidity(uint256,uint256) (contracts/Coin.sol#1165-1178) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1170-1177)
CCDOGE._addLiquidity(uint256,uint256) (contracts/Coin.sol#1373-1386) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
Ensure that all the return values of the function calls are used.

Additional information: link

CCDOGE.allowance(address,address).owner (contracts/Coin.sol#934) shadows:
- Ownable.owner() (contracts/Coin.sol#410-412) (function)
CCDOGE._approve(address,address,uint256).owner (contracts/Coin.sol#1277) shadows:
- Ownable.owner() (contracts/Coin.sol#410-412) (function)
Rename the local variables that shadow another component.

Additional information: link

CCDOGE.setTaxFeePercent(uint256) (contracts/Coin.sol#1098-1100) should emit an event for:
- _taxFee = taxFee (contracts/Coin.sol#1099)
CCDOGE.setLiquidityFeePercent(uint256) (contracts/Coin.sol#1102-1104) should emit an event for:
- _liquidityFee = liquidityFee (contracts/Coin.sol#1103)
CCDOGE.setNumTokensSellToAddToLiquidity(uint256) (contracts/Coin.sol#1106-1108) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber * 10 ** _decimals (contracts/Coin.sol#1107)
CCDOGE.setMaxTxPercent(uint256) (contracts/Coin.sol#1110-1112) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (contracts/Coin.sol#1111)
Emit an event for critical parameter changes.

Additional information: link

CCDOGE.constructor().tokenOwner (contracts/Coin.sol#877) lacks a zero-check on :
- _owner = tokenOwner (contracts/Coin.sol#897)
Check that the address is not zero.

Additional information: link

Reentrancy in CCDOGE._swapAndLiquify(uint256) (contracts/Coin.sol#1332-1353):
External calls:
- _swapTokensForEth(half) (contracts/Coin.sol#1344)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
- _addLiquidity(otherHalf,newBalance) (contracts/Coin.sol#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
External calls sending eth:
- _addLiquidity(otherHalf,newBalance) (contracts/Coin.sol#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
State variables written after the call(s):
- _addLiquidity(otherHalf,newBalance) (contracts/Coin.sol#1350)
- _allowances[owner][spender] = amount (contracts/Coin.sol#1281)
Reentrancy in CCDOGE._transfer(address,address,uint256) (contracts/Coin.sol#1285-1330):
External calls:
- _swapAndLiquify(contractTokenBalance) (contracts/Coin.sol#1317)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
External calls sending eth:
- _swapAndLiquify(contractTokenBalance) (contracts/Coin.sol#1317)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _liquidityFee = _previousLiquidityFee (contracts/Coin.sol#1270)
- _liquidityFee = 0 (contracts/Coin.sol#1265)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _previousLiquidityFee = _liquidityFee (contracts/Coin.sol#1262)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _previousTaxFee = _taxFee (contracts/Coin.sol#1261)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _tFeeTotal = _tFeeTotal.add(tFee.div(2)) (contracts/Coin.sol#1183)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- _taxFee = _previousTaxFee (contracts/Coin.sol#1269)
- _taxFee = 0 (contracts/Coin.sol#1264)
Reentrancy in CCDOGE.changeRouterVersion(address) (contracts/Coin.sol#1121-1134):
External calls:
- _pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Coin.sol#1127-1128)
State variables written after the call(s):
- uniswapV2Pair = _pair (contracts/Coin.sol#1130)
- uniswapV2Router = _uniswapV2Router (contracts/Coin.sol#1133)
Reentrancy in CCDOGE.constructor() (contracts/Coin.sol#864-899):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Coin.sol#883-884)
State variables written after the call(s):
- _excluded.push(deadAddress) (contracts/Coin.sol#895)
- _isExcluded[deadAddress] = true (contracts/Coin.sol#893)
- _isExcludedFromFee[tokenOwner] = true (contracts/Coin.sol#890)
- _isExcludedFromFee[address(this)] = true (contracts/Coin.sol#891)
- _owner = tokenOwner (contracts/Coin.sol#897)
- uniswapV2Router = _uniswapV2Router (contracts/Coin.sol#887)
Reentrancy in CCDOGE.transferFrom(address,address,uint256) (contracts/Coin.sol#1013-1020):
External calls:
- _transfer(sender,recipient,amount) (contracts/Coin.sol#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Coin.sol#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Coin.sol#1018)
- _allowances[owner][spender] = amount (contracts/Coin.sol#1281)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CCDOGE._swapAndLiquify(uint256) (contracts/Coin.sol#1332-1353):
External calls:
- _swapTokensForEth(half) (contracts/Coin.sol#1344)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
- _addLiquidity(otherHalf,newBalance) (contracts/Coin.sol#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
External calls sending eth:
- _addLiquidity(otherHalf,newBalance) (contracts/Coin.sol#1350)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Coin.sol#1282)
- _addLiquidity(otherHalf,newBalance) (contracts/Coin.sol#1350)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/Coin.sol#1352)
Reentrancy in CCDOGE._transfer(address,address,uint256) (contracts/Coin.sol#1285-1330):
External calls:
- _swapAndLiquify(contractTokenBalance) (contracts/Coin.sol#1317)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
External calls sending eth:
- _swapAndLiquify(contractTokenBalance) (contracts/Coin.sol#1317)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/Coin.sol#1415)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- Transfer(sender,recipient,tTransferAmount) (contracts/Coin.sol#1425)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- Transfer(sender,recipient,tTransferAmount) (contracts/Coin.sol#1435)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
- Transfer(sender,recipient,tTransferAmount) (contracts/Coin.sol#1446)
- _tokenTransfer(from,to,amount,takeFee) (contracts/Coin.sol#1329)
Reentrancy in CCDOGE.constructor() (contracts/Coin.sol#864-899):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/Coin.sol#883-884)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (contracts/Coin.sol#898)
Reentrancy in CCDOGE.transferFrom(address,address,uint256) (contracts/Coin.sol#1013-1020):
External calls:
- _transfer(sender,recipient,amount) (contracts/Coin.sol#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/Coin.sol#1364-1370)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/Coin.sol#1017)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/Coin.sol#1378-1385)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Coin.sol#1282)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Coin.sol#1018)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (contracts/Coin.sol#445-450) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (contracts/Coin.sol#447)
LockDataExt._checkLockStatus(address) (contracts/Coin.sol#711-728) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp > _lockList[account][i].lockStamp (contracts/Coin.sol#715)
Avoid relying on block.timestamp.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Coin.sol#361-382) is never used and should be removed
Address.functionCall(address,bytes) (contracts/Coin.sol#321-323) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/Coin.sol#331-333) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/Coin.sol#346-348) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/Coin.sol#356-359) is never used and should be removed
Address.isContract(address) (contracts/Coin.sol#268-277) is never used and should be removed
Address.sendValue(address,uint256) (contracts/Coin.sol#295-301) is never used and should be removed
Context._msgData() (contracts/Coin.sol#240-243) is never used and should be removed
LockProjectExt._clearAllProject() (contracts/Coin.sol#755-757) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/Coin.sol#213-215) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/Coin.sol#229-232) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.7.0<0.9.0 (contracts/Coin.sol#5) is too complex
solc-0.8.4 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

Low level call in Address.sendValue(address,uint256) (contracts/Coin.sol#295-301):
- (success) = recipient.call{value: amount}() (contracts/Coin.sol#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Coin.sol#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/Coin.sol#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 (contracts/Coin.sol#398) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/Coin.sol#489) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/Coin.sol#490) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/Coin.sol#507) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/Coin.sol#529) is not in mixedCase
Variable LockDataExt._lockList (contracts/Coin.sol#674) is not in mixedCase
Variable LockDataExt._lockTValue (contracts/Coin.sol#675) is not in mixedCase
Variable LockDataExt._lockTValueAll (contracts/Coin.sol#676) is not in mixedCase
Parameter CCDOGE.setSwapAndLiquifyEnabled(bool)._enabled (contracts/Coin.sol#1114) is not in mixedCase
Parameter CCDOGE.changeRouterVersion(address)._router (contracts/Coin.sol#1121) is not in mixedCase
Parameter CCDOGE.transferForeignToken(address,address)._token (contracts/Coin.sol#1136) is not in mixedCase
Parameter CCDOGE.transferForeignToken(address,address)._to (contracts/Coin.sol#1136) is not in mixedCase
Function CCDOGE.Sweep() (contracts/Coin.sol#1142-1145) is not in mixedCase
Parameter CCDOGE.calculateTaxFee(uint256)._amount (contracts/Coin.sol#1246) is not in mixedCase
Parameter CCDOGE.calculateLiquidityFee(uint256)._amount (contracts/Coin.sol#1252) is not in mixedCase
Variable CCDOGE._taxFee (contracts/Coin.sol#831) is not in mixedCase
Variable CCDOGE._liquidityFee (contracts/Coin.sol#834) is not in mixedCase
Constant CCDOGE.routerAddress (contracts/Coin.sol#840) is not in UPPER_CASE_WITH_UNDERSCORES
Variable CCDOGE._maxTxAmount (contracts/Coin.sol#847) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/Coin.sol#534) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/Coin.sol#535)
Variable CCDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1429) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Coin.sol#1055) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Coin.sol#1205) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1429) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Coin.sol#1055) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE._getValues(uint256).rTransferAmount (contracts/Coin.sol#1190) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1439) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1419) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Coin.sol#1205) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1419) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Coin.sol#1205) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Coin.sol#1205) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE._getValues(uint256).rTransferAmount (contracts/Coin.sol#1190) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE._transferStandard(address,address,uint256).rTransferAmount (contracts/Coin.sol#1410) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE._getValues(uint256).rTransferAmount (contracts/Coin.sol#1190) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1439) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE._getValues(uint256).rTransferAmount (contracts/Coin.sol#1190) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1439) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1419) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1429) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Coin.sol#1055) is too similar to CCDOGE._transferStandard(address,address,uint256).tTransferAmount (contracts/Coin.sol#1410)
Variable CCDOGE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1419) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1419) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Coin.sol#1205) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1419) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Coin.sol#1055) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1429) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1439) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE._transferStandard(address,address,uint256).rTransferAmount (contracts/Coin.sol#1410) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE._transferStandard(address,address,uint256).rTransferAmount (contracts/Coin.sol#1410) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE._getValues(uint256).rTransferAmount (contracts/Coin.sol#1190) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Coin.sol#1055) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/Coin.sol#1055) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1429) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE._transferStandard(address,address,uint256).rTransferAmount (contracts/Coin.sol#1410) is too similar to CCDOGE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1439)
Variable CCDOGE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/Coin.sol#1205) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1429) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1439) is too similar to CCDOGE._getTValues(uint256).tTransferAmount (contracts/Coin.sol#1197)
Variable CCDOGE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Coin.sol#1439) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE._getValues(uint256).rTransferAmount (contracts/Coin.sol#1190) is too similar to CCDOGE._getValues(uint256).tTransferAmount (contracts/Coin.sol#1189)
Variable CCDOGE._transferStandard(address,address,uint256).rTransferAmount (contracts/Coin.sol#1410) is too similar to CCDOGE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1419)
Variable CCDOGE._transferStandard(address,address,uint256).rTransferAmount (contracts/Coin.sol#1410) is too similar to CCDOGE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Coin.sol#1429)
Variable CCDOGE.lockCoin(uint256,uint256).tempRProfit (contracts/Coin.sol#958) is too similar to CCDOGE.lockCoin(uint256,uint256).tempTProfit (contracts/Coin.sol#957)
Prevent variables from having similar names.

Additional information: link

CCDOGE.constructor() (contracts/Coin.sol#864-899) uses literals with too many digits:
- _tTotal = 2100000000000000000000000 (contracts/Coin.sol#868)
CCDOGE.constructor() (contracts/Coin.sol#864-899) uses literals with too many digits:
- _maxTxAmount = 1000000000000000000000000 (contracts/Coin.sol#874)
CCDOGE.constructor() (contracts/Coin.sol#864-899) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 2100000000000000000000 (contracts/Coin.sol#875)
CCDOGE.slitherConstructorVariables() (contracts/Coin.sol#805-1472) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (contracts/Coin.sol#814)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

CCDOGE.deadAddress (contracts/Coin.sol#814) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Coin.sol#419-422)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Coin.sol#424-428)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (contracts/Coin.sol#430-432)
getTime() should be declared external:
- Ownable.getTime() (contracts/Coin.sol#434-436)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/Coin.sol#438-443)
unlock() should be declared external:
- Ownable.unlock() (contracts/Coin.sol#445-450)
getLockSize(address) should be declared external:
- LockDataExt.getLockSize(address) (contracts/Coin.sol#688-691)
getLockInfo(address,uint256) should be declared external:
- LockDataExt.getLockInfo(address,uint256) (contracts/Coin.sol#693-698)
name() should be declared external:
- CCDOGE.name() (contracts/Coin.sol#902-904)
symbol() should be declared external:
- CCDOGE.symbol() (contracts/Coin.sol#906-908)
decimals() should be declared external:
- CCDOGE.decimals() (contracts/Coin.sol#910-912)
totalSupply() should be declared external:
- CCDOGE.totalSupply() (contracts/Coin.sol#914-916)
transfer(address,uint256) should be declared external:
- CCDOGE.transfer(address,uint256) (contracts/Coin.sol#926-932)
allowance(address,address) should be declared external:
- CCDOGE.allowance(address,address) (contracts/Coin.sol#934-936)
approve(address,uint256) should be declared external:
- CCDOGE.approve(address,uint256) (contracts/Coin.sol#938-941)
lockCoin(uint256,uint256) should be declared external:
- CCDOGE.lockCoin(uint256,uint256) (contracts/Coin.sol#944-978)
getAllLocks() should be declared external:
- CCDOGE.getAllLocks() (contracts/Coin.sol#980-982)
getAllProjects() should be declared external:
- CCDOGE.getAllProjects() (contracts/Coin.sol#984-986)
getProject(uint256) should be declared external:
- CCDOGE.getProject(uint256) (contracts/Coin.sol#988-990)
createLockProject(uint32,uint32) should be declared external:
- CCDOGE.createLockProject(uint32,uint32) (contracts/Coin.sol#992-1002)
deleteLockProject(uint32) should be declared external:
- CCDOGE.deleteLockProject(uint32) (contracts/Coin.sol#1004-1010)
transferFrom(address,address,uint256) should be declared external:
- CCDOGE.transferFrom(address,address,uint256) (contracts/Coin.sol#1013-1020)
increaseAllowance(address,uint256) should be declared external:
- CCDOGE.increaseAllowance(address,uint256) (contracts/Coin.sol#1022-1025)
decreaseAllowance(address,uint256) should be declared external:
- CCDOGE.decreaseAllowance(address,uint256) (contracts/Coin.sol#1027-1030)
isExcludedFromReward(address) should be declared external:
- CCDOGE.isExcludedFromReward(address) (contracts/Coin.sol#1032-1034)
totalFees() should be declared external:
- CCDOGE.totalFees() (contracts/Coin.sol#1036-1038)
deliver(uint256) should be declared external:
- CCDOGE.deliver(uint256) (contracts/Coin.sol#1040-1047)
reflectionFromToken(uint256,bool) should be declared external:
- CCDOGE.reflectionFromToken(uint256,bool) (contracts/Coin.sol#1049-1058)
excludeFromReward(address) should be declared external:
- CCDOGE.excludeFromReward(address) (contracts/Coin.sol#1066-1074)
excludeFromFee(address) should be declared external:
- CCDOGE.excludeFromFee(address) (contracts/Coin.sol#1090-1092)
includeInFee(address) should be declared external:
- CCDOGE.includeInFee(address) (contracts/Coin.sol#1094-1096)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- CCDOGE.setNumTokensSellToAddToLiquidity(uint256) (contracts/Coin.sol#1106-1108)
setMaxTxPercent(uint256) should be declared external:
- CCDOGE.setMaxTxPercent(uint256) (contracts/Coin.sol#1110-1112)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CCDOGE.setSwapAndLiquifyEnabled(bool) (contracts/Coin.sol#1114-1117)
changeRouterVersion(address) should be declared external:
- CCDOGE.changeRouterVersion(address) (contracts/Coin.sol#1121-1134)
transferForeignToken(address,address) should be declared external:
- CCDOGE.transferForeignToken(address,address) (contracts/Coin.sol#1136-1140)
isExcludedFromFee(address) should be declared external:
- CCDOGE.isExcludedFromFee(address) (contracts/Coin.sol#1273-1275)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


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


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Unable to find Youtube account


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

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


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 a considerable age, but social accounts / website are missing or have few users


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for CCDOGE