MetaKittyLand Token Logo

MKLand [MetaKittyLand] Token

ALERT: rug pull scam

About MKLand

Listings

Not Found
Token 2 years

https://metakittyland.com

Social

Laser Scorebeta Last Audit: 18 February 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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

MetaKittyLand.swapAndLiquify(uint256) (#1598-1641) sends eth to arbitrary user
Dangerous calls:
- devWallet.transfer(devAmt) (#1639)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MetaKittyLand._transfer(address,address,uint256) (#1535-1596):
External calls:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1423)
- _rOwned[address(this)] = _rOwned[address(this)].add(rWallet) (#1431)
- _rOwned[fixedBurnAddress] = _rOwned[fixedBurnAddress].add(rburn) (#1443)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1759)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1728)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1791)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1761)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1824)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _rTotal = _rTotal.sub(rFee) (#1344)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1425)
- _tOwned[address(this)] = _tOwned[address(this)].add(tWallet) (#1433)
- _tOwned[fixedBurnAddress] = _tOwned[fixedBurnAddress].add(tburn) (#1445-1447)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1821)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1790)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1760)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1823)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _tTotal = _tTotal.sub(tburn) (#1438)
Apply the check-effects-interactions pattern.

Additional information: link

MetaKittyLand.withdrawForeignToken(address,address,uint256) (#1836-1839) ignores return value by foreignToken.transfer(recipient,amount) (#1838)
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.


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.

MetaKittyLand.swapAndLiquify(uint256) (#1598-1641) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1615-1616)
-bnbToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity) (#1617-1618)
MetaKittyLand.swapAndLiquify(uint256) (#1598-1641) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1615-1616)
-marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing) (#1626-1628)
MetaKittyLand.swapAndLiquify(uint256) (#1598-1641) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1615-1616)
-unitBalance * 2 * (buyFee.dev + sellFee.dev) > address(this).balance (#1629-1632)
MetaKittyLand.swapAndLiquify(uint256) (#1598-1641) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity)) (#1615-1616)
-devAmt = unitBalance * 2 * (buyFee.dev + sellFee.dev) (#1629-1632)
Consider ordering multiplication before division.

Additional information: link

MetaKittyLand.addLiquidity(uint256,uint256) (#1661-1674) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
Ensure that all the return values of the function calls are used.

Additional information: link

MetaKittyLand.allowance(address,address).owner (#1061) shadows:
- Ownable.owner() (#483-485) (function)
MetaKittyLand._approve(address,address,uint256).owner (#1524) shadows:
- Ownable.owner() (#483-485) (function)
Rename the local variables that shadow another component.

Additional information: link

MetaKittyLand.setNumTokensSellToAddToLiquidity(uint256) (#1320-1322) should emit an event for:
- numTokensSellToAddToLiquidity = numTokens (#1321)
MetaKittyLand.setMaxTxPercent(uint256) (#1324-1326) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 3) (#1325)
MetaKittyLand._setMaxWalletSizePercent(uint256) (#1328-1333) should emit an event for:
- _maxWalletSize = _tTotal.mul(maxWalletSize).div(10 ** 3) (#1332)
Emit an event for critical parameter changes.

Additional information: link

MetaKittyLand.updateMarketingWallet(address).newAddress (#1216) lacks a zero-check on :
- marketingAddress = newAddress (#1217)
MetaKittyLand.updateDevWallet(address).newAddress (#1220) lacks a zero-check on :
- devWallet = newAddress (#1221)
MetaKittyLand.updateLiquidityWallet(address).newAddress (#1224) lacks a zero-check on :
- liquidityReceiver = newAddress (#1225)
MetaKittyLand.withdrawStuckETH(address,uint256).recipient (#1832) lacks a zero-check on :
- address(recipient).transfer(amount) (#1833)
Check that the address is not zero.

Additional information: link

MetaKittyLand._decimals (#932) should be constant
MetaKittyLand._name (#930) should be constant
MetaKittyLand._symbol (#931) should be constant
MetaKittyLand.burnDeductSupply (#928) should be constant
MetaKittyLand.fixedBurnAddress (#925-926) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Reentrancy in MetaKittyLand._transfer(address,address,uint256) (#1535-1596):
External calls:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _burnFee = 0 (#1487)
- _burnFee = sellFee.burn (#1511)
- _burnFee = buyFee.burn (#1503)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _devFee = 0 (#1488)
- _devFee = sellFee.dev (#1512)
- _devFee = buyFee.dev (#1504)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _liquidityFee = sellFee.liquidity (#1509)
- _liquidityFee = buyFee.liquidity (#1501)
- _liquidityFee = 0 (#1485)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _marketingFee = 0 (#1486)
- _marketingFee = sellFee.marketing (#1510)
- _marketingFee = buyFee.marketing (#1502)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1345)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _taxFee = sellFee.tax (#1508)
- _taxFee = buyFee.tax (#1500)
- _taxFee = 0 (#1484)
Reentrancy in MetaKittyLand.constructor() (#989-1029):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1008-1009)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#1015)
- _isExcludedFromFee[address(this)] = true (#1016)
- _isExcludedFromFee[marketingAddress] = true (#1017)
- _isExcludedFromFee[devWallet] = true (#1018)
- _isExcludedFromFee[liquidityReceiver] = true (#1019)
- _isExcludedFromLimit[marketingAddress] = true (#1022)
- _isExcludedFromLimit[marketingAddress] = true (#1023)
- _isExcludedFromLimit[devWallet] = true (#1024)
- _isExcludedFromLimit[owner()] = true (#1025)
- _isExcludedFromLimit[address(this)] = true (#1026)
- uniswapV2Router = _uniswapV2Router (#1012)
Reentrancy in MetaKittyLand.swapAndLiquify(uint256) (#1598-1641):
External calls:
- swapTokensForEth(toSwap) (#1612)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1622)
- _allowances[owner][spender] = amount (#1531)
Reentrancy in MetaKittyLand.transferFrom(address,address,uint256) (#1079-1094):
External calls:
- _transfer(sender,recipient,amount) (#1084)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1084)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1085-1092)
- _allowances[owner][spender] = amount (#1531)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaKittyLand._transfer(address,address,uint256) (#1535-1596):
External calls:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
Event emitted after the call(s):
- Transfer(address(this),address(0),tburn) (#1439)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1734)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1797)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1766)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1829)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
Reentrancy in MetaKittyLand.constructor() (#989-1029):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1008-1009)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#1028)
Reentrancy in MetaKittyLand.swapAndLiquify(uint256) (#1598-1641):
External calls:
- swapTokensForEth(toSwap) (#1612)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1622)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1532)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1622)
Reentrancy in MetaKittyLand.transferFrom(address,address,uint256) (#1079-1094):
External calls:
- _transfer(sender,recipient,amount) (#1084)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1652-1658)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1084)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1532)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1085-1092)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#533-542) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until a later date) (#538)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#292-303) uses assembly
- INLINE ASM (#299-301)
Address._functionCallWithValue(address,bytes,uint256,string) (#418-446) uses assembly
- INLINE ASM (#438-441)
Do not use evm assembly.

Additional information: link

MetaKittyLand.includeInReward(address) (#1237-1248) has costly operations inside a loop:
- _excluded.pop() (#1244)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#418-446) is never used and should be removed
Address.functionCall(address,bytes) (#353-358) is never used and should be removed
Address.functionCall(address,bytes,string) (#366-372) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#385-397) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#405-416) is never used and should be removed
Address.isContract(address) (#292-303) is never used and should be removed
Address.sendValue(address,uint256) (#321-333) is never used and should be removed
Context._msgData() (#265-268) is never used and should be removed
SafeMath.mod(uint256,uint256) (#234-236) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#250-257) is never used and should be removed
Remove unused functions.

Additional information: link

MetaKittyLand._rTotal (#916) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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.8.10 (#7) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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) (#321-333):
- (success) = recipient.call{value: amount}() (#328)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#418-446):
- (success,returndata) = target.call{value: weiValue}(data) (#427-429)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#612) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#614) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#645) is not in mixedCase
Function IUniswapV2Router01.WETH() (#693) is not in mixedCase
Event MetaKittyLandbotAddedToBlacklist(address) (#972) is not in CapWords
Event MetaKittyLandbotRemovedFromBlacklist(address) (#973) is not in CapWords
Function MetaKittyLand.AcceptMultipleAddress(address[],bool) (#1137-1142) is not in mixedCase
Parameter MetaKittyLand.AcceptMultipleAddress(address[],bool).Accepted (#1137) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_tax (#1295) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_liquidity (#1296) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_marketing (#1297) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_dev (#1298) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).buy_burn (#1299) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_tax (#1300) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_liquidity (#1301) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_marketing (#1302) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_dev (#1303) is not in mixedCase
Parameter MetaKittyLand.setBothFees(uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16,uint16).sell_burn (#1304) is not in mixedCase
Function MetaKittyLand._setMaxWalletSizePercent(uint256) (#1328-1333) is not in mixedCase
Parameter MetaKittyLand.setSwapAndLiquifyEnabled(bool)._enabled (#1335) is not in mixedCase
Parameter MetaKittyLand.calculateTaxFee(uint256)._amount (#1451) is not in mixedCase
Parameter MetaKittyLand.calculateLiquidityFee(uint256)._amount (#1455) is not in mixedCase
Parameter MetaKittyLand.calculateMarketingFee(uint256)._amount (#1463) is not in mixedCase
Parameter MetaKittyLand.calculateburnFee(uint256)._amount (#1471) is not in mixedCase
Parameter MetaKittyLand.calculatedevFee(uint256)._amount (#1479) is not in mixedCase
Function MetaKittyLand.AcceptforTrading(address,bool) (#1495-1497) is not in mixedCase
Parameter MetaKittyLand.AcceptforTrading(address,bool).Accepted (#1495) is not in mixedCase
Variable MetaKittyLand.TradingIsOff (#965) is not in mixedCase
Variable MetaKittyLand.AcceptedOnTrading (#966) is not in mixedCase
Variable MetaKittyLand._maxTxAmount (#968) is not in mixedCase
Variable MetaKittyLand._maxWalletSize (#970) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#266)" inContext (#260-269)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in MetaKittyLand._transfer(address,address,uint256) (#1535-1596):
External calls:
- swapAndLiquify(contractTokenBalance) (#1564)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1564)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _burnFee = 0 (#1487)
- _burnFee = sellFee.burn (#1511)
- _burnFee = buyFee.burn (#1503)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _devFee = 0 (#1488)
- _devFee = sellFee.dev (#1512)
- _devFee = buyFee.dev (#1504)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _liquidityFee = sellFee.liquidity (#1509)
- _liquidityFee = buyFee.liquidity (#1501)
- _liquidityFee = 0 (#1485)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _marketingFee = 0 (#1486)
- _marketingFee = sellFee.marketing (#1510)
- _marketingFee = buyFee.marketing (#1502)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1423)
- _rOwned[address(this)] = _rOwned[address(this)].add(rWallet) (#1431)
- _rOwned[fixedBurnAddress] = _rOwned[fixedBurnAddress].add(rburn) (#1443)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1759)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1728)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1729)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1822)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1791)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1761)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1824)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _rTotal = _rTotal.sub(rFee) (#1344)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1345)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1425)
- _tOwned[address(this)] = _tOwned[address(this)].add(tWallet) (#1433)
- _tOwned[fixedBurnAddress] = _tOwned[fixedBurnAddress].add(tburn) (#1445-1447)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1821)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1790)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1760)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1823)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _tTotal = _tTotal.sub(tburn) (#1438)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- _taxFee = sellFee.tax (#1508)
- _taxFee = buyFee.tax (#1500)
- _taxFee = 0 (#1484)
Event emitted after the call(s):
- Transfer(address(this),address(0),tburn) (#1439)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1734)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1766)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1797)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
- Transfer(sender,recipient,tTransferAmount) (#1829)
- _tokenTransfer(from,to,amount,takeFee) (#1595)
Reentrancy in MetaKittyLand.transferFrom(address,address,uint256) (#1079-1094):
External calls:
- _transfer(sender,recipient,amount) (#1084)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1084)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(liquidityReceiver),block.timestamp) (#1666-1673)
- address(marketingAddress).transfer(marketingAmt) (#1635)
- devWallet.transfer(devAmt) (#1639)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1085-1092)
- _allowances[owner][spender] = amount (#1531)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1532)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1085-1092)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#698) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#699)
Variable MetaKittyLand._transferToExcluded(address,address,uint256).rTransferAmount (#1750) is too similar to MetaKittyLand._transferFromExcluded(address,address,uint256).tTransferAmount (#1775)
Variable MetaKittyLand._transferStandard(address,address,uint256).rTransferAmount (#1719) is too similar to MetaKittyLand._getTValues(uint256).tTransferAmount (#1364)
Variable MetaKittyLand.reflectionFromToken(uint256,bool).rTransferAmount (#1186) is too similar to MetaKittyLand._transferStandard(address,address,uint256).tTransferAmount (#1713)
Variable MetaKittyLand.reflectionFromToken(uint256,bool).rTransferAmount (#1186) is too similar to MetaKittyLand._transferToExcluded(address,address,uint256).tTransferAmount (#1744)
Variable MetaKittyLand._transferFromExcluded(address,address,uint256).rTransferAmount (#1781) is too similar to MetaKittyLand._transferToExcluded(address,address,uint256).tTransferAmount (#1744)
Variable MetaKittyLand._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1392-1396) is too similar to MetaKittyLand._transferBothExcluded(address,address,uint256).tTransferAmount (#1806)
Variable MetaKittyLand._transferToExcluded(address,address,uint256).rTransferAmount (#1750) is too similar to MetaKittyLand._transferStandard(address,address,uint256).tTransferAmount (#1713)
Variable MetaKittyLand._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1392-1396) is too similar to MetaKittyLand._transferFromExcluded(address,address,uint256).tTransferAmount (#1775)
Variable MetaKittyLand._transferStandard(address,address,uint256).rTransferAmount (#1719) is too similar to MetaKittyLand._transferBothExcluded(address,address,uint256).tTransferAmount (#1806)
Variable MetaKittyLand._transferToExcluded(address,address,uint256).rTransferAmount (#1750) is too similar to MetaKittyLand._transferToExcluded(address,address,uint256).tTransferAmount (#1744)
Variable MetaKittyLand._transferFromExcluded(address,address,uint256).rTransferAmount (#1781) is too similar to MetaKittyLand._getTValues(uint256).tTransferAmount (#1364)
Variable MetaKittyLand.reflectionFromToken(uint256,bool).rTransferAmount (#1186) is too similar to MetaKittyLand._getTValues(uint256).tTransferAmount (#1364)
Variable MetaKittyLand._transferToExcluded(address,address,uint256).rTransferAmount (#1750) is too similar to MetaKittyLand._getTValues(uint256).tTransferAmount (#1364)
Variable MetaKittyLand._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1392-1396) is too similar to MetaKittyLand._transferStandard(address,address,uint256).tTransferAmount (#1713)
Variable MetaKittyLand._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1392-1396) is too similar to MetaKittyLand._transferToExcluded(address,address,uint256).tTransferAmount (#1744)
Variable MetaKittyLand._transferFromExcluded(address,address,uint256).rTransferAmount (#1781) is too similar to MetaKittyLand._transferBothExcluded(address,address,uint256).tTransferAmount (#1806)
Variable MetaKittyLand.reflectionFromToken(uint256,bool).rTransferAmount (#1186) is too similar to MetaKittyLand._transferBothExcluded(address,address,uint256).tTransferAmount (#1806)
Variable MetaKittyLand.reflectionFromToken(uint256,bool).rTransferAmount (#1186) is too similar to MetaKittyLand._transferFromExcluded(address,address,uint256).tTransferAmount (#1775)
Variable MetaKittyLand._getRValues(uint256,uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1392-1396) is too similar to MetaKittyLand._getTValues(uint256).tTransferAmount (#1364)
Variable MetaKittyLand._transferToExcluded(address,address,uint256).rTransferAmount (#1750) is too similar to MetaKittyLand._transferBothExcluded(address,address,uint256).tTransferAmount (#1806)
Variable MetaKittyLand._transferStandard(address,address,uint256).rTransferAmount (#1719) is too similar to MetaKittyLand._transferToExcluded(address,address,uint256).tTransferAmount (#1744)
Variable MetaKittyLand._transferBothExcluded(address,address,uint256).rTransferAmount (#1812) is too similar to MetaKittyLand._transferBothExcluded(address,address,uint256).tTransferAmount (#1806)
Variable MetaKittyLand._transferStandard(address,address,uint256).rTransferAmount (#1719) is too similar to MetaKittyLand._transferStandard(address,address,uint256).tTransferAmount (#1713)
Variable MetaKittyLand._transferBothExcluded(address,address,uint256).rTransferAmount (#1812) is too similar to MetaKittyLand._transferFromExcluded(address,address,uint256).tTransferAmount (#1775)
Variable MetaKittyLand._transferFromExcluded(address,address,uint256).rTransferAmount (#1781) is too similar to MetaKittyLand._transferFromExcluded(address,address,uint256).tTransferAmount (#1775)
Variable MetaKittyLand._transferStandard(address,address,uint256).rTransferAmount (#1719) is too similar to MetaKittyLand._transferFromExcluded(address,address,uint256).tTransferAmount (#1775)
Variable MetaKittyLand._transferBothExcluded(address,address,uint256).rTransferAmount (#1812) is too similar to MetaKittyLand._transferToExcluded(address,address,uint256).tTransferAmount (#1744)
Variable MetaKittyLand._transferBothExcluded(address,address,uint256).rTransferAmount (#1812) is too similar to MetaKittyLand._transferStandard(address,address,uint256).tTransferAmount (#1713)
Variable MetaKittyLand._transferBothExcluded(address,address,uint256).rTransferAmount (#1812) is too similar to MetaKittyLand._getTValues(uint256).tTransferAmount (#1364)
Variable MetaKittyLand._transferFromExcluded(address,address,uint256).rTransferAmount (#1781) is too similar to MetaKittyLand._transferStandard(address,address,uint256).tTransferAmount (#1713)
Prevent variables from having similar names.

Additional information: link

MetaKittyLand.slitherConstructorVariables() (#899-1841) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 9 (#915)
MetaKittyLand.slitherConstructorVariables() (#899-1841) uses literals with too many digits:
- fixedBurnAddress = 0x000000000000000000000000000000000000dEaD (#925-926)
MetaKittyLand.slitherConstructorVariables() (#899-1841) uses literals with too many digits:
- _maxTxAmount = 3000000000 * 10 ** 9 (#968)
MetaKittyLand.slitherConstructorVariables() (#899-1841) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000000 * 10 ** 9 (#969)
MetaKittyLand.slitherConstructorVariables() (#899-1841) uses literals with too many digits:
- _maxWalletSize = 3000000000 * 10 ** 9 (#970)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#502-505)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#511-518)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#520-522)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#525-530)
unlock() should be declared external:
- Ownable.unlock() (#533-542)
name() should be declared external:
- MetaKittyLand.name() (#1031-1033)
symbol() should be declared external:
- MetaKittyLand.symbol() (#1035-1037)
decimals() should be declared external:
- MetaKittyLand.decimals() (#1039-1041)
totalSupply() should be declared external:
- MetaKittyLand.totalSupply() (#1043-1045)
transfer(address,uint256) should be declared external:
- MetaKittyLand.transfer(address,uint256) (#1052-1059)
allowance(address,address) should be declared external:
- MetaKittyLand.allowance(address,address) (#1061-1068)
approve(address,uint256) should be declared external:
- MetaKittyLand.approve(address,uint256) (#1070-1077)
transferFrom(address,address,uint256) should be declared external:
- MetaKittyLand.transferFrom(address,address,uint256) (#1079-1094)
increaseAllowance(address,uint256) should be declared external:
- MetaKittyLand.increaseAllowance(address,uint256) (#1096-1107)
decreaseAllowance(address,uint256) should be declared external:
- MetaKittyLand.decreaseAllowance(address,uint256) (#1109-1123)
isExcludedFromReward(address) should be declared external:
- MetaKittyLand.isExcludedFromReward(address) (#1125-1127)
totalFees() should be declared external:
- MetaKittyLand.totalFees() (#1129-1131)
burnAddress() should be declared external:
- MetaKittyLand.burnAddress() (#1133-1135)
AcceptMultipleAddress(address[],bool) should be declared external:
- MetaKittyLand.AcceptMultipleAddress(address[],bool) (#1137-1142)
deliver(uint256) should be declared external:
- MetaKittyLand.deliver(uint256) (#1144-1170)
reflectionFromToken(uint256,bool) should be declared external:
- MetaKittyLand.reflectionFromToken(uint256,bool) (#1172-1200)
excludeFromReward(address) should be declared external:
- MetaKittyLand.excludeFromReward(address) (#1228-1235)
excludeFromFee(address) should be declared external:
- MetaKittyLand.excludeFromFee(address) (#1250-1252)
includeInFee(address) should be declared external:
- MetaKittyLand.includeInFee(address) (#1254-1256)
excludeFromLimit(address) should be declared external:
- MetaKittyLand.excludeFromLimit(address) (#1258-1260)
includeInLimit(address) should be declared external:
- MetaKittyLand.includeInLimit(address) (#1262-1264)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MetaKittyLand.setSwapAndLiquifyEnabled(bool) (#1335-1338)
setTradingStatus(bool) should be declared external:
- MetaKittyLand.setTradingStatus(bool) (#1491-1493)
AcceptforTrading(address,bool) should be declared external:
- MetaKittyLand.AcceptforTrading(address,bool) (#1495-1497)
isExcludedFromFee(address) should be declared external:
- MetaKittyLand.isExcludedFromFee(address) (#1515-1517)
isExcludedFromLimit(address) should be declared external:
- MetaKittyLand.isExcludedFromLimit(address) (#1519-1521)
withdrawStuckETH(address,uint256) should be declared external:
- MetaKittyLand.withdrawStuckETH(address,uint256) (#1832-1834)
withdrawForeignToken(address,address,uint256) should be declared external:
- MetaKittyLand.withdrawForeignToken(address,address,uint256) (#1836-1839)
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 low.


Unable to find Twitter account


Telegram account has relatively few subscribers


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/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 Twitter link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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 no active CoinMarketCap listing / rank

Price for MKLand