META CHROMIA Token Logo

$MCA [META CHROMIA] Token

About $MCA

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 17 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

METACHROMIA.swapBack() (#783-824) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in METACHROMIA._transferFrom(address,address,uint256) (#717-739):
External calls:
- swapBack() (#722)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#794-800)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
External calls sending eth:
- swapBack() (#722)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#727)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#730)
- amountReceived = takeFee(sender,recipient,amount) (#729)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#770)
- triggerAutoBuyback() (#723)
- inSwap = true (#661)
- inSwap = false (#661)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#560-571) ignores return value by BUSD.transfer(shareholder,amount) (#566)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.

Contract ticker ($MCA) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.

Reentrancy in DividendDistributor.distributeDividend(address) (#560-571):
External calls:
- BUSD.transfer(shareholder,amount) (#566)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#568)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#569)
Reentrancy in DividendDistributor.process(uint256) (#529-553):
External calls:
- distributeDividend(shareholders[currentIndex]) (#545)
- BUSD.transfer(shareholder,amount) (#566)
State variables written after the call(s):
- currentIndex ++ (#550)
Reentrancy in DividendDistributor.setShare(address,uint256) (#493-507):
External calls:
- distributeDividend(shareholder) (#495)
- BUSD.transfer(shareholder,amount) (#566)
State variables written after the call(s):
- shares[shareholder].amount = amount (#505)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#506)
Apply the check-effects-interactions pattern.

Additional information: link

METACHROMIA.swapBack() (#783-824) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link

METACHROMIA.swapBack() (#783-824) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#488-491) should emit an event for:
- minPeriod = _minPeriod (#489)
- minDistribution = _minDistribution (#490)
METACHROMIA.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#866-873) should emit an event for:
- autoBuybackCap = _cap (#868)
- autoBuybackAmount = _amount.div(100) (#870)
METACHROMIA.setBuybackMultiplierSettings(uint256,uint256,uint256) (#875-880) should emit an event for:
- buybackMultiplierNumerator = numerator (#877)
- buybackMultiplierDenominator = denominator (#878)
- buybackMultiplierLength = length (#879)
METACHROMIA.setFees(uint256,uint256,uint256,uint256,uint256) (#910-918) should emit an event for:
- liquidityFee = _liquidityFee (#911)
- reflectionFee = _reflectionFee (#913)
- marketingFee = _marketingFee (#914)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#915)
- feeDenominator = _feeDenominator (#916)
METACHROMIA.setSwapBackSettings(bool,uint256) (#925-928) should emit an event for:
- swapThreshold = _amount.div(100) (#927)
METACHROMIA.setTargetLiquidity(uint256,uint256) (#930-933) should emit an event for:
- targetLiquidity = _target (#931)
- targetLiquidityDenominator = _denominator (#932)
Emit an event for critical parameter changes.

Additional information: link

METACHROMIA.setFeeReceivers(address,address)._autoLiquidityReceiver (#920) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#921)
METACHROMIA.setFeeReceivers(address,address)._marketingFeeReceiver (#920) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#922)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#560-571) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#566)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in METACHROMIA._transferFrom(address,address,uint256) (#717-739):
External calls:
- swapBack() (#722)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#794-800)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
External calls sending eth:
- swapBack() (#722)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
State variables written after the call(s):
- launch() (#725)
- launchedAt = block.number (#887)
Reentrancy in METACHROMIA.constructor() (#663-683):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#665)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#666)
- _balances[msg.sender] = _totalSupply (#681)
- autoLiquidityReceiver = owner() (#677)
- distributor = new DividendDistributor(address(router)) (#668)
- isDividendExempt[pair] = true (#673)
- isDividendExempt[address(this)] = true (#674)
- isDividendExempt[DEAD] = true (#675)
- isDividendExempt[ZERO] = true (#676)
- isFeeExempt[msg.sender] = true (#670)
- isTxLimitExempt[msg.sender] = true (#671)
- isTxLimitExempt[address(router)] = true (#672)
- marketingFeeReceiver = msg.sender (#678)
Reentrancy in DividendDistributor.deposit() (#509-527):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#516-521)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#526)
- totalDividends = totalDividends.add(amount) (#525)
Reentrancy in DividendDistributor.distributeDividend(address) (#560-571):
External calls:
- BUSD.transfer(shareholder,amount) (#566)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#567)
Reentrancy in DividendDistributor.setShare(address,uint256) (#493-507):
External calls:
- distributeDividend(shareholder) (#495)
- BUSD.transfer(shareholder,amount) (#566)
State variables written after the call(s):
- addShareholder(shareholder) (#499)
- shareholderIndexes[shareholder] = shareholders.length (#593)
- removeShareholder(shareholder) (#501)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#599)
- addShareholder(shareholder) (#499)
- shareholders.push(shareholder) (#594)
- removeShareholder(shareholder) (#501)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#598)
- shareholders.pop() (#600)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#504)
Reentrancy in METACHROMIA.triggerAutoBuyback() (#846-851):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#847)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#849)
- autoBuybackBlockLast = block.number (#848)
- autoBuybackEnabled = false (#850)
Reentrancy in METACHROMIA.triggerManualBuyback(uint256,bool) (#834-840):
External calls:
- buyTokens(amount,DEAD) (#835)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#837)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in METACHROMIA._transferFrom(address,address,uint256) (#717-739):
External calls:
- swapBack() (#722)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#794-800)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
- distributor.setShare(sender,_balances[sender]) (#732)
- distributor.setShare(recipient,_balances[recipient]) (#733)
- distributor.process(distributorGas) (#735)
External calls sending eth:
- swapBack() (#722)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#737)
Reentrancy in METACHROMIA._transferFrom(address,address,uint256) (#717-739):
External calls:
- swapBack() (#722)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#794-800)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
External calls sending eth:
- swapBack() (#722)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
- triggerAutoBuyback() (#723)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#771)
- amountReceived = takeFee(sender,recipient,amount) (#729)
Reentrancy in METACHROMIA.constructor() (#663-683):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#665)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#682)
Reentrancy in METACHROMIA.swapBack() (#783-824):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#794-800)
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#810)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#814-821)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#822)
Reentrancy in METACHROMIA.triggerManualBuyback(uint256,bool) (#834-840):
External calls:
- buyTokens(amount,DEAD) (#835)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#858-863)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#838)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#555-558) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#556-557)
METACHROMIA._transferFrom(address,address,uint256) (#717-739) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#725)
METACHROMIA.getTotalFee(bool) (#755-759) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#757)
METACHROMIA.shouldSwapBack() (#776-781) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#777-780)
METACHROMIA.isOverLiquified(uint256,uint256) (#952-954) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#953)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#74-83) uses assembly
- INLINE ASM (#81)
Address._functionCallWithValue(address,bytes,uint256,string) (#167-188) uses assembly
- INLINE ASM (#180-183)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#529-553) has costly operations inside a loop:
- currentIndex = 0 (#541)
DividendDistributor.distributeDividend(address) (#560-571) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#565)
DividendDistributor.process(uint256) (#529-553) has costly operations inside a loop:
- currentIndex ++ (#550)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#167-188) is never used and should be removed
Address.functionCall(address,bytes) (#127-129) is never used and should be removed
Address.functionCall(address,bytes,string) (#137-139) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#152-154) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#162-165) is never used and should be removed
Address.isContract(address) (#74-83) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
Context._msgData() (#196-199) is never used and should be removed
Remove unused functions.

Additional information: link

METACHROMIA.swapThreshold (#659) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 2000
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 (#53) 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 Address.sendValue(address,uint256) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#167-188):
- (success,returndata) = target.call{value: weiValue}(data) (#171)
Low level call in METACHROMIA.swapBack() (#783-824):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#811)
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() (#385) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#488) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#488) is not in mixedCase
Variable DividendDistributor._token (#441) is not in mixedCase
Variable DividendDistributor.BUSD (#449) is not in mixedCase
Variable DividendDistributor.WBNB (#450) is not in mixedCase
Parameter METACHROMIA.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#866) is not in mixedCase
Parameter METACHROMIA.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#866) is not in mixedCase
Parameter METACHROMIA.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#866) is not in mixedCase
Parameter METACHROMIA.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#866) is not in mixedCase
Parameter METACHROMIA.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#910) is not in mixedCase
Parameter METACHROMIA.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#910) is not in mixedCase
Parameter METACHROMIA.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#910) is not in mixedCase
Parameter METACHROMIA.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#910) is not in mixedCase
Parameter METACHROMIA.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#910) is not in mixedCase
Parameter METACHROMIA.setFeeReceivers(address,address)._autoLiquidityReceiver (#920) is not in mixedCase
Parameter METACHROMIA.setFeeReceivers(address,address)._marketingFeeReceiver (#920) is not in mixedCase
Parameter METACHROMIA.setSwapBackSettings(bool,uint256)._enabled (#925) is not in mixedCase
Parameter METACHROMIA.setSwapBackSettings(bool,uint256)._amount (#925) is not in mixedCase
Parameter METACHROMIA.setTargetLiquidity(uint256,uint256)._target (#930) is not in mixedCase
Parameter METACHROMIA.setTargetLiquidity(uint256,uint256)._denominator (#930) is not in mixedCase
Parameter METACHROMIA.setDistributionCriteria(uint256,uint256)._minPeriod (#935) is not in mixedCase
Parameter METACHROMIA.setDistributionCriteria(uint256,uint256)._minDistribution (#935) is not in mixedCase
Variable METACHROMIA.BUSD (#607) is not in mixedCase
Variable METACHROMIA.WBNB (#608) is not in mixedCase
Variable METACHROMIA.DEAD (#609) is not in mixedCase
Variable METACHROMIA.ZERO (#610) is not in mixedCase
Constant METACHROMIA._name (#612) is not in UPPER_CASE_WITH_UNDERSCORES
Constant METACHROMIA._symbol (#613) is not in UPPER_CASE_WITH_UNDERSCORES
Constant METACHROMIA._decimals (#614) is not in UPPER_CASE_WITH_UNDERSCORES
Variable METACHROMIA._totalSupply (#616) is not in mixedCase
Variable METACHROMIA._balances (#618) is not in mixedCase
Variable METACHROMIA._allowances (#619) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#197)" inContext (#191-200)
Remove redundant statements if they congest code but offer no value.

Additional information: link

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

Additional information: link

METACHROMIA.slitherConstructorVariables() (#604-960) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#609)
METACHROMIA.slitherConstructorVariables() (#604-960) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#610)
METACHROMIA.slitherConstructorVariables() (#604-960) uses literals with too many digits:
- _totalSupply = 1000000000000000 * (10 ** _decimals) (#616)
METACHROMIA.slitherConstructorVariables() (#604-960) uses literals with too many digits:
- distributorGas = 500000 (#656)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

METACHROMIA.BUSD (#607) is never used in METACHROMIA (#604-960)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#450) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#463) should be constant
METACHROMIA.BUSD (#607) should be constant
METACHROMIA.DEAD (#609) should be constant
METACHROMIA.WBNB (#608) should be constant
METACHROMIA.ZERO (#610) should be constant
METACHROMIA._totalSupply (#616) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#363-366)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#372-376)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


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 $MCA