Mortal Kombat is back and better than ever in the next evolution of the iconic franchise. The all new Custom Character Variations give you unprecedented control to customize the fighters and make them your own. The new graphics engine showcasing every skull-shattering, eye-popping moment, brings you so close to the fight you can feel it. And featuring a roster of new and returning Klassic Fighters, Mortal Kombat’s best in class cinematic story mode continues the epic saga over 25 years in the making.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
MORTALKOMBAT11.swapBack() (#1041-1098) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MORTALKOMBAT11._transferFrom(address,address,uint256) (#845-928):
External calls:
- swapBack() (#903)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1056-1062)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
External calls sending eth:
- swapBack() (#903)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#907)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#913)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#909-912)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#972)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#390-407) ignores return value by RWRD.transfer(shareholder,amount) (#398)
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.
MORTALKOMBAT11.beforeRebase (#530) is written in both
beforeRebase = false (#681)
beforeRebase = false (#682)
MORTALKOMBAT11.swapBack().tmpSuccess (#1075) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
MORTALKOMBAT11.swapBack().tmpSuccess (#1075) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
tmpSuccess = false (#1085)
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.
MORTALKOMBAT11.rebase_percentage(uint256) (#547-556) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#552-555)
MORTALKOMBAT11.rebase_percentage1000(uint256,uint256) (#558-575) performs a multiplication on the result of a division:
-newSupply = rebase1000(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)),coinAmount) (#569-572)
MORTALKOMBAT11.rebase_percentage1000(uint256,uint256) (#558-575) performs a multiplication on the result of a division:
-newSupply = rebase_new(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#565-567)
MORTALKOMBAT11.takeFee(address,uint256,bool) (#955-976) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#965-966)
MORTALKOMBAT11.takeFee(address,uint256,bool) (#955-976) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#969)
MORTALKOMBAT11.swapBack() (#1041-1098) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#1046-1047)
MORTALKOMBAT11.setSwapBackSettings(bool,uint256) (#1156-1162) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1161)
MORTALKOMBAT11.setMaxWalletPercent_base1000(uint256) (#1243-1248) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1247)
MORTALKOMBAT11.setMaxTxPercent_base1000(uint256) (#1250-1255) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1254)
MORTALKOMBAT11.slitherConstructorVariables() (#457-1327) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(1000) (#544)
MORTALKOMBAT11.slitherConstructorVariables() (#457-1327) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(500) (#545)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#390-407):
External calls:
- RWRD.transfer(shareholder,amount) (#398)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#400-402)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#403-405)
Reentrancy in DividendDistributor.process(uint256) (#356-382):
External calls:
- distributeDividend(shareholders[currentIndex]) (#374)
- RWRD.transfer(shareholder,amount) (#398)
State variables written after the call(s):
- currentIndex ++ (#379)
Reentrancy in DividendDistributor.setShare(address,uint256) (#312-332):
External calls:
- distributeDividend(shareholder) (#318)
- RWRD.transfer(shareholder,amount) (#398)
State variables written after the call(s):
- shares[shareholder].amount = amount (#328)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#329-331)
Apply the check-effects-interactions pattern.
Additional information: link
MORTALKOMBAT11.manage_blacklist(address[],bool).i (#1031) 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
MORTALKOMBAT11.rebase1000(uint256,int256,uint256) (#635-684) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#673-680)
MORTALKOMBAT11.rebase_new(uint256,int256) (#686-733) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#722-728)
MORTALKOMBAT11.swapBack() (#1041-1098) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
Ensure that all the return values of the function calls are used.
Additional information: link
MORTALKOMBAT11.setMaster(address) (#1181-1183) should emit an event for:
- master = _master (#1182)
Emit an event for critical parameter changes.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#303-310) should emit an event for:
- minPeriod = _minPeriod (#308)
- minDistribution = _minDistribution (#309)
MORTALKOMBAT11.set_sell_multiplier(uint256) (#1001-1003) should emit an event for:
- sellMultiplier = Multiplier (#1002)
MORTALKOMBAT11.set_swap_Multiplier(uint256) (#1005-1007) should emit an event for:
- swapMultiplier = Multiplier (#1006)
MORTALKOMBAT11.tradingStatus(bool,uint256) (#1011-1017) should emit an event for:
- deadBlocks = _deadBlocks (#1015)
MORTALKOMBAT11.launchStatus(uint256) (#1019-1021) should emit an event for:
- launchedAt = _launchblock (#1020)
MORTALKOMBAT11.setFees(uint256,uint256,uint256,uint256,uint256) (#1128-1144) should emit an event for:
- liquidityFee = _liquidityFee (#1135)
- reflectionFee = _reflectionFee (#1136)
- marketingFee = _marketingFee (#1137)
- devFee = _devFee (#1138)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#1139-1141)
- feeDenominator = _feeDenominator (#1142)
MORTALKOMBAT11.setSwapBackSettings(bool,uint256) (#1156-1162) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1161)
MORTALKOMBAT11.setMaxWalletPercent_base1000(uint256) (#1243-1248) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1247)
MORTALKOMBAT11.setMaxTxPercent_base1000(uint256) (#1250-1255) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1254)
Emit an event for critical parameter changes.
Additional information: link
Auth.transferOwnership(address).adr (#160) lacks a zero-check on :
- owner = adr (#161)
MORTALKOMBAT11.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1147) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1151)
MORTALKOMBAT11.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1148) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1152)
MORTALKOMBAT11.setFeeReceivers(address,address,address)._devFeeReceiver (#1149) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#1153)
MORTALKOMBAT11.setMaster(address)._master (#1181) lacks a zero-check on :
- master = _master (#1182)
MORTALKOMBAT11.rescueBNB(address)._recipient (#1213) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#1214)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#390-407) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#398)
MORTALKOMBAT11.multiTransfer(address,address[],uint256[]) (#1259-1294) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#1284-1286)
MORTALKOMBAT11.multiTransfer_fixed(address,address[],uint256) (#1296-1323) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#1313-1315)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in MORTALKOMBAT11.constructor() (#736-767):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#738)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#739)
- _rBalance[msg.sender] = rSupply (#765)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#742)
- autoLiquidityReceiver = msg.sender (#761)
- devFeeReceiver = 0xdC10C2D5Da9b39Ee0E3172eb2E416c6345358DE1 (#763)
- distributor = new DividendDistributor(address(router)) (#745)
- isDividendExempt[pair] = true (#757)
- isDividendExempt[address(this)] = true (#758)
- isDividendExempt[DEAD] = true (#759)
- isFeeExempt[msg.sender] = true (#747)
- isTimelockExempt[msg.sender] = true (#753)
- isTimelockExempt[DEAD] = true (#754)
- isTimelockExempt[address(this)] = true (#755)
- isTxLimitExempt[msg.sender] = true (#748)
- isTxLimitExempt[pair] = true (#750)
- isTxLimitExempt[address(this)] = true (#751)
- marketingFeeReceiver = 0xDc0CB9273b0BFB2E5FFdD8b89594D1543820cbB1 (#762)
- pairContract = InterfaceLP(pair) (#741)
- rate = rSupply.div(_totalSupply) (#743)
Reentrancy in DividendDistributor.deposit() (#334-354):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#341-346)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#351-353)
- totalDividends = totalDividends.add(amount) (#350)
Reentrancy in DividendDistributor.distributeDividend(address) (#390-407):
External calls:
- RWRD.transfer(shareholder,amount) (#398)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#399)
Reentrancy in MORTALKOMBAT11.rebase1000(uint256,int256,uint256) (#635-684):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#673-680)
State variables written after the call(s):
- beforeRebase = false (#681)
- beforeRebase = false (#682)
Reentrancy in MORTALKOMBAT11.rebase_new(uint256,int256) (#686-733):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#722-728)
State variables written after the call(s):
- beforeRebase = false (#731)
Reentrancy in DividendDistributor.setShare(address,uint256) (#312-332):
External calls:
- distributeDividend(shareholder) (#318)
- RWRD.transfer(shareholder,amount) (#398)
State variables written after the call(s):
- addShareholder(shareholder) (#322)
- shareholderIndexes[shareholder] = shareholders.length (#442)
- removeShareholder(shareholder) (#324)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#450-452)
- addShareholder(shareholder) (#322)
- shareholders.push(shareholder) (#443)
- removeShareholder(shareholder) (#324)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#447-449)
- shareholders.pop() (#453)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#327)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MORTALKOMBAT11._transferFrom(address,address,uint256) (#845-928):
External calls:
- swapBack() (#903)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1056-1062)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
- distributor.setShare(sender,balanceOf(sender)) (#917)
- distributor.setShare(recipient,balanceOf(recipient)) (#921)
- distributor.process(distributorGas) (#924)
External calls sending eth:
- swapBack() (#903)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#926)
Reentrancy in MORTALKOMBAT11._transferFrom(address,address,uint256) (#845-928):
External calls:
- swapBack() (#903)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1056-1062)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
External calls sending eth:
- swapBack() (#903)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#973)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#909-912)
Reentrancy in MORTALKOMBAT11.constructor() (#736-767):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#738)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#766)
Reentrancy in MORTALKOMBAT11.rebase(uint256,int256) (#599-633):
External calls:
- pairContract.sync() (#628)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#630)
Reentrancy in MORTALKOMBAT11.swapBack() (#1041-1098):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1056-1062)
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#1074)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1088-1095)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#1096)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#384-388) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#385-387)
MORTALKOMBAT11._transferFrom(address,address,uint256) (#845-928) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#884-887)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#356-382) has costly operations inside a loop:
- currentIndex = 0 (#370)
DividendDistributor.distributeDividend(address) (#390-407) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#397)
DividendDistributor.process(uint256) (#356-382) has costly operations inside a loop:
- currentIndex ++ (#379)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMathInt.abs(int256) (#84-87) is never used and should be removed
SafeMathInt.add(int256,int256) (#78-82) is never used and should be removed
SafeMathInt.div(int256,int256) (#66-70) is never used and should be removed
SafeMathInt.sub(int256,int256) (#72-76) is never used and should be removed
Remove unused functions.
Additional information: link
MORTALKOMBAT11.totalFee (#482-483) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
MORTALKOMBAT11.swapThreshold (#534) is set pre-construction with a non-constant function or state variable:
- rSupply.div(swapMultiplier)
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 (#3) 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 MORTALKOMBAT11.swapBack() (#1041-1098):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1075-1078)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1079-1082)
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() (#182) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#303) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#303) is not in mixedCase
Variable DividendDistributor._token (#255) is not in mixedCase
Variable DividendDistributor.RWRD (#263) is not in mixedCase
Variable DividendDistributor.WBNB (#264) is not in mixedCase
Function MORTALKOMBAT11.rebase_percentage(uint256) (#547-556) is not in mixedCase
Parameter MORTALKOMBAT11.rebase_percentage(uint256)._percentage_base1000 (#547) is not in mixedCase
Function MORTALKOMBAT11.rebase_percentage1000(uint256,uint256) (#558-575) is not in mixedCase
Parameter MORTALKOMBAT11.rebase_percentage1000(uint256,uint256)._percentage_base1000 (#558) is not in mixedCase
Parameter MORTALKOMBAT11.setRebaseStatus(bool)._rebaseStatus (#588) is not in mixedCase
Parameter MORTALKOMBAT11.setLPStatus(bool)._LPStatus (#593) is not in mixedCase
Function MORTALKOMBAT11.rebase_new(uint256,int256) (#686-733) is not in mixedCase
Parameter MORTALKOMBAT11.setBeforeRebase(bool)._beforeRebase (#841) is not in mixedCase
Function MORTALKOMBAT11.clearStuckBalance_sender(uint256) (#993-999) is not in mixedCase
Function MORTALKOMBAT11.set_sell_multiplier(uint256) (#1001-1003) is not in mixedCase
Parameter MORTALKOMBAT11.set_sell_multiplier(uint256).Multiplier (#1001) is not in mixedCase
Function MORTALKOMBAT11.set_swap_Multiplier(uint256) (#1005-1007) is not in mixedCase
Parameter MORTALKOMBAT11.set_swap_Multiplier(uint256).Multiplier (#1005) is not in mixedCase
Parameter MORTALKOMBAT11.tradingStatus(bool,uint256)._status (#1011) is not in mixedCase
Parameter MORTALKOMBAT11.tradingStatus(bool,uint256)._deadBlocks (#1011) is not in mixedCase
Parameter MORTALKOMBAT11.launchStatus(uint256)._launchblock (#1019) is not in mixedCase
Function MORTALKOMBAT11.enable_blacklist(bool) (#1023-1025) is not in mixedCase
Parameter MORTALKOMBAT11.enable_blacklist(bool)._status (#1023) is not in mixedCase
Function MORTALKOMBAT11.manage_blacklist(address[],bool) (#1027-1034) is not in mixedCase
Parameter MORTALKOMBAT11.cooldownEnabled(bool,uint8)._status (#1036) is not in mixedCase
Parameter MORTALKOMBAT11.cooldownEnabled(bool,uint8)._interval (#1036) is not in mixedCase
Parameter MORTALKOMBAT11.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1129) is not in mixedCase
Parameter MORTALKOMBAT11.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1130) is not in mixedCase
Parameter MORTALKOMBAT11.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#1131) is not in mixedCase
Parameter MORTALKOMBAT11.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#1132) is not in mixedCase
Parameter MORTALKOMBAT11.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1133) is not in mixedCase
Parameter MORTALKOMBAT11.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1147) is not in mixedCase
Parameter MORTALKOMBAT11.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1148) is not in mixedCase
Parameter MORTALKOMBAT11.setFeeReceivers(address,address,address)._devFeeReceiver (#1149) is not in mixedCase
Parameter MORTALKOMBAT11.setSwapBackSettings(bool,uint256)._enabled (#1156) is not in mixedCase
Parameter MORTALKOMBAT11.setSwapBackSettings(bool,uint256)._percentage_base10000 (#1156) is not in mixedCase
Parameter MORTALKOMBAT11.setTargetLiquidity(uint256,uint256)._target (#1164) is not in mixedCase
Parameter MORTALKOMBAT11.setTargetLiquidity(uint256,uint256)._denominator (#1164) is not in mixedCase
Parameter MORTALKOMBAT11.setLP(address)._address (#1176) is not in mixedCase
Parameter MORTALKOMBAT11.setMaster(address)._master (#1181) is not in mixedCase
Parameter MORTALKOMBAT11.setDistributionCriteria(uint256,uint256)._minPeriod (#1193) is not in mixedCase
Parameter MORTALKOMBAT11.setDistributionCriteria(uint256,uint256)._minDistribution (#1193) is not in mixedCase
Parameter MORTALKOMBAT11.rescueBNB(address)._recipient (#1213) is not in mixedCase
Function MORTALKOMBAT11.setMaxWalletPercent_base1000(uint256) (#1243-1248) is not in mixedCase
Parameter MORTALKOMBAT11.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1243) is not in mixedCase
Function MORTALKOMBAT11.setMaxTxPercent_base1000(uint256) (#1250-1255) is not in mixedCase
Parameter MORTALKOMBAT11.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#1250) is not in mixedCase
Function MORTALKOMBAT11.multiTransfer_fixed(address,address[],uint256) (#1296-1323) is not in mixedCase
Variable MORTALKOMBAT11.WBNB (#461) is not in mixedCase
Variable MORTALKOMBAT11.DEAD (#462) is not in mixedCase
Variable MORTALKOMBAT11.ZERO (#463) is not in mixedCase
Constant MORTALKOMBAT11._name (#465) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MORTALKOMBAT11._symbol (#466) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MORTALKOMBAT11._decimals (#467) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MORTALKOMBAT11._rBalance (#470) is not in mixedCase
Variable MORTALKOMBAT11._allowances (#471) is not in mixedCase
Variable MORTALKOMBAT11._isBot (#472) is not in mixedCase
Variable MORTALKOMBAT11.LPStatus (#508) is not in mixedCase
Variable MORTALKOMBAT11.rebase_count (#535) is not in mixedCase
Variable MORTALKOMBAT11._totalSupply (#537) is not in mixedCase
Constant MORTALKOMBAT11.rSupply (#540-541) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MORTALKOMBAT11._maxTxAmount (#544) is not in mixedCase
Variable MORTALKOMBAT11._maxWalletToken (#545) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#187) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#188)
Prevent variables from having similar names.
Additional information: link
MORTALKOMBAT11.setDistributorSettings(uint256) (#1200-1203) uses literals with too many digits:
- require(bool)(gas < 900000) (#1201)
MORTALKOMBAT11.slitherConstructorVariables() (#457-1327) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#462)
MORTALKOMBAT11.slitherConstructorVariables() (#457-1327) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#463)
MORTALKOMBAT11.slitherConstructorVariables() (#457-1327) uses literals with too many digits:
- distributorGas = 500000 (#510)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#56) is never used in SafeMathInt (#54-88)
Remove unused state variables.
Additional information: link
DividendDistributor.WBNB (#264) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#277) should be constant
MORTALKOMBAT11.DEAD (#462) should be constant
MORTALKOMBAT11.WBNB (#461) should be constant
MORTALKOMBAT11.ZERO (#463) should be constant
MORTALKOMBAT11.shouldDistribute (#505) 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) (#144-146)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#148-150)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#160-164)
rebase_percentage(uint256) should be declared external:
- MORTALKOMBAT11.rebase_percentage(uint256) (#547-556)
rebase_percentage1000(uint256,uint256) should be declared external:
- MORTALKOMBAT11.rebase_percentage1000(uint256,uint256) (#558-575)
setRebaseStatus(bool) should be declared external:
- MORTALKOMBAT11.setRebaseStatus(bool) (#588-591)
setLPStatus(bool) should be declared external:
- MORTALKOMBAT11.setLPStatus(bool) (#593-596)
setBeforeRebase(bool) should be declared external:
- MORTALKOMBAT11.setBeforeRebase(bool) (#841-843)
tradingStatus(bool,uint256) should be declared external:
- MORTALKOMBAT11.tradingStatus(bool,uint256) (#1011-1017)
launchStatus(uint256) should be declared external:
- MORTALKOMBAT11.launchStatus(uint256) (#1019-1021)
enable_blacklist(bool) should be declared external:
- MORTALKOMBAT11.enable_blacklist(bool) (#1023-1025)
manage_blacklist(address[],bool) should be declared external:
- MORTALKOMBAT11.manage_blacklist(address[],bool) (#1027-1034)
cooldownEnabled(bool,uint8) should be declared external:
- MORTALKOMBAT11.cooldownEnabled(bool,uint8) (#1036-1039)
rescueToken(address,uint256) should be declared external:
- MORTALKOMBAT11.rescueToken(address,uint256) (#1205-1211)
rescueBNB(address) should be declared external:
- MORTALKOMBAT11.rescueBNB(address) (#1213-1215)
isOverLiquified(uint256,uint256) should be declared external:
- MORTALKOMBAT11.isOverLiquified(uint256,uint256) (#1227-1233)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 10% buy tax and 15% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
Average 30d PancakeSwap liquidity is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
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
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / 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 CoinGecko listing / rank
Token has relatively low CoinMarketCap rank
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account