A decentralized and community-owned currency, MUNCH tokens are creating a fairer, more evenly distributed system that anyone can be a part of. All Munch transactions are subject to a 7% transaction fee that is distributed back to the community and charitable causes. Of this 7% collected,2% goes to marketing/buybacks and burns 2% will be redistributed to the community of MUNCH holders and 3% will be sent directly to a charitable cause, decided by the community. All donations and rewards are programmed to be inherently secure, automated, trustless, and immutable via the locked design of the contract. We’re biting back against traditional financial models and taking a bite out of poverty and hunger around the world at the same time. MUNCH gives people the opportunity to participate in a unique currency and marketplace, earn rewards, and distribute money to causes they support. The community decides the direction and future of MUNCH.
MUNCH.sendETHToCharity(uint256) (#923-925) sends eth to arbitrary user
Dangerous calls:
- _charityWalletAddress.transfer(amount) (#924)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in MUNCH._transfer(address,address,uint256) (#855-903):
External calls:
- swapTokensForEth(contractTokenBalance) (#878)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#914-920)
External calls sending eth:
- sendETHToCharity(address(this).balance) (#882)
- _charityWalletAddress.transfer(amount) (#924)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _rOwned[address(this)] = _rOwned[address(this)].add(rCharity) (#1010)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#969)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#978)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#989)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#970)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#980)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#990)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1001)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _rTotal = _rTotal.sub(rFee) (#1016)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _tOwned[address(this)] = _tOwned[address(this)].add(tCharity) (#1012)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#998)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#988)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#979)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1000)
- cooldown[sender] = block.timestamp + (60) (#898)
- cooldown[recipient] = block.timestamp + (60) (#901)
Apply the check-effects-interactions pattern.
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.
Contract ownership is not renounced (belongs to a wallet)
MUNCH._approve(address,address,uint256).owner (#847) shadows:
- Ownable.owner() (#387-389) (function)
MUNCH.allowance(address,address).owner (#742) shadows:
- Ownable.owner() (#387-389) (function)
Rename the local variables that shadow another component.
Additional information: link
MUNCH._setTaxFee(uint256) (#1073-1076) should emit an event for:
- _taxFee = taxFee (#1075)
MUNCH._setMaxTxAmount(uint256) (#1087-1090) should emit an event for:
- _maxTxAmount = maxTxAmount (#1089)
MUNCH._setCharityFee(uint256) (#1078-1081) should emit an event for:
- _charityFee = charityFee (#1080)
Emit an event for critical parameter changes.
Additional information: link
MUNCH._setCharityWallet(address).charityWalletAddress (#1083) lacks a zero-check on :
- _charityWalletAddress = charityWalletAddress (#1084)
MUNCH.constructor(address).charityWalletAddress (#697) lacks a zero-check on :
- _charityWalletAddress = charityWalletAddress (#698)
Check that the address is not zero.
Additional information: link
Function MUNCH._setMaxTxAmount(uint256) (#1087-1090) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#474) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#491) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#473) is not in mixedCase
Variable MUNCH._charityWalletAddress (#674) is not in mixedCase
Function MUNCH._setCharityWallet(address) (#1083-1085) is not in mixedCase
Function MUNCH._getETHBalance() (#1069-1071) is not in mixedCase
Function MUNCH._setTaxFee(uint256) (#1073-1076) is not in mixedCase
Function IUniswapV2Router01.WETH() (#511) is not in mixedCase
Function MUNCH._setCharityFee(uint256) (#1078-1081) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#8-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MUNCH._transfer(address,address,uint256) (#855-903):
External calls:
- sendETHToCharity(address(this).balance) (#882)
- _charityWalletAddress.transfer(amount) (#924)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _charityFee = _previousCharityFee (#840)
- _charityFee = 0 (#835)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _previousCharityFee = _charityFee (#832)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _previousTaxFee = _taxFee (#831)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _rOwned[address(this)] = _rOwned[address(this)].add(rCharity) (#1010)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#969)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#978)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#989)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#999)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#970)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#980)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#990)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1001)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _rTotal = _rTotal.sub(rFee) (#1016)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1017)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _tOwned[address(this)] = _tOwned[address(this)].add(tCharity) (#1012)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#998)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#988)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#979)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1000)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _taxFee = _previousTaxFee (#839)
- _taxFee = 0 (#834)
- cooldown[sender] = block.timestamp + (60) (#898)
- cooldown[recipient] = block.timestamp + (60) (#901)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#973)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- Transfer(sender,recipient,tTransferAmount) (#993)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- Transfer(sender,recipient,tTransferAmount) (#983)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- Transfer(sender,recipient,tTransferAmount) (#1004)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
Reentrancy in MUNCH.transferFrom(address,address,uint256) (#751-755):
External calls:
- _transfer(sender,recipient,amount) (#752)
- _charityWalletAddress.transfer(amount) (#924)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#753)
- _allowances[owner][spender] = amount (#851)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#852)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#753)
Apply the check-effects-interactions pattern.
Additional information: link
Variable MUNCH.reflectionFromToken(uint256,bool).rTransferAmount (#794) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH.reflectionFromToken(uint256,bool).rTransferAmount (#794) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#987) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH._transferStandard(address,address,uint256).rTransferAmount (#968) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable MUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#977) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH._transferStandard(address,address,uint256).rTransferAmount (#968) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH._getValues(uint256).rTransferAmount (#1026) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH._getRValues(uint256,uint256,uint256).rTransferAmount (#1040) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable MUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#987) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._transferStandard(address,address,uint256).rTransferAmount (#968) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#987) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable MUNCH._getRValues(uint256,uint256,uint256).rTransferAmount (#1040) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Variable MUNCH._getValues(uint256).rTransferAmount (#1026) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable MUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#977) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable MUNCH._getValues(uint256).rTransferAmount (#1026) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._getValues(uint256).rTransferAmount (#1026) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Variable MUNCH.reflectionFromToken(uint256,bool).rTransferAmount (#794) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Variable MUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#987) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#977) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._getRValues(uint256,uint256,uint256).rTransferAmount (#1040) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._getValues(uint256).rTransferAmount (#1026) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#977) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable MUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH.reflectionFromToken(uint256,bool).rTransferAmount (#794) is too similar to MUNCH._transferFromExcluded(address,address,uint256).tTransferAmount (#987)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#516) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#517)
Variable MUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#977) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Variable MUNCH._transferToExcluded(address,address,uint256).rTransferAmount (#977) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH._getRValues(uint256,uint256,uint256).rTransferAmount (#1040) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH.reflectionFromToken(uint256,bool).rTransferAmount (#794) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#987) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH._getRValues(uint256,uint256,uint256).rTransferAmount (#1040) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH._getValues(uint256).rTransferAmount (#1026) is too similar to MUNCH._transferBothExcluded(address,address,uint256).tTransferAmount (#997)
Variable MUNCH._transferStandard(address,address,uint256).rTransferAmount (#968) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH._getRValues(uint256,uint256,uint256).rTransferAmount (#1040) is too similar to MUNCH._getTValues(uint256,uint256,uint256).tTransferAmount (#1033)
Variable MUNCH._transferStandard(address,address,uint256).rTransferAmount (#968) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH.reflectionFromToken(uint256,bool).rTransferAmount (#794) is too similar to MUNCH._getValues(uint256).tTransferAmount (#1024)
Variable MUNCH._transferFromExcluded(address,address,uint256).rTransferAmount (#987) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Variable MUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Variable MUNCH._transferBothExcluded(address,address,uint256).rTransferAmount (#997) is too similar to MUNCH._transferToExcluded(address,address,uint256).tTransferAmount (#977)
Variable MUNCH._transferStandard(address,address,uint256).rTransferAmount (#968) is too similar to MUNCH._transferStandard(address,address,uint256).tTransferAmount (#968)
Prevent variables from having similar names.
Additional information: link
MUNCH._decimals (#667) should be constant
MUNCH._numOfTokensToExchangeForCharity (#686) should be constant
MUNCH._tTotal (#661) should be constant
MUNCH._symbol (#666) should be constant
MUNCH._name (#665) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Ownable.unlock() (#434-439) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#436)
MUNCH._transfer(address,address,uint256) (#855-903) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(! cooldownEnabled || (cooldown[sender] < block.timestamp && cooldown[recipient] < block.timestamp),Cooldown is enabled. Try again in a few minutes.) (#859)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#344-365) uses assembly
- INLINE ASM (#357-360)
Address.isContract(address) (#251-260) uses assembly
- INLINE ASM (#258)
Do not use evm assembly.
Additional information: link
transfer(address,uint256) should be declared external:
- MUNCH.transfer(address,uint256) (#737-740)
allowance(address,address) should be declared external:
- MUNCH.allowance(address,address) (#742-744)
transferFrom(address,address,uint256) should be declared external:
- MUNCH.transferFrom(address,address,uint256) (#751-755)
_getETHBalance() should be declared external:
- MUNCH._getETHBalance() (#1069-1071)
isExcludedFromFee(address) should be declared external:
- MUNCH.isExcludedFromFee(address) (#843-845)
increaseAllowance(address,uint256) should be declared external:
- MUNCH.increaseAllowance(address,uint256) (#757-760)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#406-409)
approve(address,uint256) should be declared external:
- MUNCH.approve(address,uint256) (#746-749)
decimals() should be declared external:
- MUNCH.decimals() (#724-726)
reflectionFromToken(uint256,bool) should be declared external:
- MUNCH.reflectionFromToken(uint256,bool) (#788-797)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#415-419)
totalSupply() should be declared external:
- MUNCH.totalSupply() (#728-730)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#421-423)
name() should be declared external:
- MUNCH.name() (#716-718)
isExcluded(address) should be declared external:
- MUNCH.isExcluded(address) (#767-769)
totalFees() should be declared external:
- MUNCH.totalFees() (#775-777)
unlock() should be declared external:
- Ownable.unlock() (#434-439)
deliver(uint256) should be declared external:
- MUNCH.deliver(uint256) (#779-786)
decreaseAllowance(address,uint256) should be declared external:
- MUNCH.decreaseAllowance(address,uint256) (#762-765)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#426-431)
symbol() should be declared external:
- MUNCH.symbol() (#720-722)
Use the external attribute for functions never called from the contract.
Additional information: link
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#344-365):
- (success,returndata) = target.call{value: weiValue}(data) (#348)
Low level call in Address.sendValue(address,uint256) (#278-284):
- (success) = recipient.call{value: amount}() (#282)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
MUNCH.includeAccount(address) (#815-826) has costly operations inside a loop:
- _excluded.pop() (#822)
Use a local variable to hold the loop computation result.
Additional information: link
Reentrancy in MUNCH.transferFrom(address,address,uint256) (#751-755):
External calls:
- _transfer(sender,recipient,amount) (#752)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#914-920)
External calls sending eth:
- _transfer(sender,recipient,amount) (#752)
- _charityWalletAddress.transfer(amount) (#924)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#753)
- _allowances[owner][spender] = amount (#851)
Reentrancy in MUNCH._transfer(address,address,uint256) (#855-903):
External calls:
- swapTokensForEth(contractTokenBalance) (#878)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#914-920)
External calls sending eth:
- sendETHToCharity(address(this).balance) (#882)
- _charityWalletAddress.transfer(amount) (#924)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _charityFee = _previousCharityFee (#840)
- _charityFee = 0 (#835)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _previousCharityFee = _charityFee (#832)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _previousTaxFee = _taxFee (#831)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1017)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- _taxFee = _previousTaxFee (#839)
- _taxFee = 0 (#834)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MUNCH._transfer(address,address,uint256) (#855-903):
External calls:
- swapTokensForEth(contractTokenBalance) (#878)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#914-920)
External calls sending eth:
- sendETHToCharity(address(this).balance) (#882)
- _charityWalletAddress.transfer(amount) (#924)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#973)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- Transfer(sender,recipient,tTransferAmount) (#993)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- Transfer(sender,recipient,tTransferAmount) (#983)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
- Transfer(sender,recipient,tTransferAmount) (#1004)
- _tokenTransfer(sender,recipient,amount,takeFee) (#895)
Reentrancy in MUNCH.transferFrom(address,address,uint256) (#751-755):
External calls:
- _transfer(sender,recipient,amount) (#752)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#914-920)
External calls sending eth:
- _transfer(sender,recipient,amount) (#752)
- _charityWalletAddress.transfer(amount) (#924)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#852)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#753)
Apply the check-effects-interactions pattern.
Additional information: link
Address.sendValue(address,uint256) (#278-284) is never used and should be removed
MUNCH._getMaxTxAmount() (#1065-1067) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#329-331) is never used and should be removed
MUNCH._getTaxFee() (#1061-1063) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#339-342) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#211-213) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#344-365) is never used and should be removed
Address.isContract(address) (#251-260) is never used and should be removed
Address.functionCall(address,bytes,string) (#314-316) is never used and should be removed
Address.functionCall(address,bytes) (#304-306) is never used and should be removed
Remove unused functions.
Additional information: link
MUNCH._previousCharityFee (#672) is set pre-construction with a non-constant function or state variable:
- _charityFee
MUNCH._previousTaxFee (#671) is set pre-construction with a non-constant function or state variable:
- _taxFee
MUNCH._rTotal (#662) 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
MUNCH.slitherConstructorVariables() (#645-1092) uses literals with too many digits:
- _maxTxAmount = 100000000000000e9 (#684)
MUNCH.slitherConstructorVariables() (#645-1092) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 6 * 10 ** 9 (#661)
MUNCH._setMaxTxAmount(uint256) (#1087-1090) uses literals with too many digits:
- require(bool,string)(maxTxAmount >= 100000000e9,maxTxAmount should be greater than 100000000e9) (#1088)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Contract has 1% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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 verify token contract address on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Twitter account link seems to be invalid