The Moonarium blockchain layer-1 solution is a work-in-progress blockchain network designed by the Moonarium development team. Focusing on scaling its current host chain, Binance Smart Chain, Moonarium will be a layer-1 protocol promising faster transactions with lower costs.
Reentrancy in Moonarium109._transfer(address,address,uint256) (#503-554):
External calls:
- swapAndLiquify(contractTokenBalance) (#535)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tOwned[sender] = _tOwned[sender] - tAmount (#637)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#638)
- _tOwned[sender] = _tOwned[sender] - tAmount (#649)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#650)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#651)
- _tOwned[sender] = _tOwned[sender] - tAmount (#662)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#663)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#664)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tTotal = _tTotal - tAmount (#642)
- _tTotal = _tTotal - tTransferAmount (#655)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#668)
- txCount ++ (#548)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Reentrancy in Moonarium109._transfer(address,address,uint256) (#503-554):
External calls:
- swapAndLiquify(contractTokenBalance) (#535)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#639)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount) (#652)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#665)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
Reentrancy in Moonarium109.constructor() (#414-435):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#424-425)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#433)
Reentrancy in Moonarium109.swapAndLiquify(uint256) (#562-592):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#574)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#499)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- SwapAndLiquify(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D),tokens_to_LP_Half) (#585)
Reentrancy in Moonarium109.transferFrom(address,address,uint256) (#471-475):
External calls:
- _transfer(sender,recipient,amount) (#472)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- _transfer(sender,recipient,amount) (#472)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#499)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#473)
Apply the check-effects-interactions pattern.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#133-146) is never used and should be removed
Address.functionCall(address,bytes) (#93-95) is never used and should be removed
Address.functionCall(address,bytes,string) (#97-99) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#101-103) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#105-110) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#123-125) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#127-131) is never used and should be removed
Address.functionStaticCall(address,bytes) (#112-114) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#116-120) is never used and should be removed
Address.isContract(address) (#81-85) is never used and should be removed
Address.sendValue(address,uint256) (#87-91) is never used and should be removed
Context._msgData() (#72-75) is never used and should be removed
Moonarium109._getCurrentSupply() (#489-491) is never used and should be removed
SafeMath.div(uint256,uint256) (#46-48) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#57-62) is never used and should be removed
SafeMath.mul(uint256,uint256) (#42-44) is never used and should be removed
SafeMath.sub(uint256,uint256) (#38-40) is never used and should be removed
Remove unused functions.
Additional information: link
Moonarium109._maxWalletToken (#388) is set pre-construction with a non-constant function or state variable:
- _tTotal * 2 / 100
Moonarium109._previousMaxWalletToken (#389) is set pre-construction with a non-constant function or state variable:
- _maxWalletToken
Moonarium109._maxTxAmount (#391) is set pre-construction with a non-constant function or state variable:
- _tTotal * 2 / 100
Moonarium109._previousMaxTxAmount (#392) is set pre-construction with a non-constant function or state variable:
- _maxTxAmount
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) (#87-91):
- (success) = recipient.call{value: amount}() (#89)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#105-110):
- (success,returndata) = target.call{value: value}(data) (#108)
Low level call in Address.functionStaticCall(address,bytes,string) (#116-120):
- (success,returndata) = target.staticcall(data) (#118)
Low level call in Address.functionDelegateCall(address,bytes,string) (#127-131):
- (success,returndata) = target.delegatecall(data) (#129)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#210) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#211)
Variable Moonarium109.swapAndLiquify(uint256).tokens_to_D (#570) is too similar to Moonarium109.swapAndLiquify(uint256).tokens_to_M (#569)
Prevent variables from having similar names.
Additional information: link
Moonarium109.swapAndLiquify(uint256) (#562-592) performs a multiplication on the result of a division:
-split_M = Percent_Marketing * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#577)
-BNB_M = BNB_Total * split_M / 100 (#578)
Moonarium109.swapAndLiquify(uint256) (#562-592) performs a multiplication on the result of a division:
-split_D = Percent_Dev * 100 / (Percent_AutoLP + Percent_Marketing + Percent_Dev) (#580)
-BNB_D = BNB_Total * split_D / 100 (#581)
Consider ordering multiplication before division.
Additional information: link
Redundant expression "this (#73)" inContext (#67-76)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Moonarium109.Percent_AutoLP (#386) should be constant
Moonarium109.Percent_Burn (#385) should be constant
Moonarium109.Percent_Dev (#384) should be constant
Moonarium109.Percent_Marketing (#383) should be constant
Moonarium109.Wallet_Dev (#367) should be constant
Moonarium109.Wallet_Marketing (#366) should be constant
Moonarium109._Tax_On_Buy (#380) should be constant
Moonarium109._Tax_On_Sell (#381) should be constant
Moonarium109.swapAndLiquifyEnabled (#398) should be constant
Moonarium109.swapTrigger (#378) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Moonarium109._transfer(address,address,uint256).isBuy (#539) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Pragma version0.8.10 (#17) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 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
Moonarium109.addLiquidity(uint256,uint256) (#610-621) ignores return value by uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
Ensure that all the return values of the function calls are used.
Additional information: link
Address.isContract(address) (#81-85) uses assembly
- INLINE ASM (#83)
Address._verifyCallResult(bool,bytes,string) (#133-146) uses assembly
- INLINE ASM (#138-141)
Do not use evm assembly.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#175) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#176) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#189) is not in mixedCase
Function IUniswapV2Router01.WETH() (#206) is not in mixedCase
Parameter Moonarium109.addLiquidity(uint256,uint256).BNBAmount (#610) is not in mixedCase
Function Moonarium109.remove_Random_Tokens(address,uint256) (#623-629) is not in mixedCase
Parameter Moonarium109.remove_Random_Tokens(address,uint256).random_Token_Address (#623) is not in mixedCase
Parameter Moonarium109.remove_Random_Tokens(address,uint256).percent_of_Tokens (#623) is not in mixedCase
Variable Moonarium109._isExcludedFromFee (#364) is not in mixedCase
Variable Moonarium109.Wallet_Marketing (#366) is not in mixedCase
Variable Moonarium109.Wallet_Dev (#367) is not in mixedCase
Constant Moonarium109.Wallet_Burn (#368) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Moonarium109._decimals (#372) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Moonarium109._name (#374) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Moonarium109._symbol (#375) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Moonarium109._Tax_On_Buy (#380) is not in mixedCase
Variable Moonarium109._Tax_On_Sell (#381) is not in mixedCase
Variable Moonarium109.Percent_Marketing (#383) is not in mixedCase
Variable Moonarium109.Percent_Dev (#384) is not in mixedCase
Variable Moonarium109.Percent_Burn (#385) is not in mixedCase
Variable Moonarium109.Percent_AutoLP (#386) is not in mixedCase
Variable Moonarium109._maxWalletToken (#388) is not in mixedCase
Variable Moonarium109._maxTxAmount (#391) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in Moonarium109._transfer(address,address,uint256) (#503-554):
External calls:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#535)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tOwned[sender] = _tOwned[sender] - tAmount (#637)
- _tOwned[recipient] = _tOwned[recipient] + tAmount (#638)
- _tOwned[sender] = _tOwned[sender] - tAmount (#649)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount (#650)
- _tOwned[address(this)] = _tOwned[address(this)] + buyFEE (#651)
- _tOwned[sender] = _tOwned[sender] - tAmount (#662)
- _tOwned[recipient] = _tOwned[recipient] + tTransferAmount_scope_0 (#663)
- _tOwned[address(this)] = _tOwned[address(this)] + sellFEE (#664)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- _tTotal = _tTotal - tAmount (#642)
- _tTotal = _tTotal - tTransferAmount (#655)
- _tTotal = _tTotal - tTransferAmount_scope_0 (#668)
- txCount ++ (#548)
Event emitted after the call(s):
- Transfer(sender,recipient,tAmount) (#639)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount) (#652)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
- Transfer(sender,recipient,tTransferAmount_scope_0) (#665)
- _tokenTransfer(from,to,amount,takeFee,isBuy) (#552)
Reentrancy in Moonarium109.transferFrom(address,address,uint256) (#471-475):
External calls:
- _transfer(sender,recipient,amount) (#472)
- wallet.transfer(amount) (#557)
External calls sending eth:
- _transfer(sender,recipient,amount) (#472)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#473)
- _allowances[theOwner][theSpender] = amount (#498)
Event emitted after the call(s):
- Approval(theOwner,theSpender,amount) (#499)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#473)
Apply the check-effects-interactions pattern.
Additional information: link
Moonarium109.slitherConstructorConstantVariables() (#340-677) uses literals with too many digits:
- Wallet_Burn = address(0x000000000000000000000000000000000000dEaD) (#368)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Moonarium109.renounceOwnership() (#357-360)
name() should be declared external:
- Moonarium109.name() (#437-439)
symbol() should be declared external:
- Moonarium109.symbol() (#441-443)
decimals() should be declared external:
- Moonarium109.decimals() (#445-447)
totalSupply() should be declared external:
- Moonarium109.totalSupply() (#449-451)
transfer(address,uint256) should be declared external:
- Moonarium109.transfer(address,uint256) (#457-460)
allowance(address,address) should be declared external:
- Moonarium109.allowance(address,address) (#462-464)
approve(address,uint256) should be declared external:
- Moonarium109.approve(address,uint256) (#466-469)
transferFrom(address,address,uint256) should be declared external:
- Moonarium109.transferFrom(address,address,uint256) (#471-475)
increaseAllowance(address,uint256) should be declared external:
- Moonarium109.increaseAllowance(address,uint256) (#477-480)
decreaseAllowance(address,uint256) should be declared external:
- Moonarium109.decreaseAllowance(address,uint256) (#482-485)
remove_Random_Tokens(address,uint256) should be declared external:
- Moonarium109.remove_Random_Tokens(address,uint256) (#623-629)
Use the external attribute for functions never called from the contract.
Additional information: link
Moonarium109.MAX (#371) is never used in Moonarium109 (#340-677)
Moonarium109._previousMaxWalletToken (#389) is never used in Moonarium109 (#340-677)
Moonarium109._previousMaxTxAmount (#392) is never used in Moonarium109 (#340-677)
Remove unused state variables.
Additional information: link
Reentrancy in Moonarium109.constructor() (#414-435):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#424-425)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#428)
- _isExcludedFromFee[address(this)] = true (#429)
- _isExcludedFromFee[Wallet_Marketing] = true (#430)
- _isExcludedFromFee[Wallet_Burn] = true (#431)
- uniswapV2Router = _uniswapV2Router (#426)
Reentrancy in Moonarium109.swapAndLiquify(uint256) (#562-592):
External calls:
- swapTokensForBNB(tokens_to_LP_Half + tokens_to_M + tokens_to_D) (#574)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
External calls sending eth:
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
State variables written after the call(s):
- addLiquidity(tokens_to_LP_Half,(BNB_Total - BNB_M - BNB_D)) (#584)
- _allowances[theOwner][theSpender] = amount (#498)
Reentrancy in Moonarium109.transferFrom(address,address,uint256) (#471-475):
External calls:
- _transfer(sender,recipient,amount) (#472)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#600-606)
External calls sending eth:
- _transfer(sender,recipient,amount) (#472)
- wallet.transfer(amount) (#557)
- uniswapV2Router.addLiquidityETH{value: BNBAmount}(address(this),tokenAmount,0,0,Wallet_Burn,block.timestamp) (#613-620)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#473)
- _allowances[theOwner][theSpender] = amount (#498)
Apply the check-effects-interactions pattern.
Additional information: link
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Average 30d PancakeSwap liquidity is low.
Contract has 10% buy tax and 9% 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
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account link seems to be invalid
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account