Moon Casnio Token Token Logo

MCAS [Moon Casnio] Token

About MCAS

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 28 December 2021

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


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

mooncasnio.swapEthForTokens(address) (#1203-1214) sends eth to arbitrary user
Dangerous calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: address(this).balance}(0,path,to,block.timestamp) (#1208-1213)
mooncasnio.addLiquidity(uint256,uint256) (#1216-1229) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in mooncasnio._transfer(address,address,uint256) (#888-925):
External calls:
- swap() (#900)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- swap() (#900)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
State variables written after the call(s):
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- _reflectionBalance[tokenPool] = _reflectionBalance[tokenPool].add(taxFee.mul(rate)) (#940)
- _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liqFee.mul(rate)) (#952)
- _reflectionBalance[betWallet] = _reflectionBalance[betWallet].add(betFee.mul(rate)) (#964)
- _reflectionBalance[chipsbetWallet] = _reflectionBalance[chipsbetWallet].add(chipsbetFee.mul(rate)) (#976)
- _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)) (#913)
- _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)) (#914)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- _tokenBalance[tokenPool] = _tokenBalance[tokenPool].add(taxFee) (#942)
- _tokenBalance[address(this)] = _tokenBalance[address(this)].add(liqFee) (#954)
- _tokenBalance[betWallet] = _tokenBalance[betWallet].add(betFee) (#966)
- _tokenBalance[chipsbetWallet] = _tokenBalance[chipsbetWallet].add(chipsbetFee) (#978)
- _tokenBalance[sender] = _tokenBalance[sender].sub(amount) (#918)
- _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount) (#921)
Apply the check-effects-interactions pattern.

Additional information: link

Contract locking ether found:
Contract Wallet (#654-656) has payable functions:
- Wallet.receive() (#655)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

mooncasnio.claimReward(bool) (#1005-1030) contains a tautology or contradiction:
- require(bool,string)(balanceOf(msg.sender) >= 0,Error: Must be a holder to claim rewards!) (#1007)
Fix the incorrect comparison by changing the value type or the comparison.

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.

Redundant expression "this (#25)" inContext (#19-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#515) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#516)
Prevent variables from having similar names.

Additional information: link

mooncasnio.calculateReward(address) (#987-1003) uses literals with too many digits:
- _totalSupply = totalSupply().sub(balanceOf(betWallet)).sub(balanceOf(chipsbetWallet)).sub(balanceOf(tokenPool)).sub(balanceOf(address(0))).sub(balanceOf(0x000000000000000000000000000000000000dEaD)).sub(balanceOf(address(pair))) (#988-994)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

mooncasnio._decimals (#665) should be constant
mooncasnio._feeDecimal (#684) should be constant
mooncasnio._name (#663) should be constant
mooncasnio._symbol (#664) should be constant
mooncasnio._tokenTotal (#672) should be constant
mooncasnio.rewardThreshold (#682) should be constant
mooncasnio.threshHoldTopUpRate (#680) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

mooncasnio.collectFee(address,uint256,uint256,bool,bool) (#927-985) performs a multiplication on the result of a division:
-_reflectionBalance[tokenPool] = _reflectionBalance[tokenPool].add(taxFee.mul(rate)) (#940)
-taxFee = amount.mul(_taxFee[0]).div(10 ** (_feeDecimal + 2)) (#937)
mooncasnio.collectFee(address,uint256,uint256,bool,bool) (#927-985) performs a multiplication on the result of a division:
-_reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(liqFee.mul(rate)) (#952)
-liqFee = amount.mul(_liqFee[2]).div(10 ** (_feeDecimal + 2)) (#949)
mooncasnio.collectFee(address,uint256,uint256,bool,bool) (#927-985) performs a multiplication on the result of a division:
-_reflectionBalance[betWallet] = _reflectionBalance[betWallet].add(betFee.mul(rate)) (#964)
-betFee = amount.mul(_betFee[1]).div(10 ** (_feeDecimal + 2)) (#961)
mooncasnio.collectFee(address,uint256,uint256,bool,bool) (#927-985) performs a multiplication on the result of a division:
-_reflectionBalance[chipsbetWallet] = _reflectionBalance[chipsbetWallet].add(chipsbetFee.mul(rate)) (#976)
-chipsbetFee = amount.mul(_chipsbetFee[0]).div(10 ** (_feeDecimal + 2)) (#973)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in mooncasnio.claimReward(bool) (#1005-1030):
External calls:
- swapTokensForCake(poolTokenBalance) (#1020)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
State variables written after the call(s):
- nextAvailableClaimDate[msg.sender] = block.timestamp + rewardCycleInterval (#1026)
Reentrancy in mooncasnio.swap() (#1082-1131):
External calls:
- swapedEth = swapTokensForEth(cakeBankBalance,chipsbetWallet) (#1111)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
State variables written after the call(s):
- _reflectionBalance[betWallet] = _reflectionBalance[betWallet].sub(betWalletBalance.mul(rate)) (#1115-1117)
- _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(betWalletBalance.mul(rate)) (#1118-1120)
- _tokenBalance[address(this)] = _tokenBalance[address(this)].add(betWalletBalance) (#1122)
- _tokenBalance[betWallet] = _tokenBalance[betWallet].sub(betWalletBalance) (#1125)
Apply the check-effects-interactions pattern.

Additional information: link

mooncasnio.addLiquidity(uint256,uint256) (#1216-1229) ignores return value by router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
Ensure that all the return values of the function calls are used.

Additional information: link

mooncasnio.constructor()._owner (#735) shadows:
- Ownable._owner (#448) (state variable)
mooncasnio.allowance(address,address).owner (#800) shadows:
- Ownable.owner() (#464-466) (function)
mooncasnio._approve(address,address,uint256).owner (#877) shadows:
- Ownable.owner() (#464-466) (function)
mooncasnio.claimReward(bool).swap (#1005) shadows:
- mooncasnio.swap() (#1082-1131) (function)
Rename the local variables that shadow another component.

Additional information: link

mooncasnio.setMaxTxAmount(uint256) (#1282-1284) should emit an event for:
- maxTxAmount = amount (#1283)
mooncasnio.setMinTokensBeforeSwap(uint256) (#1286-1288) should emit an event for:
- minTokensBeforeSwap = amount (#1287)
mooncasnio.setRewardCycleInterval(uint256) (#1290-1292) should emit an event for:
- rewardCycleInterval = interval (#1291)
Emit an event for critical parameter changes.

Additional information: link

mooncasnio.setPairRouterCake(address,IUniswapV2Router02,address)._pair (#1231) lacks a zero-check on :
- pair = _pair (#1232)
mooncasnio.setPairRouterCake(address,IUniswapV2Router02,address)._cake (#1231) lacks a zero-check on :
- cake = _cake (#1234)
mooncasnio.setbetWallet(address).wallet (#1274) lacks a zero-check on :
- betWallet = wallet (#1275)
mooncasnio.setchipsbetWallet(address).bank (#1278) lacks a zero-check on :
- chipsbetWallet = bank (#1279)
Check that the address is not zero.

Additional information: link

Reentrancy in mooncasnio._transfer(address,address,uint256) (#888-925):
External calls:
- swap() (#900)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- swap() (#900)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
State variables written after the call(s):
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- _betFeeTotal = _betFeeTotal.add(betFee) (#968)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- _chipsbetFeeTotal = _chipsbetFeeTotal.add(chipsbetFee) (#980)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- _liquidityFeeTotal = _liquidityFeeTotal.add(liqFee) (#956)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- _taxFeeTotal = _taxFeeTotal.add(taxFee) (#944)
- topUpClaimCycleAfterTransfer(sender,recipient,amount) (#903)
- nextAvailableClaimDate[sender] = 0 (#1042)
- nextAvailableClaimDate[recipient] = nextAvailableClaimDate[recipient] + calculateTopUpClaim(currentRecipientBalance,amount) (#1044-1046)
Reentrancy in mooncasnio.constructor() (#725-772):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#728)
State variables written after the call(s):
- _betFee.push(100) (#767)
- _betFee.push(500) (#768)
- _betFee.push(0) (#769)
- _chipsbetFee.push(100) (#763)
- _chipsbetFee.push(200) (#764)
- _chipsbetFee.push(0) (#765)
- _excluded.push(address(pair)) (#733)
- _excluded.push(address(pair)) (#744)
- _isExcluded[address(pair)] = true (#732)
- _isExcluded[address(pair)] = true (#743)
- _liqFee.push(100) (#759)
- _liqFee.push(200) (#760)
- _liqFee.push(0) (#761)
- transferOwnership(_owner) (#771)
- _owner = newOwner (#495)
- _reflectionBalance[_owner] = _reflectionTotal (#752)
- _taxFee.push(400) (#755)
- _taxFee.push(700) (#756)
- _taxFee.push(1000) (#757)
- betWallet = 0x13920fd4543af1E1f515F0d838192007d3BCC157 (#737)
- cake = 0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82 (#736)
- chipsbetWallet = 0x75b2a51A2ba66AF9e77322367fC7971bE832C8f4 (#738)
- isTaxless[_owner] = true (#746)
- isTaxless[tokenPool] = true (#747)
- isTaxless[chipsbetWallet] = true (#748)
- isTaxless[betWallet] = true (#749)
- isTaxless[address(this)] = true (#750)
- router = _uniswapV2Router (#729)
- tokenPool = address(new Wallet()) (#739)
Reentrancy in mooncasnio.swap() (#1082-1131):
External calls:
- swapedEth = swapTokensForEth(cakeBankBalance,chipsbetWallet) (#1111)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- swapedEth_scope_0 = swapTokensForEth(betWalletBalance,betWallet) (#1127)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
State variables written after the call(s):
- swapedEth_scope_0 = swapTokensForEth(betWalletBalance,betWallet) (#1127)
- _allowances[owner][spender] = amount (#884)
Reentrancy in mooncasnio.swapAndLiquify(uint256) (#1133-1157):
External calls:
- swapTokensForEth(half,address(this)) (#1148)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- addLiquidity(otherHalf,newBalance) (#1154)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1154)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1154)
- _allowances[owner][spender] = amount (#884)
Reentrancy in mooncasnio.transferFrom(address,address,uint256) (#809-822):
External calls:
- _transfer(sender,recipient,amount) (#814)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- _transfer(sender,recipient,amount) (#814)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#816-820)
- _allowances[owner][spender] = amount (#884)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in mooncasnio._transfer(address,address,uint256) (#888-925):
External calls:
- swap() (#900)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- swap() (#900)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
Event emitted after the call(s):
- Transfer(account,tokenPool,taxFee) (#945)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- Transfer(account,address(this),liqFee) (#957)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- Transfer(sender,recipient,transferAmount) (#924)
- Transfer(account,betWallet,betFee) (#969)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
- Transfer(account,chipsbetWallet,chipsbetFee) (#981)
- transferAmount = collectFee(sender,amount,rate,recipient == pair,sender != pair && recipient != pair) (#909)
Reentrancy in mooncasnio.claimReward(bool) (#1005-1030):
External calls:
- swapTokensForCake(poolTokenBalance) (#1020)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
- cake.safeTransfer(msg.sender,reward) (#1027)
Event emitted after the call(s):
- ClaimCakeSuccessfully(msg.sender,reward,nextAvailableClaimDate[msg.sender],block.timestamp) (#1029)
Reentrancy in mooncasnio.constructor() (#725-772):
External calls:
- pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#728)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#494)
- transferOwnership(_owner) (#771)
- Transfer(address(0),_owner,_tokenTotal) (#753)
Reentrancy in mooncasnio.swap() (#1082-1131):
External calls:
- swapedEth = swapTokensForEth(cakeBankBalance,chipsbetWallet) (#1111)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
Event emitted after the call(s):
- SwapGCakeToBnbForchipsbetWallet(cakeBankBalance,swapedEth) (#1112)
Reentrancy in mooncasnio.swap() (#1082-1131):
External calls:
- swapedEth = swapTokensForEth(cakeBankBalance,chipsbetWallet) (#1111)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- swapedEth_scope_0 = swapTokensForEth(betWalletBalance,betWallet) (#1127)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#885)
- swapedEth_scope_0 = swapTokensForEth(betWalletBalance,betWallet) (#1127)
- SwapGCakeToBnbForbetWallet(betWalletBalance,swapedEth_scope_0) (#1128)
Reentrancy in mooncasnio.swapAndLiquify(uint256) (#1133-1157):
External calls:
- swapTokensForEth(half,address(this)) (#1148)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- addLiquidity(otherHalf,newBalance) (#1154)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1154)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#885)
- addLiquidity(otherHalf,newBalance) (#1154)
- SwapAndLiquify(half,newBalance,otherHalf) (#1156)
Reentrancy in mooncasnio.swapTokensForCake(uint256) (#1159-1180):
External calls:
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
Event emitted after the call(s):
- SwapGCakeForCake(tokenAmount,afterBalanace.sub(beforeBalance)) (#1179)
Reentrancy in mooncasnio.transferFrom(address,address,uint256) (#809-822):
External calls:
- _transfer(sender,recipient,amount) (#814)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#1192-1198)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1170-1176)
External calls sending eth:
- _transfer(sender,recipient,amount) (#814)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1221-1228)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#885)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#816-820)
Apply the check-effects-interactions pattern.

Additional information: link

mooncasnio.claimReward(bool) (#1005-1030) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(nextAvailableClaimDate[msg.sender] <= block.timestamp,Error: Reward Claim unavailable!) (#1006)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#297-309) uses assembly
- INLINE ASM (#305-307)
Address._functionCallWithValue(address,bytes,uint256,string) (#406-432) uses assembly
- INLINE ASM (#424-427)
Do not use evm assembly.

Additional information: link

mooncasnio.includeAccount(address) (#863-874) has costly operations inside a loop:
- _excluded.pop() (#870)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#406-432) is never used and should be removed
Address.functionCall(address,bytes) (#353-355) is never used and should be removed
Address.functionCall(address,bytes,string) (#363-369) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#382-388) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#396-404) is never used and should be removed
Address.isContract(address) (#297-309) is never used and should be removed
Address.sendValue(address,uint256) (#327-333) is never used and should be removed
Context._msgData() (#24-27) is never used and should be removed
SafeMath.mod(uint256,uint256) (#250-252) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#266-273) is never used and should be removed
TransferHelper.safeApprove(address,address,uint256) (#608-619) is never used and should be removed
TransferHelper.safeTransferETH(address,uint256) (#648-651) is never used and should be removed
TransferHelper.safeTransferFrom(address,address,address,uint256) (#634-646) is never used and should be removed
mooncasnio.swapEthForTokens(address) (#1203-1214) is never used and should be removed
Remove unused functions.

Additional information: link

mooncasnio._reflectionTotal (#673) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tokenTotal))
mooncasnio.maxTxAmount (#700) is set pre-construction with a non-constant function or state variable:
- _tokenTotal.mul(5).div(1000)
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.6.0 (#7) allows old versions
Pragma version^0.6.0 (#580) allows old versions
Pragma version^0.6.0 (#605) allows old versions
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) (#327-333):
- (success) = recipient.call{value: amount}() (#331)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#406-432):
- (success,returndata) = target.call{value: weiValue}(data) (#415)
Low level call in TransferHelper.safeApprove(address,address,uint256) (#608-619):
- (success,data) = token.call(abi.encodeWithSelector(0x095ea7b3,to,value)) (#614)
Low level call in TransferHelper.safeTransfer(address,address,uint256) (#621-632):
- (success,data) = token.call(abi.encodeWithSelector(0xa9059cbb,to,value)) (#627)
Low level call in TransferHelper.safeTransferFrom(address,address,address,uint256) (#634-646):
- (success,data) = token.call(abi.encodeWithSelector(0x23b872dd,from,to,value)) (#641)
Low level call in TransferHelper.safeTransferETH(address,uint256) (#648-651):
- (success) = to.call{value: value}(new bytes(0)) (#649)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#510) is not in mixedCase
Contract mooncasnio (#658-1296) is not in CapWords
Parameter mooncasnio.setPairRouterCake(address,IUniswapV2Router02,address)._pair (#1231) is not in mixedCase
Parameter mooncasnio.setPairRouterCake(address,IUniswapV2Router02,address)._router (#1231) is not in mixedCase
Parameter mooncasnio.setPairRouterCake(address,IUniswapV2Router02,address)._cake (#1231) is not in mixedCase
Variable mooncasnio._reflectionBalance (#667) is not in mixedCase
Variable mooncasnio._tokenBalance (#668) is not in mixedCase
Variable mooncasnio._allowances (#669) is not in mixedCase
Variable mooncasnio._tokenTotal (#672) is not in mixedCase
Variable mooncasnio._reflectionTotal (#673) is not in mixedCase
Variable mooncasnio._isExcluded (#676) is not in mixedCase
Variable mooncasnio._excluded (#677) is not in mixedCase
Variable mooncasnio._feeDecimal (#684) is not in mixedCase
Variable mooncasnio._taxFee (#686) is not in mixedCase
Variable mooncasnio._liqFee (#687) is not in mixedCase
Variable mooncasnio._chipsbetFee (#688) is not in mixedCase
Variable mooncasnio._betFee (#689) is not in mixedCase
Variable mooncasnio._taxFeeTotal (#691) is not in mixedCase
Variable mooncasnio._liquidityFeeTotal (#692) is not in mixedCase
Variable mooncasnio._betFeeTotal (#693) is not in mixedCase
Variable mooncasnio._chipsbetFeeTotal (#694) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

owner() should be declared external:
- Ownable.owner() (#464-466)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#483-486)
name() should be declared external:
- mooncasnio.name() (#774-776)
symbol() should be declared external:
- mooncasnio.symbol() (#778-780)
decimals() should be declared external:
- mooncasnio.decimals() (#782-784)
transfer(address,uint256) should be declared external:
- mooncasnio.transfer(address,uint256) (#795-798)
allowance(address,address) should be declared external:
- mooncasnio.allowance(address,address) (#800-802)
approve(address,uint256) should be declared external:
- mooncasnio.approve(address,uint256) (#804-807)
transferFrom(address,address,uint256) should be declared external:
- mooncasnio.transferFrom(address,address,uint256) (#809-822)
increaseAllowance(address,uint256) should be declared external:
- mooncasnio.increaseAllowance(address,uint256) (#824-827)
decreaseAllowance(address,uint256) should be declared external:
- mooncasnio.decreaseAllowance(address,uint256) (#829-836)
isExcluded(address) should be declared external:
- mooncasnio.isExcluded(address) (#838-840)
reflectionFromToken(uint256) should be declared external:
- mooncasnio.reflectionFromToken(uint256) (#842-845)
claimReward(bool) should be declared external:
- mooncasnio.claimReward(bool) (#1005-1030)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


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


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for MCAS