Monkey Claus Game $MCG is a Christmas Token, launched on the BSC network, designed for fun and good Christmas cheer! A fun game with clown monkeys, snowballs and most importantly - great prizes await you! The prize pool is 30% of the token issue! There is a 12% tax on each sale, which funds the pools to provide marketing, prizes, and holders, and 2% is burned. This financial model will ensure that the price of the token grows steadily. These conditions will allow the development of the token for a long time, and will ensure the launch of NFT. Are you still thinking about it? Join and win!
Contract locking ether found:
Contract MCG (#155-696) has payable functions:
- MCG.receive() (#460)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.
Additional information: link
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.
MCG._takeBurnFee(address,uint256,uint256) (#657-665) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_currentBurnFee).div(1e3) (#658)
-rFee = tFee.mul(currentRate) (#659)
MCG._takeMarketaFee(address,uint256,uint256) (#668-676) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_currentMarketWalletFee).div(1e3) (#669)
-rFee = tFee.mul(currentRate) (#670)
MCG._takePrizeFundFee(address,uint256,uint256) (#679-687) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_currentprizeFundWalletFee).div(1e3) (#680)
-rFee = tFee.mul(currentRate) (#681)
MCG._reflectFee(uint256) (#690-695) performs a multiplication on the result of a division:
-tFee = tAmount.mul(_currentRedistributionFee).div(1e3) (#691)
-rFee = tFee.mul(_getRate()) (#692)
Consider ordering multiplication before division.
Additional information: link
MCG.allowance(address,address).owner (#263) shadows:
- Ownable.owner() (#114-116) (function)
MCG._approve(address,address,uint256).owner (#506) shadows:
- Ownable.owner() (#114-116) (function)
Rename the local variables that shadow another component.
Additional information: link
MCG.constructor(address,address,address)._marketWallet (#199) lacks a zero-check on :
- marketWallet = _marketWallet (#202)
MCG.constructor(address,address,address)._prizeFundWallet (#199) lacks a zero-check on :
- prizeFundWallet = _prizeFundWallet (#203)
MCG.constructor(address,address,address)._liquidityPool (#199) lacks a zero-check on :
- liquidityPool = _liquidityPool (#204)
MCG.setprizeFundWalletAddress(address)._newAddress (#431) lacks a zero-check on :
- prizeFundWallet = _newAddress (#435)
MCG.setliquidityPoolAddress(address)._liquidityPool (#439) lacks a zero-check on :
- liquidityPool = _liquidityPool (#443)
MCG.setmarketWalletAddress(address)._newAddress (#446) lacks a zero-check on :
- marketWallet = _newAddress (#450)
MCG.setRoute(IDexRouter,address)._pair (#454) lacks a zero-check on :
- dexPair = _pair (#456)
Check that the address is not zero.
Additional information: link
Reentrancy in MCG.constructor(address,address,address) (#199-224):
External calls:
- dexPair = IDexFactory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#211-214)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#220)
- _isExcludedFromFee[address(this)] = true (#221)
- dexRouter = _dexRouter (#217)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MCG.constructor(address,address,address) (#199-224):
External calls:
- dexPair = IDexFactory(_dexRouter.factory()).createPair(address(this),_dexRouter.WETH()) (#211-214)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#223)
Apply the check-effects-interactions pattern.
Additional information: link
Context._msgData() (#91-93) is never used and should be removed
SafeMath.mod(uint256,uint256) (#751-753) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#755-762) is never used and should be removed
Remove unused functions.
Additional information: link
MCG._rTotal (#167) 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 version0.8.9 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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
Function IDexRouter.WETH() (#59) is not in mixedCase
Parameter MCG.balanceOf(address)._account (#244) is not in mixedCase
Parameter MCG.isExcludedFromReward(address)._account (#330) is not in mixedCase
Parameter MCG.isExcludedFromFee(address)._account (#335) is not in mixedCase
Parameter MCG.includeInReward(address)._account (#391) is not in mixedCase
Parameter MCG.excludeFromReward(address)._account (#404) is not in mixedCase
Parameter MCG.includeOrExcludeFromFee(address,bool)._account (#418) is not in mixedCase
Parameter MCG.includeOrExcludeFromFee(address,bool)._value (#418) is not in mixedCase
Parameter MCG.enableOrDisableFees(bool)._state (#426) is not in mixedCase
Parameter MCG.setprizeFundWalletAddress(address)._newAddress (#431) is not in mixedCase
Parameter MCG.setliquidityPoolAddress(address)._liquidityPool (#439) is not in mixedCase
Parameter MCG.setmarketWalletAddress(address)._newAddress (#446) is not in mixedCase
Parameter MCG.setRoute(IDexRouter,address)._router (#454) is not in mixedCase
Parameter MCG.setRoute(IDexRouter,address)._pair (#454) is not in mixedCase
Variable MCG.Fees (#184) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable MCG.excludedRSupply (#182) is too similar to MCG.excludedTSupply (#181)
Variable MCG.reflectionFromToken(uint256,bool).rTransferAmount (#368-370) is too similar to MCG._transferFromExcluded(address,address,uint256).tTransferAmount (#620)
Variable MCG._transferFromExcluded(address,address,uint256).rTransferAmount (#622-624) is too similar to MCG._transferToExcluded(address,address,uint256).tTransferAmount (#600)
Variable MCG._transferFromExcluded(address,address,uint256).rTransferAmount (#622-624) is too similar to MCG._transferBothExcluded(address,address,uint256).tTransferAmount (#643)
Variable MCG._transferStandard(address,address,uint256).rTransferAmount (#581-583) is too similar to MCG._transferBothExcluded(address,address,uint256).tTransferAmount (#643)
Variable MCG.reflectionFromToken(uint256,bool).rTransferAmount (#368-370) is too similar to MCG._transferStandard(address,address,uint256).tTransferAmount (#579)
Variable MCG.reflectionFromToken(uint256,bool).rTransferAmount (#368-370) is too similar to MCG._transferToExcluded(address,address,uint256).tTransferAmount (#600)
Variable MCG.reflectionFromToken(uint256,bool).rTransferAmount (#368-370) is too similar to MCG._transferBothExcluded(address,address,uint256).tTransferAmount (#643)
Variable MCG._transferFromExcluded(address,address,uint256).rTransferAmount (#622-624) is too similar to MCG._transferStandard(address,address,uint256).tTransferAmount (#579)
Variable MCG._transferStandard(address,address,uint256).rTransferAmount (#581-583) is too similar to MCG._transferToExcluded(address,address,uint256).tTransferAmount (#600)
Variable MCG._transferFromExcluded(address,address,uint256).rTransferAmount (#622-624) is too similar to MCG._transferFromExcluded(address,address,uint256).tTransferAmount (#620)
Variable MCG._transferStandard(address,address,uint256).rTransferAmount (#581-583) is too similar to MCG._transferStandard(address,address,uint256).tTransferAmount (#579)
Variable MCG._transferStandard(address,address,uint256).rTransferAmount (#581-583) is too similar to MCG._transferFromExcluded(address,address,uint256).tTransferAmount (#620)
Prevent variables from having similar names.
Additional information: link
MCG.slitherConstructorVariables() (#155-696) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#179)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MCG._decimals (#172) should be constant
MCG._name (#170) should be constant
MCG._symbol (#171) should be constant
MCG._tTotal (#166) should be constant
MCG.burnAddress (#179) should be constant
MCG.burnFeeOnSelling (#190) should be constant
MCG.marketWalletFeeOnSelling (#188) should be constant
MCG.prizeFundWalletFeeOnSelling (#189) should be constant
MCG.redistributionFeeOnSelling (#187) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#126-128)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#134-140)
name() should be declared external:
- MCG.name() (#228-230)
symbol() should be declared external:
- MCG.symbol() (#232-234)
decimals() should be declared external:
- MCG.decimals() (#236-238)
totalSupply() should be declared external:
- MCG.totalSupply() (#240-242)
balanceOf(address) should be declared external:
- MCG.balanceOf(address) (#244-252)
transfer(address,uint256) should be declared external:
- MCG.transfer(address,uint256) (#254-261)
allowance(address,address) should be declared external:
- MCG.allowance(address,address) (#263-270)
approve(address,uint256) should be declared external:
- MCG.approve(address,uint256) (#272-279)
transferFrom(address,address,uint256) should be declared external:
- MCG.transferFrom(address,address,uint256) (#281-296)
increaseAllowance(address,uint256) should be declared external:
- MCG.increaseAllowance(address,uint256) (#298-309)
decreaseAllowance(address,uint256) should be declared external:
- MCG.decreaseAllowance(address,uint256) (#311-325)
isExcludedFromReward(address) should be declared external:
- MCG.isExcludedFromReward(address) (#330-332)
isExcludedFromFee(address) should be declared external:
- MCG.isExcludedFromFee(address) (#335-337)
totalHolderDistribution() should be declared external:
- MCG.totalHolderDistribution() (#340-342)
deliver(uint256) should be declared external:
- MCG.deliver(uint256) (#345-355)
reflectionFromToken(uint256,bool) should be declared external:
- MCG.reflectionFromToken(uint256,bool) (#357-373)
excludeFromReward(address) should be declared external:
- MCG.excludeFromReward(address) (#404-415)
includeOrExcludeFromFee(address,bool) should be declared external:
- MCG.includeOrExcludeFromFee(address,bool) (#418-423)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account has relatively few followers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account