ChainCade Token Logo

ChainCade Token

About ChainCade

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

ChainCade is bringing the arcade experience to the blockchain. Retro arcade games that you can play to earn BNB and other prizes. An NFT marketplace to collect our exclusive NFT drops from your favorite games on our platform and a game developer program aimed at rewarding and showcasing talent.

Laser Scorebeta Last Audit: 5 December 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

ChainCade.transferContractBalance(uint256) (#891-894) sends eth to arbitrary user
Dangerous calls:
- address(creator()).transfer(amount) (#893)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ChainCade._transfer(address,address,uint256) (#619-652):
External calls:
- swapAndLiquify(contractTokenBalance) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#640)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#739)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#758)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _rTotal = _rTotal.sub(rFee) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#757)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#767)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#748)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#769)
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.


Contract ownership is not renounced (belongs to a wallet)

ChainCade.includeInReward(address) (#598-609) has costly operations inside a loop:
- _excluded.pop() (#605)
Use a local variable to hold the loop computation result.

Additional information: link

Variable ChainCade._maxTxAmount (#460) is not in mixedCase
Parameter ChainCade.calculateTaxFee(uint256)._amount (#827) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#254) is not in mixedCase
Parameter ChainCade.calculateLiquidityFee(uint256)._amount (#833) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#270) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#253) is not in mixedCase
Parameter ChainCade.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#878) is not in mixedCase
Parameter ChainCade.setSwapAndLiquifyEnabled(bool)._enabled (#886) is not in mixedCase
Variable ChainCade._taxFee (#454) is not in mixedCase
Parameter ChainCade.setMarketingAddress(address)._marketingAddress (#882) is not in mixedCase
Function IUniswapV2Router01.WETH() (#291) is not in mixedCase
Variable ChainCade._liquidityFee (#457) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

ChainCade.addLiquidity(uint256,uint256) (#701-714) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Ensure that all the return values of the function calls are used.

Additional information: link

ChainCade._approve(address,address,uint256).owner (#611) shadows:
- Ownable.owner() (#170-172) (function)
ChainCade.allowance(address,address).owner (#524) shadows:
- Ownable.owner() (#170-172) (function)
Rename the local variables that shadow another component.

Additional information: link

ChainCade.setLiquidityFeePercent(uint256) (#870-872) should emit an event for:
- _liquidityFee = liquidityFee (#871)
ChainCade.setNumTokensSellToAddToLiquidity(uint256) (#878-880) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#879)
ChainCade.setMaxTxAmount(uint256) (#874-876) should emit an event for:
- _maxTxAmount = maxTxAmount (#875)
ChainCade.setTaxFeePercent(uint256) (#866-868) should emit an event for:
- _taxFee = taxFee (#867)
Emit an event for critical parameter changes.

Additional information: link

ChainCade.setMarketingAddress(address)._marketingAddress (#882) lacks a zero-check on :
- marketingAddress = _marketingAddress (#883)
Check that the address is not zero.

Additional information: link

Reentrancy in ChainCade._transfer(address,address,uint256) (#619-652):
External calls:
- swapAndLiquify(contractTokenBalance) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#640)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _liquidityFee = _previousLiquidityFee (#851)
- _liquidityFee = 0 (#846)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _previousLiquidityFee = _liquidityFee (#843)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _previousTaxFee = _taxFee (#842)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _tFeeTotal = _tFeeTotal.add(tFee) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _taxFee = _previousTaxFee (#850)
- _taxFee = 0 (#845)
Reentrancy in ChainCade.swapAndLiquify(uint256) (#654-681):
External calls:
- swapTokensForEth(marketingQuota) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
- swapTokensForEth(firstHalf) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
State variables written after the call(s):
- swapTokensForEth(firstHalf) (#672)
- _allowances[owner][spender] = amount (#615)
Reentrancy in ChainCade.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#615)
Reentrancy in ChainCade.swapAndLiquify(uint256) (#654-681):
External calls:
- swapTokensForEth(marketingQuota) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
- swapTokensForEth(firstHalf) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
- addLiquidity(remainingHalf,newBalance) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
External calls sending eth:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
- addLiquidity(remainingHalf,newBalance) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- addLiquidity(remainingHalf,newBalance) (#678)
- _allowances[owner][spender] = amount (#615)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ChainCade._transfer(address,address,uint256) (#619-652):
External calls:
- swapAndLiquify(contractTokenBalance) (#640)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#640)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#742)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- Transfer(sender,recipient,tTransferAmount) (#762)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- Transfer(sender,recipient,tTransferAmount) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- Transfer(sender,recipient,tTransferAmount) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#651)
Reentrancy in ChainCade.swapAndLiquify(uint256) (#654-681):
External calls:
- swapTokensForEth(marketingQuota) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
- swapTokensForEth(firstHalf) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
- addLiquidity(remainingHalf,newBalance) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
External calls sending eth:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
- addLiquidity(remainingHalf,newBalance) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- addLiquidity(remainingHalf,newBalance) (#678)
- SwapAndLiquify(firstHalf,newBalance,remainingHalf) (#680)
Reentrancy in ChainCade.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Reentrancy in ChainCade.swapAndLiquify(uint256) (#654-681):
External calls:
- swapTokensForEth(marketingQuota) (#664)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
- swapTokensForEth(firstHalf) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#692-698)
External calls sending eth:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- swapTokensForEth(firstHalf) (#672)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) uses assembly
- INLINE ASM (#144-147)
Address.isContract(address) (#98-107) uses assembly
- INLINE ASM (#105)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (#109-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#126-128) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-93) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#130-133) is never used and should be removed
Context._msgData() (#21-24) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) is never used and should be removed
Address.isContract(address) (#98-107) is never used and should be removed
Address.functionCall(address,bytes,string) (#122-124) is never used and should be removed
Address.functionCall(address,bytes) (#118-120) is never used and should be removed
Remove unused functions.

Additional information: link

ChainCade._previousLiquidityFee (#458) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ChainCade._rTotal (#445) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ChainCade._previousTaxFee (#455) is set pre-construction with a non-constant function or state variable:
- _taxFee
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._functionCallWithValue(address,bytes,uint256,string) (#135-152):
- (success,returndata) = target.call{value: weiValue}(data) (#138)
Low level call in Address.sendValue(address,uint256) (#109-115):
- (success) = recipient.call{value: amount}() (#113)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in ChainCade.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#615)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Reentrancy in ChainCade.swapAndLiquify(uint256) (#654-681):
External calls:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
State variables written after the call(s):
- swapTokensForEth(firstHalf) (#672)
- _allowances[owner][spender] = amount (#615)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- swapTokensForEth(firstHalf) (#672)
Reentrancy in ChainCade._transfer(address,address,uint256) (#619-652):
External calls:
- swapAndLiquify(contractTokenBalance) (#640)
- recipient.transfer(amount) (#897)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#640)
- recipient.transfer(amount) (#897)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _liquidityFee = _previousLiquidityFee (#851)
- _liquidityFee = 0 (#846)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _previousLiquidityFee = _liquidityFee (#843)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _previousTaxFee = _taxFee (#842)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#747)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#738)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#768)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#739)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#758)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#759)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#749)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#770)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _rTotal = _rTotal.sub(rFee) (#777)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _tFeeTotal = _tFeeTotal.add(tFee) (#778)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#757)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#767)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#748)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#769)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- _taxFee = _previousTaxFee (#850)
- _taxFee = 0 (#845)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#742)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- Transfer(sender,recipient,tTransferAmount) (#752)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- Transfer(sender,recipient,tTransferAmount) (#762)
- _tokenTransfer(from,to,amount,takeFee) (#651)
- Transfer(sender,recipient,tTransferAmount) (#773)
- _tokenTransfer(from,to,amount,takeFee) (#651)
Reentrancy in ChainCade.swapAndLiquify(uint256) (#654-681):
External calls:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
External calls sending eth:
- transferForMarketingETH(marketingAddress,address(this).balance.sub(initialBalance)) (#666)
- recipient.transfer(amount) (#897)
- addLiquidity(remainingHalf,newBalance) (#678)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#706-713)
State variables written after the call(s):
- addLiquidity(remainingHalf,newBalance) (#678)
- _allowances[owner][spender] = amount (#615)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#616)
- addLiquidity(remainingHalf,newBalance) (#678)
- SwapAndLiquify(firstHalf,newBalance,remainingHalf) (#680)
Apply the check-effects-interactions pattern.

Additional information: link

Variable ChainCade._getValues(uint256).rTransferAmount (#783) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable ChainCade._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Variable ChainCade._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Variable ChainCade._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade._getValues(uint256).rTransferAmount (#783) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade._transferStandard(address,address,uint256).rTransferAmount (#737) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Variable ChainCade._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade._transferStandard(address,address,uint256).rTransferAmount (#737) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade._getValues(uint256).rTransferAmount (#783) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Variable ChainCade._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Variable ChainCade.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable ChainCade._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#296) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#297)
Variable ChainCade._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Variable ChainCade._transferStandard(address,address,uint256).rTransferAmount (#737) is too similar to ChainCade._getTValues(uint256).tTransferAmount (#790)
Variable ChainCade._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade._transferStandard(address,address,uint256).rTransferAmount (#737) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#798) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._transferToExcluded(address,address,uint256).rTransferAmount (#746) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable ChainCade._getValues(uint256).rTransferAmount (#783) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade._getValues(uint256).rTransferAmount (#783) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade._transferFromExcluded(address,address,uint256).rTransferAmount (#756) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable ChainCade._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable ChainCade._transferStandard(address,address,uint256).rTransferAmount (#737) is too similar to ChainCade._transferToExcluded(address,address,uint256).tTransferAmount (#746)
Variable ChainCade._getValues(uint256).rTransferAmount (#783) is too similar to ChainCade._transferBothExcluded(address,address,uint256).tTransferAmount (#766)
Variable ChainCade._transferStandard(address,address,uint256).rTransferAmount (#737) is too similar to ChainCade._transferFromExcluded(address,address,uint256).tTransferAmount (#756)
Variable ChainCade.reflectionFromToken(uint256,bool).rTransferAmount (#577) is too similar to ChainCade._getValues(uint256).tTransferAmount (#782)
Variable ChainCade._transferBothExcluded(address,address,uint256).rTransferAmount (#766) is too similar to ChainCade._transferStandard(address,address,uint256).tTransferAmount (#737)
Prevent variables from having similar names.

Additional information: link

ChainCade.slitherConstructorVariables() (#429-903) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#460)
ChainCade.slitherConstructorVariables() (#429-903) uses literals with too many digits:
- minimumTokensBeforeSwap = 600000 * 10 ** 6 * 10 ** 9 (#461)
ChainCade.slitherConstructorVariables() (#429-903) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#444)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ChainCade._symbol (#450) should be constant
ChainCade._tTotal (#444) should be constant
ChainCade._name (#449) should be constant
ChainCade._decimals (#451) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

isExcludedFromReward(address) should be declared external:
- ChainCade.isExcludedFromReward(address) (#549-551)
includeInFee(address) should be declared external:
- ChainCade.includeInFee(address) (#862-864)
excludeFromReward(address) should be declared external:
- ChainCade.excludeFromReward(address) (#588-596)
approve(address,uint256) should be declared external:
- ChainCade.approve(address,uint256) (#528-531)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#188-191)
transferFrom(address,address,uint256) should be declared external:
- ChainCade.transferFrom(address,address,uint256) (#533-537)
symbol() should be declared external:
- ChainCade.symbol() (#502-504)
decreaseAllowance(address,uint256) should be declared external:
- ChainCade.decreaseAllowance(address,uint256) (#544-547)
isExcludedFromFee(address) should be declared external:
- ChainCade.isExcludedFromFee(address) (#854-856)
minimumTokensBeforeSwapAmount() should be declared external:
- ChainCade.minimumTokensBeforeSwapAmount() (#557-559)
getTime() should be declared external:
- Ownable.getTime() (#203-205)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#193-197)
reflectionFromToken(uint256,bool) should be declared external:
- ChainCade.reflectionFromToken(uint256,bool) (#571-580)
decimals() should be declared external:
- ChainCade.decimals() (#506-508)
transferContractBalance(uint256) should be declared external:
- ChainCade.transferContractBalance(uint256) (#891-894)
totalFees() should be declared external:
- ChainCade.totalFees() (#553-555)
totalSupply() should be declared external:
- ChainCade.totalSupply() (#510-512)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ChainCade.setSwapAndLiquifyEnabled(bool) (#886-889)
unlock() should be declared external:
- Ownable.unlock() (#214-219)
allowance(address,address) should be declared external:
- ChainCade.allowance(address,address) (#524-526)
excludeFromFee(address) should be declared external:
- ChainCade.excludeFromFee(address) (#858-860)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#207-212)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#199-201)
name() should be declared external:
- ChainCade.name() (#498-500)
deliver(uint256) should be declared external:
- ChainCade.deliver(uint256) (#561-568)
increaseAllowance(address,uint256) should be declared external:
- ChainCade.increaseAllowance(address,uint256) (#539-542)
transfer(address,uint256) should be declared external:
- ChainCade.transfer(address,uint256) (#519-522)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

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


Unable to find PancakeSwap trading pair to compute liquidity.


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

No disclosed threats


Unable to find token on CoinHunt

Additional information: link


Token has relatively low CoinGecko rank

Price for ChainCade

News for ChainCade