GreenMoonZilla Token Logo

GrmZilla [GreenMoonZilla] Token

About GrmZilla

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

The world's first non-gravity token that is mathematically guaranteed to only rise. GRMZilla (GRMZilla) is a flexible supply token built on the Binance Smart Chain.

Social

Laser Scorebeta Last Audit: 10 April 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

AddressContract._functionCallWithValue(address,bytes,uint256,string) (#161-188) sends eth to arbitrary user
Dangerous calls:
- (success,returndata) = target.call{value: weiValue}(data) (#170-171)
GreenMoonZilla.swapBack() (#1176-1233) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GreenMoonZilla._transferFrom(address,address,uint256) (#984-1067):
External calls:
- swapBack() (#1042)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1191-1197)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
External calls sending eth:
- swapBack() (#1042)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#1046)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#1052)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#1048-1051)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#1111)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#532-549) ignores return value by RWRD.transfer(shareholder,amount) (#540)
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.


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.

GreenMoonZilla.swapBack().tmpSuccess (#1210) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
GreenMoonZilla.swapBack().tmpSuccess (#1210) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
tmpSuccess = false (#1220)
Fix or remove the writes.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Reentrancy in GreenMoonZilla.constructor() (#876-906):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#878)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#879)
- _rBalance[msg.sender] = rSupply (#904)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#882)
- autoLiquidityReceiver = msg.sender (#900)
- devFeeReceiver = 0x0b89887DDA47B06471A02e268BCeB32Ee6d92f00 (#902)
- distributor = new DividendDistributor(address(router)) (#885)
- isDividendExempt[pair] = true (#896)
- isDividendExempt[address(this)] = true (#897)
- isDividendExempt[DEAD] = true (#898)
- isFeeExempt[msg.sender] = true (#887)
- isTimelockExempt[msg.sender] = true (#892)
- isTimelockExempt[DEAD] = true (#893)
- isTimelockExempt[address(this)] = true (#894)
- isTxLimitExempt[msg.sender] = true (#888)
- isTxLimitExempt[pair] = true (#889)
- isTxLimitExempt[address(this)] = true (#890)
- marketingFeeReceiver = 0x4B2Ab680AF07AD744C349Cbe010d6423f30F96a5 (#901)
- pairContract = InterfaceLP(pair) (#881)
- rate = rSupply.div(_totalSupply) (#883)
Reentrancy in DividendDistributor.deposit() (#476-496):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#483-488)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#493-495)
- totalDividends = totalDividends.add(amount) (#492)
Reentrancy in DividendDistributor.distributeDividend(address) (#532-549):
External calls:
- RWRD.transfer(shareholder,amount) (#540)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#541)
Reentrancy in GreenMoonZilla.rebase1000(uint256,int256,uint256) (#778-824):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#814-821)
State variables written after the call(s):
- beforeRebase = false (#822)
Reentrancy in GreenMoonZilla.rebase_new(uint256,int256) (#826-873):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#862-868)
State variables written after the call(s):
- beforeRebase = false (#871)
Reentrancy in DividendDistributor.setShare(address,uint256) (#454-474):
External calls:
- distributeDividend(shareholder) (#460)
- RWRD.transfer(shareholder,amount) (#540)
State variables written after the call(s):
- addShareholder(shareholder) (#464)
- shareholderIndexes[shareholder] = shareholders.length (#584)
- removeShareholder(shareholder) (#466)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#592-594)
- addShareholder(shareholder) (#464)
- shareholders.push(shareholder) (#585)
- removeShareholder(shareholder) (#466)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#589-591)
- shareholders.pop() (#595)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#469)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GreenMoonZilla._transferFrom(address,address,uint256) (#984-1067):
External calls:
- swapBack() (#1042)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1191-1197)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
- distributor.setShare(sender,balanceOf(sender)) (#1056)
- distributor.setShare(recipient,balanceOf(recipient)) (#1060)
- distributor.process(distributorGas) (#1063)
External calls sending eth:
- swapBack() (#1042)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#1065)
Reentrancy in GreenMoonZilla._transferFrom(address,address,uint256) (#984-1067):
External calls:
- swapBack() (#1042)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1191-1197)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
External calls sending eth:
- swapBack() (#1042)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#1112)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#1048-1051)
Reentrancy in GreenMoonZilla.constructor() (#876-906):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#878)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#905)
Reentrancy in GreenMoonZilla.rebase(uint256,int256) (#742-776):
External calls:
- pairContract.sync() (#771)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#773)
Reentrancy in GreenMoonZilla.swapBack() (#1176-1233):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1191-1197)
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#1209)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#1231)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#526-530) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#527-529)
GreenMoonZilla._transferFrom(address,address,uint256) (#984-1067) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#1023-1026)
Avoid relying on block.timestamp.

Additional information: link

AddressContract.isContract(address) (#59-69) uses assembly
- INLINE ASM (#65-67)
AddressContract._functionCallWithValue(address,bytes,uint256,string) (#161-188) uses assembly
- INLINE ASM (#180-183)
Do not use evm assembly.

Additional information: link

DividendDistributor.process(uint256) (#498-524) has costly operations inside a loop:
- currentIndex = 0 (#512)
DividendDistributor.distributeDividend(address) (#532-549) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#539)
DividendDistributor.process(uint256) (#498-524) has costly operations inside a loop:
- currentIndex ++ (#521)
Use a local variable to hold the loop computation result.

Additional information: link

AddressContract.functionCall(address,bytes) (#97-102) is never used and should be removed
AddressContract.functionCallWithValue(address,bytes,uint256) (#133-145) is never used and should be removed
AddressContract.sendValue(address,uint256) (#72-81) is never used and should be removed
SafeMathInt.abs(int256) (#226-229) is never used and should be removed
SafeMathInt.add(int256,int256) (#220-224) is never used and should be removed
SafeMathInt.div(int256,int256) (#208-212) is never used and should be removed
SafeMathInt.sub(int256,int256) (#214-218) is never used and should be removed
Remove unused functions.

Additional information: link

GreenMoonZilla.totalFee (#626-627) 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 (#4) 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 AddressContract.sendValue(address,uint256) (#72-81):
- (success) = recipient.call{value: amount}() (#76)
Low level call in AddressContract._functionCallWithValue(address,bytes,uint256,string) (#161-188):
- (success,returndata) = target.call{value: weiValue}(data) (#170-171)
Low level call in GreenMoonZilla.swapBack() (#1176-1233):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1210-1213)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1214-1217)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

DividendDistributor.distributeDividend(address) (#532-549) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#540)
GreenMoonZilla.multiTransfer(address,address[],uint256[]) (#1394-1429) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#1419-1421)
GreenMoonZilla.multiTransfer_fixed(address,address[],uint256) (#1431-1458) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#1448-1450)
Favor pull over push strategy for external calls.

Additional information: link

GreenMoonZilla.rebase_percentage(uint256) (#690-699) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#695-698)
GreenMoonZilla.rebase_percentage1000(uint256,uint256) (#701-718) performs a multiplication on the result of a division:
-newSupply = rebase1000(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)),coinAmount) (#712-715)
GreenMoonZilla.rebase_percentage1000(uint256,uint256) (#701-718) performs a multiplication on the result of a division:
-newSupply = rebase_new(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#708-710)
GreenMoonZilla.takeFee(address,uint256,bool) (#1094-1115) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#1104-1105)
GreenMoonZilla.takeFee(address,uint256,bool) (#1094-1115) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#1108)
GreenMoonZilla.swapBack() (#1176-1233) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#1181-1182)
GreenMoonZilla.setSwapBackSettings(bool,uint256) (#1291-1297) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1296)
GreenMoonZilla.setMaxWalletPercent_base1000(uint256) (#1378-1383) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1382)
GreenMoonZilla.setMaxTxPercent_base1000(uint256) (#1385-1390) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1389)
GreenMoonZilla.slitherConstructorVariables() (#601-1462) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(10) (#687)
GreenMoonZilla.slitherConstructorVariables() (#601-1462) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(50) (#688)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#532-549):
External calls:
- RWRD.transfer(shareholder,amount) (#540)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#542-544)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#545-547)
Reentrancy in DividendDistributor.process(uint256) (#498-524):
External calls:
- distributeDividend(shareholders[currentIndex]) (#516)
- RWRD.transfer(shareholder,amount) (#540)
State variables written after the call(s):
- currentIndex ++ (#521)
Reentrancy in DividendDistributor.setShare(address,uint256) (#454-474):
External calls:
- distributeDividend(shareholder) (#460)
- RWRD.transfer(shareholder,amount) (#540)
State variables written after the call(s):
- shares[shareholder].amount = amount (#470)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#471-473)
Apply the check-effects-interactions pattern.

Additional information: link

GreenMoonZilla.manage_blacklist(address[],bool).i (#1166) is a local variable never initialized
AddressContract.superFunctionCall(address,bytes).data1 (#88) 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

GreenMoonZilla.rebase1000(uint256,int256,uint256) (#778-824) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#814-821)
GreenMoonZilla.rebase_new(uint256,int256) (#826-873) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#862-868)
GreenMoonZilla.swapBack() (#1176-1233) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1223-1230)
Ensure that all the return values of the function calls are used.

Additional information: link

GreenMoonZilla.setMaster(address) (#1316-1318) should emit an event for:
- master = _master (#1317)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#445-452) should emit an event for:
- minPeriod = _minPeriod (#450)
- minDistribution = _minDistribution (#451)
GreenMoonZilla.set_sell_multiplier(uint256) (#1140-1142) should emit an event for:
- sellMultiplier = Multiplier (#1141)
GreenMoonZilla.tradingStatus(bool,uint256) (#1146-1152) should emit an event for:
- deadBlocks = _deadBlocks (#1150)
GreenMoonZilla.launchStatus(uint256) (#1154-1156) should emit an event for:
- launchedAt = _launchblock (#1155)
GreenMoonZilla.setFees(uint256,uint256,uint256,uint256,uint256) (#1263-1279) should emit an event for:
- liquidityFee = _liquidityFee (#1270)
- reflectionFee = _reflectionFee (#1271)
- marketingFee = _marketingFee (#1272)
- devFee = _devFee (#1273)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#1274-1276)
- feeDenominator = _feeDenominator (#1277)
GreenMoonZilla.setSwapBackSettings(bool,uint256) (#1291-1297) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1296)
GreenMoonZilla.setMaxWalletPercent_base1000(uint256) (#1378-1383) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1382)
GreenMoonZilla.setMaxTxPercent_base1000(uint256) (#1385-1390) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1389)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#302) lacks a zero-check on :
- owner = adr (#303)
GreenMoonZilla.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1282) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1286)
GreenMoonZilla.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1283) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1287)
GreenMoonZilla.setFeeReceivers(address,address,address)._devFeeReceiver (#1284) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#1288)
GreenMoonZilla.setMaster(address)._master (#1316) lacks a zero-check on :
- master = _master (#1317)
GreenMoonZilla.rescueBNB(address)._recipient (#1348) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#1349)
Check that the address is not zero.

Additional information: link

Parameter AddressContract.setStatus(bool)._status (#190) is not in mixedCase
Function IDEXRouter.WETH() (#324) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#445) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#445) is not in mixedCase
Variable DividendDistributor._token (#397) is not in mixedCase
Variable DividendDistributor.RWRD (#405) is not in mixedCase
Variable DividendDistributor.WBNB (#406) is not in mixedCase
Function GreenMoonZilla.rebase_percentage(uint256) (#690-699) is not in mixedCase
Parameter GreenMoonZilla.rebase_percentage(uint256)._percentage_base1000 (#690) is not in mixedCase
Function GreenMoonZilla.rebase_percentage1000(uint256,uint256) (#701-718) is not in mixedCase
Parameter GreenMoonZilla.rebase_percentage1000(uint256,uint256)._percentage_base1000 (#701) is not in mixedCase
Parameter GreenMoonZilla.setRebaseStatus(bool)._rebaseStatus (#731) is not in mixedCase
Parameter GreenMoonZilla.setLPStatus(bool)._LPStatus (#736) is not in mixedCase
Function GreenMoonZilla.rebase_new(uint256,int256) (#826-873) is not in mixedCase
Parameter GreenMoonZilla.setBeforeRebase(bool)._beforeRebase (#980) is not in mixedCase
Function GreenMoonZilla.clearStuckBalance_sender(uint256) (#1132-1138) is not in mixedCase
Function GreenMoonZilla.set_sell_multiplier(uint256) (#1140-1142) is not in mixedCase
Parameter GreenMoonZilla.set_sell_multiplier(uint256).Multiplier (#1140) is not in mixedCase
Parameter GreenMoonZilla.tradingStatus(bool,uint256)._status (#1146) is not in mixedCase
Parameter GreenMoonZilla.tradingStatus(bool,uint256)._deadBlocks (#1146) is not in mixedCase
Parameter GreenMoonZilla.launchStatus(uint256)._launchblock (#1154) is not in mixedCase
Function GreenMoonZilla.enable_blacklist(bool) (#1158-1160) is not in mixedCase
Parameter GreenMoonZilla.enable_blacklist(bool)._status (#1158) is not in mixedCase
Function GreenMoonZilla.manage_blacklist(address[],bool) (#1162-1169) is not in mixedCase
Parameter GreenMoonZilla.cooldownEnabled(bool,uint8)._status (#1171) is not in mixedCase
Parameter GreenMoonZilla.cooldownEnabled(bool,uint8)._interval (#1171) is not in mixedCase
Parameter GreenMoonZilla.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1264) is not in mixedCase
Parameter GreenMoonZilla.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1265) is not in mixedCase
Parameter GreenMoonZilla.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#1266) is not in mixedCase
Parameter GreenMoonZilla.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#1267) is not in mixedCase
Parameter GreenMoonZilla.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1268) is not in mixedCase
Parameter GreenMoonZilla.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1282) is not in mixedCase
Parameter GreenMoonZilla.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1283) is not in mixedCase
Parameter GreenMoonZilla.setFeeReceivers(address,address,address)._devFeeReceiver (#1284) is not in mixedCase
Parameter GreenMoonZilla.setSwapBackSettings(bool,uint256)._enabled (#1291) is not in mixedCase
Parameter GreenMoonZilla.setSwapBackSettings(bool,uint256)._percentage_base10000 (#1291) is not in mixedCase
Parameter GreenMoonZilla.setTargetLiquidity(uint256,uint256)._target (#1299) is not in mixedCase
Parameter GreenMoonZilla.setTargetLiquidity(uint256,uint256)._denominator (#1299) is not in mixedCase
Parameter GreenMoonZilla.setLP(address)._address (#1311) is not in mixedCase
Parameter GreenMoonZilla.setMaster(address)._master (#1316) is not in mixedCase
Parameter GreenMoonZilla.setDistributionCriteria(uint256,uint256)._minPeriod (#1328) is not in mixedCase
Parameter GreenMoonZilla.setDistributionCriteria(uint256,uint256)._minDistribution (#1328) is not in mixedCase
Parameter GreenMoonZilla.rescueBNB(address)._recipient (#1348) is not in mixedCase
Function GreenMoonZilla.setMaxWalletPercent_base1000(uint256) (#1378-1383) is not in mixedCase
Parameter GreenMoonZilla.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1378) is not in mixedCase
Function GreenMoonZilla.setMaxTxPercent_base1000(uint256) (#1385-1390) is not in mixedCase
Parameter GreenMoonZilla.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#1385) is not in mixedCase
Function GreenMoonZilla.multiTransfer_fixed(address,address[],uint256) (#1431-1458) is not in mixedCase
Variable GreenMoonZilla.WBNB (#605) is not in mixedCase
Variable GreenMoonZilla.DEAD (#606) is not in mixedCase
Variable GreenMoonZilla.ZERO (#607) is not in mixedCase
Constant GreenMoonZilla._name (#609) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GreenMoonZilla._symbol (#610) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GreenMoonZilla._decimals (#611) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GreenMoonZilla._rBalance (#614) is not in mixedCase
Variable GreenMoonZilla._allowances (#615) is not in mixedCase
Variable GreenMoonZilla._isBot (#616) is not in mixedCase
Variable GreenMoonZilla.LPStatus (#651) is not in mixedCase
Variable GreenMoonZilla.rebase_count (#678) is not in mixedCase
Variable GreenMoonZilla._totalSupply (#680) is not in mixedCase
Constant GreenMoonZilla.rSupply (#683-684) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GreenMoonZilla._maxTxAmount (#687) is not in mixedCase
Variable GreenMoonZilla._maxWalletToken (#688) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

GreenMoonZilla.setDistributorSettings(uint256) (#1335-1338) uses literals with too many digits:
- require(bool)(gas < 900000) (#1336)
GreenMoonZilla.slitherConstructorVariables() (#601-1462) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#606)
GreenMoonZilla.slitherConstructorVariables() (#601-1462) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#607)
GreenMoonZilla.slitherConstructorVariables() (#601-1462) uses literals with too many digits:
- distributorGas = 500000 (#653)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#198) is never used in SafeMathInt (#196-230)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#406) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#419) should be constant
GreenMoonZilla.DEAD (#606) should be constant
GreenMoonZilla.WBNB (#605) should be constant
GreenMoonZilla.ZERO (#607) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

superFunctionCall(address,bytes) should be declared external:
- AddressContract.superFunctionCall(address,bytes) (#83-94)
superFunctionCallWithValue(address,bytes,uint256) should be declared external:
- AddressContract.superFunctionCallWithValue(address,bytes,uint256) (#113-130)
setStatus(bool) should be declared external:
- AddressContract.setStatus(bool) (#190-193)
authorize(address) should be declared external:
- Auth.authorize(address) (#286-288)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#290-292)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#302-306)
rebase_percentage(uint256) should be declared external:
- GreenMoonZilla.rebase_percentage(uint256) (#690-699)
rebase_percentage1000(uint256,uint256) should be declared external:
- GreenMoonZilla.rebase_percentage1000(uint256,uint256) (#701-718)
setRebaseStatus(bool) should be declared external:
- GreenMoonZilla.setRebaseStatus(bool) (#731-734)
setLPStatus(bool) should be declared external:
- GreenMoonZilla.setLPStatus(bool) (#736-739)
setBeforeRebase(bool) should be declared external:
- GreenMoonZilla.setBeforeRebase(bool) (#980-982)
tradingStatus(bool,uint256) should be declared external:
- GreenMoonZilla.tradingStatus(bool,uint256) (#1146-1152)
launchStatus(uint256) should be declared external:
- GreenMoonZilla.launchStatus(uint256) (#1154-1156)
enable_blacklist(bool) should be declared external:
- GreenMoonZilla.enable_blacklist(bool) (#1158-1160)
manage_blacklist(address[],bool) should be declared external:
- GreenMoonZilla.manage_blacklist(address[],bool) (#1162-1169)
cooldownEnabled(bool,uint8) should be declared external:
- GreenMoonZilla.cooldownEnabled(bool,uint8) (#1171-1174)
rescueToken(address,uint256) should be declared external:
- GreenMoonZilla.rescueToken(address,uint256) (#1340-1346)
rescueBNB(address) should be declared external:
- GreenMoonZilla.rescueBNB(address) (#1348-1350)
isOverLiquified(uint256,uint256) should be declared external:
- GreenMoonZilla.isOverLiquified(uint256,uint256) (#1362-1368)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 15% buy tax and 27% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain


Telegram account link seems to be invalid


Twitter account seems to be suspended

Additional information: link


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


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

Additional information: link


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

Additional information: link


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


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for GrmZilla