ChickenZilla Token Logo

CHKN [ChickenZilla] Token

About CHKN

Listings

Token 4 years
white paper

Chicken Zilla is a 100% community created gaming and reflections token. Passive income, humor, entertainment, and gaming are integrated to create an immersive experience for investors.

5% Tax for BUSD reflections to holders
5% Marketing fund for perpetual growth
3% Liquidity Tax for rising price floor
2% Developer Tax for continued innovation
Safe known developers

There is a city destruction game in development that will utilize hold2play and play2earn mechanics. This will take you on an action packed adventure through the city with Chicken Zilla and his barnyard friends. Through NFTs and tokenomics great utility will be brought to players in game.
Live Chickenvision video feed will start one month after launch with a designated chicken mascot. He will receive tips that will then be used for a buyback and burn of Chicken Zilla tokens. Stream will be kept live 24/7.
The final phase of development of Chicken Zilla will see the launch of a Chicken Zilla food chain with traveling foodcarts in major cities. This will also give utility back to holders and will increase the price forever through food and merchandise sales.

Social

Laser Scorebeta Last Audit: 23 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

ChickenZilla.swapBack() (#740-788) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#341-352) ignores return value by RWRD.transfer(shareholder,amount) (#347)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

Reentrancy in ChickenZilla._transferFrom(address,address,uint256) (#585-638):
External calls:
- swapBack() (#617)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
External calls sending eth:
- swapBack() (#617)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#620)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#623)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#622)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#672)
Apply the check-effects-interactions pattern.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

ChickenZilla.swapBack().tmpSuccess (#771) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
ChickenZilla.swapBack().tmpSuccess (#771) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
tmpSuccess = false (#775)
Fix or remove the writes.

Additional information: link

ChickenZilla.manage_houseguests(address[],bool).i (#729) 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

ChickenZilla.rebase_percentage(uint256,bool) (#470-478) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#473)
ChickenZilla.rebase_percentage(uint256,bool) (#470-478) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#475)
ChickenZilla.takeFee(address,uint256,bool) (#659-676) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#666)
ChickenZilla.takeFee(address,uint256,bool) (#659-676) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#669)
ChickenZilla.swapBack() (#740-788) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#744)
ChickenZilla.setSwapBackSettings(bool,uint256) (#832-835) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#834)
ChickenZilla.setMaxWalletPercent_base1000(uint256) (#913-915) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#914)
ChickenZilla.setMaxTxPercent_base1000(uint256) (#917-919) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#918)
ChickenZilla.slitherConstructorVariables() (#385-985) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(100).mul(2) (#467)
ChickenZilla.slitherConstructorVariables() (#385-985) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(100).mul(3) (#468)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#341-352):
External calls:
- RWRD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#349)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#350)
Reentrancy in DividendDistributor.process(uint256) (#310-334):
External calls:
- distributeDividend(shareholders[currentIndex]) (#326)
- RWRD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- currentIndex ++ (#331)
Reentrancy in DividendDistributor.setShare(address,uint256) (#274-288):
External calls:
- distributeDividend(shareholder) (#276)
- RWRD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- shares[shareholder].amount = amount (#286)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#287)
Apply the check-effects-interactions pattern.

Additional information: link

ChickenZilla.swapBack() (#740-788) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Ensure that all the return values of the function calls are used.

Additional information: link

ChickenZilla.setMaster(address) (#855-857) should emit an event for:
- master = _master (#856)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#269-272) should emit an event for:
- minPeriod = _minPeriod (#270)
- minDistribution = _minDistribution (#271)
ChickenZilla.set_sell_multiplier(uint256) (#701-703) should emit an event for:
- sellMultiplier = Multiplier (#702)
ChickenZilla.tradingStatus(bool,uint256) (#707-713) should emit an event for:
- deadBlocks = _deadBlocks (#711)
ChickenZilla.launchStatus(uint256) (#715-717) should emit an event for:
- launchedAt = _launchblock (#716)
ChickenZilla.setFees(uint256,uint256,uint256,uint256,uint256) (#814-822) should emit an event for:
- liquidityFee = _liquidityFee (#815)
- reflectionFee = _reflectionFee (#816)
- marketingFee = _marketingFee (#817)
- devFee = _devFee (#818)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#819)
- feeDenominator = _feeDenominator (#820)
ChickenZilla.setSwapBackSettings(bool,uint256) (#832-835) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#834)
ChickenZilla.setTargetLiquidity(uint256,uint256) (#838-841) should emit an event for:
- targetLiquidity = _target (#839)
- targetLiquidityDenominator = _denominator (#840)
ChickenZilla.setMaxWalletPercent_base1000(uint256) (#913-915) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#914)
ChickenZilla.setMaxTxPercent_base1000(uint256) (#917-919) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#918)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#147) lacks a zero-check on :
- owner = adr (#148)
ChickenZilla.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#825) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#826)
ChickenZilla.setFeeReceivers(address,address,address)._marketingFeeReceiver (#825) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#827)
ChickenZilla.setFeeReceivers(address,address,address)._devFeeReceiver (#825) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#828)
ChickenZilla.setMaster(address)._master (#855) lacks a zero-check on :
- master = _master (#856)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#341-352) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#347)
ChickenZilla.multiTransfer(address,address[],uint256[]) (#925-949) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#941)
ChickenZilla.multiTransfer_fixed(address,address[],uint256) (#951-970) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#962)
ChickenZilla.rebase_updatebalance(address[]) (#972-981) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#978)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in ChickenZilla.constructor() (#513-543):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#515)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#516)
- _rBalance[msg.sender] = rSupply (#541)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#520)
- autoLiquidityReceiver = msg.sender (#537)
- devFeeReceiver = 0xC154084f754B482073A123D11Da7eEBC407dDd2a (#539)
- distributor = new DividendDistributor(address(router)) (#524)
- isDividendExempt[pair] = true (#533)
- isDividendExempt[address(this)] = true (#534)
- isDividendExempt[DEAD] = true (#535)
- isFeeExempt[msg.sender] = true (#526)
- isTimelockExempt[msg.sender] = true (#529)
- isTimelockExempt[DEAD] = true (#530)
- isTimelockExempt[address(this)] = true (#531)
- isTxLimitExempt[msg.sender] = true (#527)
- marketingFeeReceiver = 0x1883e99E68195946e48745099A9BBD8ccAE41559 (#538)
- pairContract = InterfaceLP(pair) (#519)
- rate = rSupply.div(_totalSupply) (#521)
Reentrancy in DividendDistributor.deposit() (#290-308):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#297-302)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#307)
- totalDividends = totalDividends.add(amount) (#306)
Reentrancy in DividendDistributor.distributeDividend(address) (#341-352):
External calls:
- RWRD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#348)
Reentrancy in DividendDistributor.setShare(address,uint256) (#274-288):
External calls:
- distributeDividend(shareholder) (#276)
- RWRD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- addShareholder(shareholder) (#280)
- shareholderIndexes[shareholder] = shareholders.length (#374)
- removeShareholder(shareholder) (#282)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#380)
- addShareholder(shareholder) (#280)
- shareholders.push(shareholder) (#375)
- removeShareholder(shareholder) (#282)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#379)
- shareholders.pop() (#381)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#285)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ChickenZilla._transferFrom(address,address,uint256) (#585-638):
External calls:
- swapBack() (#617)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
- distributor.setShare(sender,balanceOf(sender)) (#627)
- distributor.setShare(recipient,balanceOf(recipient)) (#631)
- distributor.process(distributorGas) (#634)
External calls sending eth:
- swapBack() (#617)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#636)
Reentrancy in ChickenZilla._transferFrom(address,address,uint256) (#585-638):
External calls:
- swapBack() (#617)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
External calls sending eth:
- swapBack() (#617)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#673)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#622)
Reentrancy in ChickenZilla.constructor() (#513-543):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#515)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#542)
Reentrancy in ChickenZilla.rebase(uint256,int256) (#481-509):
External calls:
- pairContract.sync() (#505)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#507)
Reentrancy in ChickenZilla.swapBack() (#740-788):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#753-759)
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#770)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#778-785)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#786)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#336-339) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#337-338)
ChickenZilla._transferFrom(address,address,uint256) (#585-638) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#601)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#310-334) has costly operations inside a loop:
- currentIndex = 0 (#322)
DividendDistributor.distributeDividend(address) (#341-352) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#346)
DividendDistributor.process(uint256) (#310-334) has costly operations inside a loop:
- currentIndex ++ (#331)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.abs(int256) (#90-93) is never used and should be removed
SafeMathInt.add(int256,int256) (#84-88) is never used and should be removed
SafeMathInt.div(int256,int256) (#72-76) is never used and should be removed
SafeMathInt.sub(int256,int256) (#78-82) is never used and should be removed
Remove unused functions.

Additional information: link

ChickenZilla.totalFee (#411) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
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

Pragma version^0.7.4 (#22) allows old versions
solc-0.7.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 ChickenZilla.swapBack() (#740-788):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#771)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#772)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#166) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#269) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#269) is not in mixedCase
Variable DividendDistributor._token (#222) is not in mixedCase
Variable DividendDistributor.RWRD (#230) is not in mixedCase
Variable DividendDistributor.WBNB (#231) is not in mixedCase
Function ChickenZilla.rebase_percentage(uint256,bool) (#470-478) is not in mixedCase
Parameter ChickenZilla.rebase_percentage(uint256,bool)._percentage_base1000 (#470) is not in mixedCase
Function ChickenZilla.clearStuckBalance_sender(uint256) (#694-697) is not in mixedCase
Function ChickenZilla.set_sell_multiplier(uint256) (#701-703) is not in mixedCase
Parameter ChickenZilla.set_sell_multiplier(uint256).Multiplier (#701) is not in mixedCase
Parameter ChickenZilla.tradingStatus(bool,uint256)._status (#707) is not in mixedCase
Parameter ChickenZilla.tradingStatus(bool,uint256)._deadBlocks (#707) is not in mixedCase
Parameter ChickenZilla.launchStatus(uint256)._launchblock (#715) is not in mixedCase
Function ChickenZilla.enable_hotel_CaliforniaMode(bool) (#720-722) is not in mixedCase
Parameter ChickenZilla.enable_hotel_CaliforniaMode(bool)._status (#720) is not in mixedCase
Function ChickenZilla.set_max_roomrent(uint256) (#724-726) is not in mixedCase
Parameter ChickenZilla.set_max_roomrent(uint256)._rent_withoutdecimal (#724) is not in mixedCase
Function ChickenZilla.manage_houseguests(address[],bool) (#728-732) is not in mixedCase
Parameter ChickenZilla.cooldownEnabled(bool,uint8)._status (#734) is not in mixedCase
Parameter ChickenZilla.cooldownEnabled(bool,uint8)._interval (#734) is not in mixedCase
Parameter ChickenZilla.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#814) is not in mixedCase
Parameter ChickenZilla.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#814) is not in mixedCase
Parameter ChickenZilla.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#814) is not in mixedCase
Parameter ChickenZilla.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#814) is not in mixedCase
Parameter ChickenZilla.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#814) is not in mixedCase
Parameter ChickenZilla.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#825) is not in mixedCase
Parameter ChickenZilla.setFeeReceivers(address,address,address)._marketingFeeReceiver (#825) is not in mixedCase
Parameter ChickenZilla.setFeeReceivers(address,address,address)._devFeeReceiver (#825) is not in mixedCase
Parameter ChickenZilla.setSwapBackSettings(bool,uint256)._enabled (#832) is not in mixedCase
Parameter ChickenZilla.setSwapBackSettings(bool,uint256)._percentage_base10000 (#832) is not in mixedCase
Parameter ChickenZilla.setTargetLiquidity(uint256,uint256)._target (#838) is not in mixedCase
Parameter ChickenZilla.setTargetLiquidity(uint256,uint256)._denominator (#838) is not in mixedCase
Parameter ChickenZilla.setLP(address)._address (#848) is not in mixedCase
Parameter ChickenZilla.setMaster(address)._master (#855) is not in mixedCase
Parameter ChickenZilla.setDistributionCriteria(uint256,uint256)._minPeriod (#872) is not in mixedCase
Parameter ChickenZilla.setDistributionCriteria(uint256,uint256)._minDistribution (#872) is not in mixedCase
Function ChickenZilla.setMaxWalletPercent_base1000(uint256) (#913-915) is not in mixedCase
Parameter ChickenZilla.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#913) is not in mixedCase
Function ChickenZilla.setMaxTxPercent_base1000(uint256) (#917-919) is not in mixedCase
Parameter ChickenZilla.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#917) is not in mixedCase
Function ChickenZilla.multiTransfer_fixed(address,address[],uint256) (#951-970) is not in mixedCase
Function ChickenZilla.rebase_updatebalance(address[]) (#972-981) is not in mixedCase
Variable ChickenZilla.WBNB (#389) is not in mixedCase
Variable ChickenZilla.DEAD (#390) is not in mixedCase
Variable ChickenZilla.ZERO (#391) is not in mixedCase
Constant ChickenZilla._name (#393) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChickenZilla._symbol (#394) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChickenZilla._decimals (#395) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ChickenZilla._rBalance (#399) is not in mixedCase
Variable ChickenZilla._allowances (#400) is not in mixedCase
Variable ChickenZilla.rebase_count (#459) is not in mixedCase
Variable ChickenZilla._totalSupply (#461) is not in mixedCase
Constant ChickenZilla.rSupply (#464) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ChickenZilla._maxTxAmount (#467) is not in mixedCase
Variable ChickenZilla._maxWalletToken (#468) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#171) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#172)
Prevent variables from having similar names.

Additional information: link

ChickenZilla.setDistributorSettings(uint256) (#878-881) uses literals with too many digits:
- require(bool)(gas < 900000) (#879)
ChickenZilla.slitherConstructorVariables() (#385-985) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#390)
ChickenZilla.slitherConstructorVariables() (#385-985) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#391)
ChickenZilla.slitherConstructorVariables() (#385-985) uses literals with too many digits:
- maxRoomRent = 8000000000 (#415)
ChickenZilla.slitherConstructorVariables() (#385-985) uses literals with too many digits:
- distributorGas = 500000 (#438)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#62) is never used in SafeMathInt (#60-94)
Remove unused state variables.

Additional information: link

ChickenZilla.DEAD (#390) should be constant
ChickenZilla.WBNB (#389) should be constant
ChickenZilla.ZERO (#391) should be constant
DividendDistributor.WBNB (#231) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#244) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#131-133)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#135-137)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#147-151)
rebase_percentage(uint256,bool) should be declared external:
- ChickenZilla.rebase_percentage(uint256,bool) (#470-478)
tradingStatus(bool,uint256) should be declared external:
- ChickenZilla.tradingStatus(bool,uint256) (#707-713)
launchStatus(uint256) should be declared external:
- ChickenZilla.launchStatus(uint256) (#715-717)
enable_hotel_CaliforniaMode(bool) should be declared external:
- ChickenZilla.enable_hotel_CaliforniaMode(bool) (#720-722)
set_max_roomrent(uint256) should be declared external:
- ChickenZilla.set_max_roomrent(uint256) (#724-726)
manage_houseguests(address[],bool) should be declared external:
- ChickenZilla.manage_houseguests(address[],bool) (#728-732)
cooldownEnabled(bool,uint8) should be declared external:
- ChickenZilla.cooldownEnabled(bool,uint8) (#734-737)
rescueToken(address,uint256) should be declared external:
- ChickenZilla.rescueToken(address,uint256) (#885-887)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Last post in Twitter was more than 30 days ago


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for CHKN

News for CHKN