MoonRise is an improved fork of the wildly-successful EverRise token, with a suite of improved features and tokenomics. Community members will be able to participate in "Moon Shots" using the Whale Wallet's BNB. MoonShots will be activated at holder milestones during MoonRise's launch phase, but eventually will be controlled through a community-consensus based dApp.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in MoonRise._transfer(address,address,uint256) (#654-692):
External calls:
- swapTokens(contractTokenBalance) (#672)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#732-738)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
External calls sending eth:
- swapTokens(contractTokenBalance) (#672)
- recipient.transfer(amount) (#976)
- buyBackTokens(balance.div(100)) (#680)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _liquidityFee = _previousLiquidityFee (#908)
- _liquidityFee = 0 (#903)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#879)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#804)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#815)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#825)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#796)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#806)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#827)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _rTotal = _rTotal.sub(rFee) (#834)
- _tokenTransfer(from,to,amount,takeFee) (#691)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#881)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#824)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#814)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#805)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#826)
- buyBackTokens(balance.div(100)) (#680)
- inSwapAndLiquify = true (#508)
- inSwapAndLiquify = false (#510)
Apply the check-effects-interactions pattern.
Additional information: link
MoonRise.swapTokens(uint256) (#705-714) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#712)
Consider ordering multiplication before division.
Additional information: link
MoonRise.addLiquidity(uint256,uint256) (#760-773) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#765-772)
Ensure that all the return values of the function calls are used.
Additional information: link
MoonRise._approve(address,address,uint256).owner (#646) shadows:
- Ownable.owner() (#189-191) (function)
Rename the local variables that shadow another component.
Additional information: link
MoonRise.setBuybackUpperLimit(uint256) (#943-945) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#944)
Emit an event for critical parameter changes.
Additional information: link
MoonRise.setMarketingAddress(address)._marketingAddress (#947) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#948)
Check that the address is not zero.
Additional information: link
Reentrancy in MoonRise.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#732-738)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#976)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
- _allowances[owner][spender] = amount (#650)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MoonRise.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#732-738)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#976)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#651)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#224-229) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#226)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#156-173) uses assembly
- INLINE ASM (#165-168)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#111-114) is never used and should be removed
Remove unused functions.
Additional information: link
MoonRise._previousLiquidityFee (#472) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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
solc-0.8.4 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#156-173):
- (success,returndata) = target.call{value: weiValue}(data) (#159)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable MoonRise._maxTxAmount (#476) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#43)" inContext (#37-46)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MoonRise.transferFrom(address,address,uint256) (#564-568):
External calls:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#976)
External calls sending eth:
- _transfer(sender,recipient,amount) (#565)
- recipient.transfer(amount) (#976)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#750-755)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
- _allowances[owner][spender] = amount (#650)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#651)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#566)
Apply the check-effects-interactions pattern.
Additional information: link
Variable MoonRise._transferFromExcluded(address,address,uint256).rTransferAmount (#813) is too similar to MoonRise._transferToExcluded(address,address,uint256).tTransferAmount (#803)
Prevent variables from having similar names.
Additional information: link
MoonRise.slitherConstructorVariables() (#443-982) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#477)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MoonRise.deadAddress (#448) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setBuyBackEnabled(bool) should be declared external:
- MoonRise.setBuyBackEnabled(bool) (#956-959)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Token is deployed only at one blockchain
Unable to find PancakeSwap trading pair to compute liquidity.
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
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account