Cockapoo is a new type of crypto coin. Born from the mix of a cocker-spaniel and poodle, Cockapoo is here to prove that we are the best dog token in the crypto-verse. We are launching our mobile app Cpoo where users can request pooper scoopers to clean up dog poop. The Cpoo app will be powered solely by our crypto token $CPOO. Cockapoo is a deflationary token with static reflection that rewards holders so, the more poop that is scooped on the app, the more Cockapoo coins added to your wallet. Simply hold Cockapoo and 2% from each transaction is automatically redistributed to the Cockapoo holders.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CPOO.addLiquidity(uint256,uint256) (#1114-1127) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CPOO._transfer(address,address,uint256) (#1027-1071):
External calls:
- swapAndLiquify(contractTokenBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#983)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1152)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1161)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1172)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1153)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#896)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1163)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1173)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#898)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _rTotal = _rTotal.sub(rFee) (#938)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#985)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#895)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1171)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1162)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#897)
Apply the check-effects-interactions pattern.
Additional information: link
CPOO._transfer(address,address,uint256) (#1027-1071) contains a tautology or contradiction:
- require(bool,string)(amount >= 0,Transfer amount must be greater than zero) (#1034)
Fix the incorrect comparison by changing the value type or the comparison.
Additional information: link
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.
CPOO.addLiquidity(uint256,uint256) (#1114-1127) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
Ensure that all the return values of the function calls are used.
Additional information: link
CPOO.allowance(address,address).owner (#806) shadows:
- Ownable.owner() (#426-428) (function)
CPOO._approve(address,address,uint256).owner (#1019) shadows:
- Ownable.owner() (#426-428) (function)
Rename the local variables that shadow another component.
Additional information: link
CPOO.setTaxFeePercent(uint256) (#912-915) should emit an event for:
- _taxFee = taxFee (#914)
CPOO.setLiquidityFeePercent(uint256) (#917-920) should emit an event for:
- _liquidityFee = liquidityFee (#919)
CPOO.setMaxTxPercentDiv100(uint256) (#922-927) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 4) (#924-926)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CPOO._transfer(address,address,uint256) (#1027-1071):
External calls:
- swapAndLiquify(contractTokenBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _liquidityFee = _previousLiquidityFee (#1012)
- _liquidityFee = 0 (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _previousLiquidityFee = _liquidityFee (#1004)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _previousTaxFee = _taxFee (#1003)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _tFeeTotal = _tFeeTotal.add(tFee) (#939)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- _taxFee = _previousTaxFee (#1011)
- _taxFee = 0 (#1006)
Reentrancy in CPOO.constructor() (#751-767):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#756-757)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#763)
- _isExcludedFromFee[address(this)] = true (#764)
- uniswapV2Router = _uniswapV2Router (#760)
Reentrancy in CPOO.swapAndLiquify(uint256) (#1073-1094):
External calls:
- swapTokensForEth(half) (#1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1091)
- _allowances[owner][spender] = amount (#1023)
Reentrancy in CPOO.transferFrom(address,address,uint256) (#815-819):
External calls:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#817)
- _allowances[owner][spender] = amount (#1023)
Reentrancy in CPOO.updateRouter(address) (#770-778):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#773-774)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#777)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CPOO._transfer(address,address,uint256) (#1027-1071):
External calls:
- swapAndLiquify(contractTokenBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1058)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1156)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- Transfer(sender,recipient,tTransferAmount) (#1176)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- Transfer(sender,recipient,tTransferAmount) (#1166)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
- Transfer(sender,recipient,tTransferAmount) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1070)
Reentrancy in CPOO.constructor() (#751-767):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#756-757)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#766)
Reentrancy in CPOO.swapAndLiquify(uint256) (#1073-1094):
External calls:
- swapTokensForEth(half) (#1085)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1091)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- addLiquidity(otherHalf,newBalance) (#1091)
- SwapAndLiquify(half,newBalance,otherHalf) (#1093)
Reentrancy in CPOO.transferFrom(address,address,uint256) (#815-819):
External calls:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1105-1111)
External calls sending eth:
- _transfer(sender,recipient,amount) (#816)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1119-1126)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#817)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#473-478) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#475)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#278-287) uses assembly
- INLINE ASM (#285)
Address._functionCallWithValue(address,bytes,uint256,string) (#371-392) uses assembly
- INLINE ASM (#384-387)
Do not use evm assembly.
Additional information: link
CPOO.includeInReward(address) (#877-891) has costly operations inside a loop:
- _excluded.pop() (#886)
CPOO.includeInReward(address) (#877-891) has costly operations inside a loop:
- _numExcludedWallets = _numExcludedWallets - 1 (#887)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#371-392) is never used and should be removed
Address.functionCall(address,bytes) (#331-333) is never used and should be removed
Address.functionCall(address,bytes,string) (#341-343) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#356-358) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#366-369) is never used and should be removed
Address.isContract(address) (#278-287) is never used and should be removed
Address.sendValue(address,uint256) (#305-311) is never used and should be removed
Context._msgData() (#250-253) is never used and should be removed
SafeMath.mod(uint256,uint256) (#223-225) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#239-242) is never used and should be removed
Remove unused functions.
Additional information: link
CPOO._rTotal (#712) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CPOO._previousTaxFee (#720) is set pre-construction with a non-constant function or state variable:
- _taxFee
CPOO._previousLiquidityFee (#724) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#305-311):
- (success) = recipient.call{value: amount}() (#309)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#371-392):
- (success,returndata) = target.call{value: weiValue}(data) (#375)
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() (#517) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#518) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#535) is not in mixedCase
Function IUniswapV2Router01.WETH() (#557) is not in mixedCase
Parameter CPOO.updateRouter(address)._newDexAddress (#770) is not in mixedCase
Parameter CPOO.setSwapAndLiquifyEnabled(bool)._enabled (#929) is not in mixedCase
Parameter CPOO.calculateTaxFee(uint256)._amount (#988) is not in mixedCase
Parameter CPOO.calculateLiquidityFee(uint256)._amount (#994) is not in mixedCase
Variable CPOO._taxFee (#719) is not in mixedCase
Variable CPOO._liquidityFee (#723) is not in mixedCase
Variable CPOO._maxTxAmount (#733) is not in mixedCase
Variable CPOO._maxTxPercentMinDividedBy100 (#734) is not in mixedCase
Variable CPOO._numTokensSellToAddToLiquidity (#735) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#251)" inContext (#245-254)
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 (#562) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#563)
Variable CPOO._transferStandard(address,address,uint256).rTransferAmount (#1151) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO._transferFromExcluded(address,address,uint256).rTransferAmount (#1170) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO._getValues(uint256).rTransferAmount (#944) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO._transferFromExcluded(address,address,uint256).rTransferAmount (#1170) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._transferFromExcluded(address,address,uint256).rTransferAmount (#1170) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO._transferFromExcluded(address,address,uint256).rTransferAmount (#1170) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO._getValues(uint256).rTransferAmount (#944) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO._getValues(uint256).rTransferAmount (#944) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO._transferStandard(address,address,uint256).rTransferAmount (#1151) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._getValues(uint256).rTransferAmount (#944) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable CPOO._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._transferToExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO._transferToExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to CPOO._transferStandard(address,address,uint256).tTransferAmount (#1151)
Variable CPOO._transferStandard(address,address,uint256).rTransferAmount (#1151) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._transferToExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to CPOO._getTValues(uint256).tTransferAmount (#951)
Variable CPOO._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO._transferStandard(address,address,uint256).rTransferAmount (#1151) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO._getValues(uint256).rTransferAmount (#944) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO._transferToExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to CPOO._transferFromExcluded(address,address,uint256).tTransferAmount (#1170)
Variable CPOO._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable CPOO._transferStandard(address,address,uint256).rTransferAmount (#1151) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable CPOO._transferFromExcluded(address,address,uint256).rTransferAmount (#1170) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO._transferToExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO.reflectionFromToken(uint256,bool).rTransferAmount (#854) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable CPOO._transferBothExcluded(address,address,uint256).rTransferAmount (#894) is too similar to CPOO._getValues(uint256).tTransferAmount (#943)
Variable CPOO._getValues(uint256).rTransferAmount (#944) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable CPOO._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#959) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO._transferStandard(address,address,uint256).rTransferAmount (#1151) is too similar to CPOO._transferToExcluded(address,address,uint256).tTransferAmount (#1160)
Variable CPOO._transferFromExcluded(address,address,uint256).rTransferAmount (#1170) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Variable CPOO._transferToExcluded(address,address,uint256).rTransferAmount (#1160) is too similar to CPOO._transferBothExcluded(address,address,uint256).tTransferAmount (#894)
Prevent variables from having similar names.
Additional information: link
CPOO.slitherConstructorVariables() (#695-1180) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 18 (#711)
CPOO.slitherConstructorVariables() (#695-1180) uses literals with too many digits:
- _maxTxAmount = 110000000 * 10 ** 18 (#733)
CPOO.slitherConstructorVariables() (#695-1180) uses literals with too many digits:
- _numTokensSellToAddToLiquidity = 10000000 * 10 ** 18 (#735)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CPOO._decimals (#717) should be constant
CPOO._maxLiquidityFee (#725) should be constant
CPOO._maxNumExcludedWallets (#707) should be constant
CPOO._maxTaxFee (#721) should be constant
CPOO._maxTxPercentMinDividedBy100 (#734) should be constant
CPOO._name (#715) should be constant
CPOO._numTokensSellToAddToLiquidity (#735) should be constant
CPOO._symbol (#716) should be constant
CPOO._tTotal (#711) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#445-448)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#454-458)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#460-462)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#465-470)
unlock() should be declared external:
- Ownable.unlock() (#473-478)
name() should be declared external:
- CPOO.name() (#780-782)
symbol() should be declared external:
- CPOO.symbol() (#784-786)
decimals() should be declared external:
- CPOO.decimals() (#788-790)
totalSupply() should be declared external:
- CPOO.totalSupply() (#792-794)
transfer(address,uint256) should be declared external:
- CPOO.transfer(address,uint256) (#801-804)
allowance(address,address) should be declared external:
- CPOO.allowance(address,address) (#806-808)
approve(address,uint256) should be declared external:
- CPOO.approve(address,uint256) (#810-813)
transferFrom(address,address,uint256) should be declared external:
- CPOO.transferFrom(address,address,uint256) (#815-819)
increaseAllowance(address,uint256) should be declared external:
- CPOO.increaseAllowance(address,uint256) (#821-824)
decreaseAllowance(address,uint256) should be declared external:
- CPOO.decreaseAllowance(address,uint256) (#826-829)
isExcludedFromReward(address) should be declared external:
- CPOO.isExcludedFromReward(address) (#831-833)
totalFees() should be declared external:
- CPOO.totalFees() (#835-837)
deliver(uint256) should be declared external:
- CPOO.deliver(uint256) (#839-846)
reflectionFromToken(uint256,bool) should be declared external:
- CPOO.reflectionFromToken(uint256,bool) (#848-857)
excludeFromReward(address) should be declared external:
- CPOO.excludeFromReward(address) (#865-875)
excludeFromFee(address) should be declared external:
- CPOO.excludeFromFee(address) (#904-906)
includeInFee(address) should be declared external:
- CPOO.includeInFee(address) (#908-910)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CPOO.setSwapAndLiquifyEnabled(bool) (#929-932)
isExcludedFromFee(address) should be declared external:
- CPOO.isExcludedFromFee(address) (#1015-1017)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity 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.
Contract has 12% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Token is deployed only at one blockchain
Unable to find token contract audit
Unable to find audit link on the website
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
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Telegram account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account