MetaCZ Token Logo

METACZ Token

About METACZ

Listings

Token 2 years

Website

MetaCZ is a BEP-20 token aiming to conquer and rule across the vast Metaverse of the digital world. Holding $METACZ rewards in BNB, coupled with an experienced team and established marketing & community management, MetaCZ will evolve into something unprecedented on the Binance Smart Chain.

Social

Laser Scorebeta Last Audit: 30 November 2021

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

MetaCZ.swapBack() (#578-622) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MetaCZ._transferFrom(address,address,uint256) (#487-531):
External calls:
- swapBack() (#510)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#589-595)
- distributor.deposit{value: amountBNBReflection}() (#605)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#612-619)
External calls sending eth:
- swapBack() (#510)
- distributor.deposit{value: amountBNBReflection}() (#605)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#612-619)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#513)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#516)
- amountReceived = takeFee(sender,amount) (#515)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#551)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#318-329) ignores return value by WBNB20.transfer(shareholder,amount) (#324)
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.


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

MetaCZ.swapBack().tmpSuccess (#606) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
tmpSuccess = false (#609)
Fix or remove the writes.

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.

Reentrancy in DividendDistributor.setShare(address,uint256) (#251-265):
External calls:
- distributeDividend(shareholder) (#253)
- WBNB20.transfer(shareholder,amount) (#324)
State variables written after the call(s):
- shares[shareholder].amount = amount (#263)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#264)
Apply the check-effects-interactions pattern.

Additional information: link

MetaCZ.swapBack() (#578-622) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#612-619)
Ensure that all the return values of the function calls are used.

Additional information: link

MetaCZ.setTargetLiquidity(uint256,uint256) (#670-673) should emit an event for:
- targetLiquidity = _target (#671)
- targetLiquidityDenominator = _denominator (#672)
Emit an event for critical parameter changes.

Additional information: link

MetaCZ.setFeeReceivers(address,address)._marketingFeeReceiver (#660) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#662)
Check that the address is not zero.

Additional information: link

MetaCZ.airdrop(address,address[],uint256[]) (#701-724) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#716)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#251-265):
External calls:
- distributeDividend(shareholder) (#253)
- WBNB20.transfer(shareholder,amount) (#324)
State variables written after the call(s):
- addShareholder(shareholder) (#257)
- shareholderIndexes[shareholder] = shareholders.length (#351)
- removeShareholder(shareholder) (#259)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#357)
- addShareholder(shareholder) (#257)
- shareholders.push(shareholder) (#352)
- removeShareholder(shareholder) (#259)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#356)
- shareholders.pop() (#358)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#262)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaCZ.swapBack() (#578-622):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#589-595)
- distributor.deposit{value: amountBNBReflection}() (#605)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#612-619)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#605)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#612-619)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#620)
Apply the check-effects-interactions pattern.

Additional information: link

MetaCZ._transferFrom(address,address,uint256) (#487-531) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#501)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#287-311) has costly operations inside a loop:
- currentIndex ++ (#308)
Use a local variable to hold the loop computation result.

Additional information: link

MetaCZ.swapThreshold (#413) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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

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 MetaCZ.swapBack() (#578-622):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#606)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable MetaCZ._allowances (#380) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

MetaCZ.slitherConstructorVariables() (#362-729) uses literals with too many digits:
- distributorGas = 500000 (#405)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MetaCZ.launchedAt (#402) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

cooldownEnabled(bool,uint8) should be declared external:
- MetaCZ.cooldownEnabled(bool,uint8) (#571-574)
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.


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 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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


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


Token has no active CoinMarketCap listing / rank


Token has relatively low CoinGecko rank

Price for METACZ