Cereza Token Logo

REZ [Cereza] Token

ALERT: honeypot scam

About REZ

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 8 May 2022

report
Token seems to be a scam (type: honeypot scam).


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

Reentrancy in Cereza._transfer(address,address,uint256) (#789-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#745)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#963)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#954)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#955)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#974)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#614)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#975)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#965)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#616)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _rTotal = _rTotal.sub(rFee) (#700)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#747)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#973)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#613)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#964)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#615)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

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

Additional information: link

Address.isContract(address) (#75-84) uses assembly
- INLINE ASM (#82)
Address._functionCallWithValue(address,bytes,uint256,string) (#110-127) uses assembly
- INLINE ASM (#119-122)
Do not use evm assembly.

Additional information: link

Cereza.includeInReward(address) (#599-610) has costly operations inside a loop:
- _excluded.pop() (#606)
Cereza.removeBotFromBlackList(address) (#651-661) has costly operations inside a loop:
- _blackListedBots.pop() (#657)
Use a local variable to hold the loop computation result.

Additional information: link

Cereza._transfer(address,address,uint256) (#789-873) uses tx.origin for authorization: require(bool,string)(! _isBlackListedBot[tx.origin],You have no power here!) (#799)
Do not use tx.origin for authorization.

Additional information: link

Cereza.addLiquidity(uint256,uint256) (#916-929) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
Ensure that all the return values of the function calls are used.

Additional information: link

Cereza.allowance(address,address).owner (#530) shadows:
- Ownable.owner() (#143-145) (function)
Cereza._approve(address,address,uint256).owner (#781) shadows:
- Ownable.owner() (#143-145) (function)
Rename the local variables that shadow another component.

Additional information: link

Cereza.setTaxFeePercent(uint256) (#630-632) should emit an event for:
- _taxFee = taxFee (#631)
Cereza.setLiquidityFeePercent(uint256) (#634-636) should emit an event for:
- _liquidityFee = liquidityFee (#635)
Cereza.setMaxTxPercent(uint256) (#638-642) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#639-641)
Cereza.setBuyFee(uint256,uint256) (#668-671) should emit an event for:
- _buyTaxFee = buyTaxFee (#669)
- _buyLiquidityFee = buyLiquidityFee (#670)
Cereza.setSellFee(uint256,uint256) (#673-676) should emit an event for:
- _sellTaxFee = sellTaxFee (#674)
- _sellLiquidityFee = sellLiquidityFee (#675)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in Cereza._transfer(address,address,uint256) (#789-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
State variables written after the call(s):
- removeAllFee() (#835)
- _liquidityFee = 0 (#769)
- _liquidityFee = _buyLiquidityFee (#837)
- removeAllFee() (#841)
- _liquidityFee = 0 (#769)
- _liquidityFee = _sellLiquidityFee (#843)
- removeAllFee() (#848)
- _liquidityFee = 0 (#769)
- _liquidityFee = _addressFees[from]._liquidityFee (#850)
- _liquidityFee = _addressFees[from]._sellLiquidityFee (#855)
- removeAllFee() (#862)
- _liquidityFee = 0 (#769)
- _liquidityFee = _addressFees[to]._buyLiquidityFee (#865)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _liquidityFee = _previousLiquidityFee (#774)
- _liquidityFee = 0 (#769)
- removeAllFee() (#835)
- _previousLiquidityFee = _liquidityFee (#766)
- removeAllFee() (#841)
- _previousLiquidityFee = _liquidityFee (#766)
- removeAllFee() (#848)
- _previousLiquidityFee = _liquidityFee (#766)
- removeAllFee() (#862)
- _previousLiquidityFee = _liquidityFee (#766)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousLiquidityFee = _liquidityFee (#766)
- removeAllFee() (#835)
- _previousTaxFee = _taxFee (#765)
- removeAllFee() (#841)
- _previousTaxFee = _taxFee (#765)
- removeAllFee() (#848)
- _previousTaxFee = _taxFee (#765)
- removeAllFee() (#862)
- _previousTaxFee = _taxFee (#765)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _previousTaxFee = _taxFee (#765)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _tFeeTotal = _tFeeTotal.add(tFee) (#701)
- removeAllFee() (#835)
- _taxFee = 0 (#768)
- _taxFee = _buyTaxFee (#836)
- removeAllFee() (#841)
- _taxFee = 0 (#768)
- _taxFee = _sellTaxFee (#842)
- removeAllFee() (#848)
- _taxFee = 0 (#768)
- _taxFee = _addressFees[from]._taxFee (#849)
- _taxFee = _addressFees[from]._sellTaxFee (#854)
- removeAllFee() (#862)
- _taxFee = 0 (#768)
- _taxFee = _addressFees[to]._buyTaxFee (#864)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- _taxFee = _previousTaxFee (#773)
- _taxFee = 0 (#768)
Reentrancy in Cereza.constructor() (#461-502):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#466-467)
State variables written after the call(s):
- _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)) (#478)
- _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)) (#481)
- _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)) (#484)
- _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)) (#487)
- _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)) (#490)
- _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848)) (#493)
- _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)) (#496)
- _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679)) (#499)
- _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true (#477)
- _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true (#480)
- _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true (#483)
- _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true (#486)
- _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true (#489)
- _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true (#492)
- _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true (#495)
- _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true (#498)
- _isExcludedFromFee[owner()] = true (#473)
- _isExcludedFromFee[address(this)] = true (#474)
- uniswapV2Router = _uniswapV2Router (#470)
Reentrancy in Cereza.swapAndLiquify(uint256) (#875-896):
External calls:
- swapTokensForEth(half) (#887)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
- addLiquidity(otherHalf,newBalance) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#893)
- _allowances[owner][spender] = amount (#785)
Reentrancy in Cereza.transferFrom(address,address,uint256) (#539-543):
External calls:
- _transfer(sender,recipient,amount) (#540)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- _transfer(sender,recipient,amount) (#540)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#541)
- _allowances[owner][spender] = amount (#785)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Cereza._transfer(address,address,uint256) (#789-873):
External calls:
- swapAndLiquify(contractTokenBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#958)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- Transfer(sender,recipient,tTransferAmount) (#968)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- Transfer(sender,recipient,tTransferAmount) (#978)
- _tokenTransfer(from,to,amount,takeFee) (#872)
- Transfer(sender,recipient,tTransferAmount) (#619)
- _tokenTransfer(from,to,amount,takeFee) (#872)
Reentrancy in Cereza.constructor() (#461-502):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#466-467)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#501)
Reentrancy in Cereza.swapAndLiquify(uint256) (#875-896):
External calls:
- swapTokensForEth(half) (#887)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
- addLiquidity(otherHalf,newBalance) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#893)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#786)
- addLiquidity(otherHalf,newBalance) (#893)
- SwapAndLiquify(half,newBalance,otherHalf) (#895)
Reentrancy in Cereza.transferFrom(address,address,uint256) (#539-543):
External calls:
- _transfer(sender,recipient,amount) (#540)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#907-913)
External calls sending eth:
- _transfer(sender,recipient,amount) (#540)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#921-928)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#786)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#541)
Apply the check-effects-interactions pattern.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#110-127) is never used and should be removed
Address.functionCall(address,bytes) (#93-95) is never used and should be removed
Address.functionCall(address,bytes,string) (#97-99) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#101-103) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#105-108) is never used and should be removed
Address.isContract(address) (#75-84) is never used and should be removed
Address.sendValue(address,uint256) (#85-91) is never used and should be removed
Context._msgData() (#68-71) is never used and should be removed
SafeMath.mod(uint256,uint256) (#53-55) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#57-60) is never used and should be removed
Remove unused functions.

Additional information: link

Cereza._rTotal (#406) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Cereza._previousTaxFee (#424) is set pre-construction with a non-constant function or state variable:
- _taxFee
Cereza._previousLiquidityFee (#427) 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) (#85-91):
- (success) = recipient.call{value: amount}() (#89)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#110-127):
- (success,returndata) = target.call{value: weiValue}(data) (#113)
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() (#216) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#217) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#234) is not in mixedCase
Function IUniswapV2Router01.WETH() (#254) is not in mixedCase
Parameter Cereza.setSwapAndLiquifyEnabled(bool)._enabled (#663) is not in mixedCase
Parameter Cereza.setAddressFee(address,bool,uint256,uint256)._address (#678) is not in mixedCase
Parameter Cereza.setAddressFee(address,bool,uint256,uint256)._enable (#678) is not in mixedCase
Parameter Cereza.setAddressFee(address,bool,uint256,uint256)._addressTaxFee (#678) is not in mixedCase
Parameter Cereza.setAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#678) is not in mixedCase
Parameter Cereza.setBuyAddressFee(address,bool,uint256,uint256)._address (#684) is not in mixedCase
Parameter Cereza.setBuyAddressFee(address,bool,uint256,uint256)._enable (#684) is not in mixedCase
Parameter Cereza.setBuyAddressFee(address,bool,uint256,uint256)._addressTaxFee (#684) is not in mixedCase
Parameter Cereza.setBuyAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#684) is not in mixedCase
Parameter Cereza.setSellAddressFee(address,bool,uint256,uint256)._address (#690) is not in mixedCase
Parameter Cereza.setSellAddressFee(address,bool,uint256,uint256)._enable (#690) is not in mixedCase
Parameter Cereza.setSellAddressFee(address,bool,uint256,uint256)._addressTaxFee (#690) is not in mixedCase
Parameter Cereza.setSellAddressFee(address,bool,uint256,uint256)._addressLiquidityFee (#690) is not in mixedCase
Parameter Cereza.calculateTaxFee(uint256)._amount (#750) is not in mixedCase
Parameter Cereza.calculateLiquidityFee(uint256)._amount (#756) is not in mixedCase
Variable Cereza._taxFee (#423) is not in mixedCase
Variable Cereza._liquidityFee (#426) is not in mixedCase
Variable Cereza._buyTaxFee (#429) is not in mixedCase
Variable Cereza._buyLiquidityFee (#430) is not in mixedCase
Variable Cereza._sellTaxFee (#432) is not in mixedCase
Variable Cereza._sellLiquidityFee (#433) is not in mixedCase
Variable Cereza._addressFees (#442) is not in mixedCase
Variable Cereza._maxTxAmount (#444) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#69)" inContext (#63-72)
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 (#259) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#260)
Variable Cereza._getValues(uint256).rTransferAmount (#706) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._transferFromExcluded(address,address,uint256).rTransferAmount (#972) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#721) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._transferToExcluded(address,address,uint256).rTransferAmount (#962) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._transferToExcluded(address,address,uint256).rTransferAmount (#962) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._transferBothExcluded(address,address,uint256).rTransferAmount (#612) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._transferToExcluded(address,address,uint256).rTransferAmount (#962) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Variable Cereza._getValues(uint256).rTransferAmount (#706) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Variable Cereza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#721) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Variable Cereza._transferFromExcluded(address,address,uint256).rTransferAmount (#972) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Variable Cereza._getValues(uint256).rTransferAmount (#706) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#721) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza._getValues(uint256).rTransferAmount (#706) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza._getValues(uint256).rTransferAmount (#706) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza._transferFromExcluded(address,address,uint256).rTransferAmount (#972) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza._transferFromExcluded(address,address,uint256).rTransferAmount (#972) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#721) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza._transferToExcluded(address,address,uint256).rTransferAmount (#962) is too similar to Cereza._transferStandard(address,address,uint256).tTransferAmount (#953)
Variable Cereza._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza._transferBothExcluded(address,address,uint256).rTransferAmount (#612) is too similar to Cereza._transferBothExcluded(address,address,uint256).tTransferAmount (#612)
Variable Cereza._transferBothExcluded(address,address,uint256).rTransferAmount (#612) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza._transferFromExcluded(address,address,uint256).rTransferAmount (#972) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza._transferBothExcluded(address,address,uint256).rTransferAmount (#612) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Variable Cereza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#721) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza._transferBothExcluded(address,address,uint256).rTransferAmount (#612) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#721) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Variable Cereza.reflectionFromToken(uint256,bool).rTransferAmount (#578) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza._transferToExcluded(address,address,uint256).rTransferAmount (#962) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza._transferToExcluded(address,address,uint256).rTransferAmount (#962) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza._transferStandard(address,address,uint256).rTransferAmount (#953) is too similar to Cereza._getTValues(uint256).tTransferAmount (#713)
Variable Cereza._getValues(uint256).rTransferAmount (#706) is too similar to Cereza._transferFromExcluded(address,address,uint256).tTransferAmount (#972)
Variable Cereza._transferFromExcluded(address,address,uint256).rTransferAmount (#972) is too similar to Cereza._getValues(uint256).tTransferAmount (#705)
Variable Cereza._transferBothExcluded(address,address,uint256).rTransferAmount (#612) is too similar to Cereza._transferToExcluded(address,address,uint256).tTransferAmount (#962)
Prevent variables from having similar names.

Additional information: link

Cereza.slitherConstructorVariables() (#389-985) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 8 (#444)
Cereza.slitherConstructorVariables() (#389-985) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 8 (#445)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Cereza._decimals (#411) should be constant
Cereza._name (#409) should be constant
Cereza._symbol (#410) should be constant
Cereza._tTotal (#405) should be constant
Cereza.numTokensSellToAddToLiquidity (#445) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#152-155)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#157-161)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#163-165)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#167-172)
unlock() should be declared external:
- Ownable.unlock() (#174-179)
name() should be declared external:
- Cereza.name() (#504-506)
symbol() should be declared external:
- Cereza.symbol() (#508-510)
decimals() should be declared external:
- Cereza.decimals() (#512-514)
totalSupply() should be declared external:
- Cereza.totalSupply() (#516-518)
transfer(address,uint256) should be declared external:
- Cereza.transfer(address,uint256) (#525-528)
allowance(address,address) should be declared external:
- Cereza.allowance(address,address) (#530-532)
approve(address,uint256) should be declared external:
- Cereza.approve(address,uint256) (#534-537)
transferFrom(address,address,uint256) should be declared external:
- Cereza.transferFrom(address,address,uint256) (#539-543)
increaseAllowance(address,uint256) should be declared external:
- Cereza.increaseAllowance(address,uint256) (#545-548)
decreaseAllowance(address,uint256) should be declared external:
- Cereza.decreaseAllowance(address,uint256) (#550-553)
isExcludedFromReward(address) should be declared external:
- Cereza.isExcludedFromReward(address) (#555-557)
totalFees() should be declared external:
- Cereza.totalFees() (#559-561)
deliver(uint256) should be declared external:
- Cereza.deliver(uint256) (#563-570)
reflectionFromToken(uint256,bool) should be declared external:
- Cereza.reflectionFromToken(uint256,bool) (#572-581)
excludeFromReward(address) should be declared external:
- Cereza.excludeFromReward(address) (#589-597)
excludeFromFee(address) should be declared external:
- Cereza.excludeFromFee(address) (#622-624)
includeInFee(address) should be declared external:
- Cereza.includeInFee(address) (#626-628)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Cereza.setSwapAndLiquifyEnabled(bool) (#663-666)
isExcludedFromFee(address) should be declared external:
- Cereza.isExcludedFromFee(address) (#777-779)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


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 Telegram and Twitter accounts


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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 REZ