MoneyMoon.addLiquidity(uint256,uint256) (#1060-1073) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MoneyMoon._transfer(address,address,uint256) (#990-1017):
External calls:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1016)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#940)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1150)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rMarketing) (#1142)
- _rOwned[deadAddress] = _rOwned[deadAddress].add(rBurn) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1161)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#881)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1152)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1162)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1112)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1113)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#883)
- _tokenTransfer(from,to,amount) (#1016)
- _rTotal = _rTotal.sub(rFee) (#895)
- _tokenTransfer(from,to,amount) (#1016)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#942)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#880)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1160)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1151)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#882)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
MoneyMoon.takeBurn(address,uint256,uint256,uint256) (#1120-1131) performs a multiplication on the result of a division:
-tBurn = tAmount.div(100).mul(_burnFee) (#1124)
MoneyMoon.takeMarketing(address,uint256,uint256,uint256) (#1134-1145) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1138)
Consider ordering multiplication before division.
Additional information: link
MoneyMoon.addLiquidity(uint256,uint256) (#1060-1073) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Ensure that all the return values of the function calls are used.
Additional information: link
MoneyMoon.allowance(address,address).owner (#797) shadows:
- Ownable.owner() (#427-429) (function)
MoneyMoon._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#427-429) (function)
Rename the local variables that shadow another component.
Additional information: link
MoneyMoon.setTaxFeePercent(uint256) (#1206-1208) should emit an event for:
- _taxFee = taxFee (#1207)
MoneyMoon.setLiquidityFeePercent(uint256) (#1210-1212) should emit an event for:
- _liquidityFee = liquidityFee (#1211)
MoneyMoon.setChartityFeePercent(uint256) (#1214-1216) should emit an event for:
- _marketingFee = marketingFee (#1215)
MoneyMoon.setBurnFeePercent(uint256) (#1218-1220) should emit an event for:
- _burnFee = burnFee (#1219)
MoneyMoon.setNumTokensSellToAddToLiquidity(uint256,uint256) (#1222-1224) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** decimal (#1223)
MoneyMoon.setMaxTxAmount(uint256,uint256) (#1226-1229) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** decimal (#1228)
Emit an event for critical parameter changes.
Additional information: link
MoneyMoon.setmarketingWallet(address).newWallet (#1202) lacks a zero-check on :
- marketingWallet = newWallet (#1203)
Check that the address is not zero.
Additional information: link
Reentrancy in MoneyMoon._transfer(address,address,uint256) (#990-1017):
External calls:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1016)
- _burnFee = _previousBurnFee (#974)
- _burnFee = 0 (#968)
- _tokenTransfer(from,to,amount) (#1016)
- _liquidityFee = _previousLiquidityFee (#973)
- _liquidityFee = 0 (#966)
- _tokenTransfer(from,to,amount) (#1016)
- _marketingFee = _previousmarketingFee (#975)
- _marketingFee = 0 (#967)
- _tokenTransfer(from,to,amount) (#1016)
- _previousBurnFee = _burnFee (#962)
- _tokenTransfer(from,to,amount) (#1016)
- _previousLiquidityFee = _liquidityFee (#961)
- _tokenTransfer(from,to,amount) (#1016)
- _previousTaxFee = _taxFee (#960)
- _tokenTransfer(from,to,amount) (#1016)
- _previousmarketingFee = _marketingFee (#963)
- _tokenTransfer(from,to,amount) (#1016)
- _tFeeTotal = _tFeeTotal.add(tFee) (#896)
- _tokenTransfer(from,to,amount) (#1016)
- _taxFee = _previousTaxFee (#972)
- _taxFee = 0 (#965)
Reentrancy in MoneyMoon.constructor() (#753-769):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#758-759)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#765)
- _isExcludedFromFee[address(this)] = true (#766)
- uniswapV2Router = _uniswapV2Router (#762)
Reentrancy in MoneyMoon.setRouterAddress(address) (#1233-1237):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1235)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1236)
Reentrancy in MoneyMoon.swapAndLiquify(uint256) (#1019-1040):
External calls:
- swapTokensForEth(half) (#1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
- addLiquidity(otherHalf,newBalance) (#1037)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1037)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1037)
- _allowances[owner][spender] = amount (#986)
Reentrancy in MoneyMoon.transferFrom(address,address,uint256) (#806-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#808)
- _allowances[owner][spender] = amount (#986)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MoneyMoon._transfer(address,address,uint256) (#990-1017):
External calls:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1012)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Event emitted after the call(s):
- Transfer(sender,marketingWallet,tMarketing) (#1143)
- _tokenTransfer(from,to,amount) (#1016)
- Transfer(sender,deadAddress,tBurn) (#1129)
- _tokenTransfer(from,to,amount) (#1016)
- Transfer(sender,recipient,tTransferAmount) (#1165)
- _tokenTransfer(from,to,amount) (#1016)
- Transfer(sender,recipient,tTransferAmount) (#1155)
- _tokenTransfer(from,to,amount) (#1016)
- Transfer(sender,recipient,tTransferAmount) (#886)
- _tokenTransfer(from,to,amount) (#1016)
- Transfer(sender,recipient,tTransferAmount) (#1116)
- _tokenTransfer(from,to,amount) (#1016)
Reentrancy in MoneyMoon.constructor() (#753-769):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#758-759)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#768)
Reentrancy in MoneyMoon.swapAndLiquify(uint256) (#1019-1040):
External calls:
- swapTokensForEth(half) (#1031)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
- addLiquidity(otherHalf,newBalance) (#1037)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1037)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- addLiquidity(otherHalf,newBalance) (#1037)
- SwapAndLiquify(half,newBalance,otherHalf) (#1039)
Reentrancy in MoneyMoon.transferFrom(address,address,uint256) (#806-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1051-1057)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1065-1072)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#808)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#474-479) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#476)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#279-288) uses assembly
- INLINE ASM (#286)
Address._functionCallWithValue(address,bytes,uint256,string) (#372-393) uses assembly
- INLINE ASM (#385-388)
Do not use evm assembly.
Additional information: link
MoneyMoon.includeInReward(address) (#865-876) has costly operations inside a loop:
- _excluded.pop() (#872)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#372-393) is never used and should be removed
Address.functionCall(address,bytes) (#332-334) is never used and should be removed
Address.functionCall(address,bytes,string) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#357-359) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#367-370) is never used and should be removed
Address.isContract(address) (#279-288) is never used and should be removed
Address.sendValue(address,uint256) (#306-312) is never used and should be removed
Context._msgData() (#251-254) is never used and should be removed
SafeMath.mod(uint256,uint256) (#224-226) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#240-243) is never used and should be removed
Remove unused functions.
Additional information: link
MoneyMoon._rTotal (#709) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MoneyMoon._previousTaxFee (#717) is set pre-construction with a non-constant function or state variable:
- _taxFee
MoneyMoon._previousLiquidityFee (#720) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
MoneyMoon._previousBurnFee (#723) is set pre-construction with a non-constant function or state variable:
- _burnFee
MoneyMoon._previousmarketingFee (#728) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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
Low level call in Address.sendValue(address,uint256) (#306-312):
- (success) = recipient.call{value: amount}() (#310)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#372-393):
- (success,returndata) = target.call{value: weiValue}(data) (#376)
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() (#518) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#519) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#535) is not in mixedCase
Function IUniswapV2Router01.WETH() (#556) is not in mixedCase
Parameter MoneyMoon.calculateTaxFee(uint256)._amount (#945) is not in mixedCase
Parameter MoneyMoon.calculateLiquidityFee(uint256)._amount (#951) is not in mixedCase
Parameter MoneyMoon.setSwapAndLiquifyEnabled(bool)._enabled (#1239) is not in mixedCase
Variable MoneyMoon._taxFee (#716) is not in mixedCase
Variable MoneyMoon._liquidityFee (#719) is not in mixedCase
Variable MoneyMoon._burnFee (#722) is not in mixedCase
Variable MoneyMoon._marketingFee (#726) is not in mixedCase
Variable MoneyMoon._maxTxAmount (#737) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#252)" inContext (#246-255)
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 (#561) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#562)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#879)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferStandard(address,address,uint256).rTransferAmount (#1109) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#916) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1159)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon._getTValues(uint256).tTransferAmount (#908)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1149)
Variable MoneyMoon.takeBurn(address,uint256,uint256,uint256).rTransferAmount (#1120) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon.reflectionFromToken(uint256,bool).rTransferAmount (#845) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1134)
Variable MoneyMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1159) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#879) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1149) is too similar to MoneyMoon._transferStandard(address,address,uint256).tTransferAmount (#1109)
Variable MoneyMoon._getValues(uint256).rTransferAmount (#901) is too similar to MoneyMoon._getValues(uint256).tTransferAmount (#900)
Variable MoneyMoon.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1134) is too similar to MoneyMoon.takeBurn(address,uint256,uint256,uint256).tTransferAmount (#1120)
Prevent variables from having similar names.
Additional information: link
MoneyMoon.prepareFoePresale() (#1168-1179) uses literals with too many digits:
- _maxTxAmount = 1000000000000000 * 10 ** 9 (#1177)
MoneyMoon.afterPresale() (#1181-1192) uses literals with too many digits:
- _maxTxAmount = 10000000000000000 * 10 ** 9 (#1190)
MoneyMoon.slitherConstructorVariables() (#694-1245) uses literals with too many digits:
- _tTotal = 100000 * 10 ** 6 * 10 ** 9 (#708)
MoneyMoon.slitherConstructorVariables() (#694-1245) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#724)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MoneyMoon._decimals (#714) should be constant
MoneyMoon._name (#712) should be constant
MoneyMoon._symbol (#713) should be constant
MoneyMoon._tTotal (#708) should be constant
MoneyMoon.deadAddress (#724) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#446-449)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#455-459)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#461-463)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#466-471)
unlock() should be declared external:
- Ownable.unlock() (#474-479)
name() should be declared external:
- MoneyMoon.name() (#771-773)
symbol() should be declared external:
- MoneyMoon.symbol() (#775-777)
decimals() should be declared external:
- MoneyMoon.decimals() (#779-781)
totalSupply() should be declared external:
- MoneyMoon.totalSupply() (#783-785)
transfer(address,uint256) should be declared external:
- MoneyMoon.transfer(address,uint256) (#792-795)
allowance(address,address) should be declared external:
- MoneyMoon.allowance(address,address) (#797-799)
approve(address,uint256) should be declared external:
- MoneyMoon.approve(address,uint256) (#801-804)
transferFrom(address,address,uint256) should be declared external:
- MoneyMoon.transferFrom(address,address,uint256) (#806-810)
increaseAllowance(address,uint256) should be declared external:
- MoneyMoon.increaseAllowance(address,uint256) (#812-815)
decreaseAllowance(address,uint256) should be declared external:
- MoneyMoon.decreaseAllowance(address,uint256) (#817-820)
isExcludedFromReward(address) should be declared external:
- MoneyMoon.isExcludedFromReward(address) (#822-824)
totalFees() should be declared external:
- MoneyMoon.totalFees() (#826-828)
deliver(uint256) should be declared external:
- MoneyMoon.deliver(uint256) (#830-837)
reflectionFromToken(uint256,bool) should be declared external:
- MoneyMoon.reflectionFromToken(uint256,bool) (#839-848)
excludeFromReward(address) should be declared external:
- MoneyMoon.excludeFromReward(address) (#856-863)
isExcludedFromFee(address) should be declared external:
- MoneyMoon.isExcludedFromFee(address) (#978-980)
excludeFromFee(address) should be declared external:
- MoneyMoon.excludeFromFee(address) (#1194-1196)
includeInFee(address) should be declared external:
- MoneyMoon.includeInFee(address) (#1198-1200)
setRouterAddress(address) should be declared external:
- MoneyMoon.setRouterAddress(address) (#1233-1237)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts