MarsRise ($MARSRISE) is a token launched on Binance Smart Chain with automatic liquidity pool growth and holder rewards through transaction taxation.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in MARSRISE._transfer(address,address,uint256) (#645-683):
External calls:
- swapTokens(contractTokenBalance) (#663)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
External calls sending eth:
- swapTokens(contractTokenBalance) (#663)
- recipient.transfer(amount) (#956)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _liquidityFee = _previousLiquidityFee (#888)
- _liquidityFee = 0 (#883)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#859)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#805)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#786)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#796)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _rTotal = _rTotal.sub(rFee) (#814)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#861)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#804)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#794)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#785)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#806)
- buyBackTokens(balance.div(100)) (#671)
- inSwapAndLiquify = true (#499)
- inSwapAndLiquify = false (#501)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
MARSRISE.allowance(address,address).owner (#546) shadows:
- Ownable.owner() (#180-182) (function)
MARSRISE._approve(address,address,uint256).owner (#637) shadows:
- Ownable.owner() (#180-182) (function)
Rename the local variables that shadow another component.
Additional information: link
MARSRISE.setMarketingAddress(address)._marketingAddress (#927) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#928)
Check that the address is not zero.
Additional information: link
MARSRISE.swapTokens(uint256) (#685-694) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#692)
Consider ordering multiplication before division.
Additional information: link
MARSRISE.addLiquidity(uint256,uint256) (#740-753) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#745-752)
Ensure that all the return values of the function calls are used.
Additional information: link
MARSRISE.setTaxFeePercent(uint256) (#903-905) should emit an event for:
- _taxFee = taxFee (#904)
MARSRISE.setLiquidityFeePercent(uint256) (#907-909) should emit an event for:
- _liquidityFee = liquidityFee (#908)
MARSRISE.setMaxTxAmount(uint256) (#911-913) should emit an event for:
- _maxTxAmount = maxTxAmount (#912)
MARSRISE.setMarketingDivisor(uint256) (#915-917) should emit an event for:
- marketingDivisor = divisor (#916)
MARSRISE.setNumTokensSellToAddToLiquidity(uint256) (#919-921) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#920)
MARSRISE.setBuybackUpperLimit(uint256) (#923-925) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#924)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in MARSRISE._transfer(address,address,uint256) (#645-683):
External calls:
- swapTokens(contractTokenBalance) (#663)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
External calls sending eth:
- swapTokens(contractTokenBalance) (#663)
- recipient.transfer(amount) (#956)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _previousLiquidityFee = _liquidityFee (#880)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _previousTaxFee = _taxFee (#879)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _tFeeTotal = _tFeeTotal.add(tFee) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _taxFee = _previousTaxFee (#887)
- _taxFee = 0 (#882)
Reentrancy in MARSRISE.constructor() (#504-518):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#508-509)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#514)
- _isExcludedFromFee[address(this)] = true (#515)
- uniswapV2Router = _uniswapV2Router (#511)
Reentrancy in MARSRISE.transferFrom(address,address,uint256) (#555-559):
External calls:
- _transfer(sender,recipient,amount) (#556)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- _transfer(sender,recipient,amount) (#556)
- recipient.transfer(amount) (#956)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#557)
- _allowances[owner][spender] = amount (#641)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MARSRISE._transfer(address,address,uint256) (#645-683):
External calls:
- swapTokens(contractTokenBalance) (#663)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
External calls sending eth:
- swapTokens(contractTokenBalance) (#663)
- recipient.transfer(amount) (#956)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#737)
- buyBackTokens(balance.div(100)) (#671)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- Transfer(sender,recipient,tTransferAmount) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- Transfer(sender,recipient,tTransferAmount) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- Transfer(sender,recipient,tTransferAmount) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#682)
Reentrancy in MARSRISE.constructor() (#504-518):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#508-509)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#517)
Reentrancy in MARSRISE.swapETHForTokens(uint256) (#723-738):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#737)
Reentrancy in MARSRISE.swapTokensForEth(uint256) (#703-721):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#720)
Reentrancy in MARSRISE.transferFrom(address,address,uint256) (#555-559):
External calls:
- _transfer(sender,recipient,amount) (#556)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#712-718)
External calls sending eth:
- _transfer(sender,recipient,amount) (#556)
- recipient.transfer(amount) (#956)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#642)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#557)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#215-220) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#217)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#110-119) uses assembly
- INLINE ASM (#117)
Address._functionCallWithValue(address,bytes,uint256,string) (#147-164) uses assembly
- INLINE ASM (#156-159)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#147-164) is never used and should be removed
Address.functionCall(address,bytes) (#130-132) is never used and should be removed
Address.functionCall(address,bytes,string) (#134-136) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#138-140) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#142-145) is never used and should be removed
Address.isContract(address) (#110-119) is never used and should be removed
Address.sendValue(address,uint256) (#121-127) is never used and should be removed
Context._msgData() (#33-36) is never used and should be removed
MARSRISE.addLiquidity(uint256,uint256) (#740-753) is never used and should be removed
SafeMath.mod(uint256,uint256) (#98-100) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#102-105) is never used and should be removed
Remove unused functions.
Additional information: link
MARSRISE._rTotal (#451) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MARSRISE._previousTaxFee (#460) is set pre-construction with a non-constant function or state variable:
- _taxFee
MARSRISE._previousLiquidityFee (#463) 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
Low level call in Address.sendValue(address,uint256) (#121-127):
- (success) = recipient.call{value: amount}() (#125)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#147-164):
- (success,returndata) = target.call{value: weiValue}(data) (#150)
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() (#259) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#260) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#276) is not in mixedCase
Function IUniswapV2Router01.WETH() (#297) is not in mixedCase
Parameter MARSRISE.calculateTaxFee(uint256)._amount (#864) is not in mixedCase
Parameter MARSRISE.calculateLiquidityFee(uint256)._amount (#870) is not in mixedCase
Parameter MARSRISE.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#919) is not in mixedCase
Parameter MARSRISE.setMarketingAddress(address)._marketingAddress (#927) is not in mixedCase
Parameter MARSRISE.setSwapAndLiquifyEnabled(bool)._enabled (#931) is not in mixedCase
Parameter MARSRISE.setBuyBackEnabled(bool)._enabled (#936) is not in mixedCase
Variable MARSRISE._taxFee (#459) is not in mixedCase
Variable MARSRISE._liquidityFee (#462) is not in mixedCase
Variable MARSRISE._maxTxAmount (#467) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#34)" inContext (#28-37)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MARSRISE._transfer(address,address,uint256) (#645-683):
External calls:
- swapTokens(contractTokenBalance) (#663)
- recipient.transfer(amount) (#956)
External calls sending eth:
- swapTokens(contractTokenBalance) (#663)
- recipient.transfer(amount) (#956)
- buyBackTokens(balance.div(100)) (#671)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _liquidityFee = _previousLiquidityFee (#888)
- _liquidityFee = 0 (#883)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _previousLiquidityFee = _liquidityFee (#880)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _previousTaxFee = _taxFee (#879)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#859)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#775)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#784)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#805)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#786)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#796)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _rTotal = _rTotal.sub(rFee) (#814)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _tFeeTotal = _tFeeTotal.add(tFee) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#861)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#804)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#794)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#785)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- _taxFee = _previousTaxFee (#887)
- _taxFee = 0 (#882)
- buyBackTokens(balance.div(100)) (#671)
- inSwapAndLiquify = true (#499)
- inSwapAndLiquify = false (#501)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#737)
- buyBackTokens(balance.div(100)) (#671)
- Transfer(sender,recipient,tTransferAmount) (#779)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- Transfer(sender,recipient,tTransferAmount) (#789)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- Transfer(sender,recipient,tTransferAmount) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#682)
- Transfer(sender,recipient,tTransferAmount) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#682)
Reentrancy in MARSRISE.transferFrom(address,address,uint256) (#555-559):
External calls:
- _transfer(sender,recipient,amount) (#556)
- recipient.transfer(amount) (#956)
External calls sending eth:
- _transfer(sender,recipient,amount) (#556)
- recipient.transfer(amount) (#956)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#730-735)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#557)
- _allowances[owner][spender] = amount (#641)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#642)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#557)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#302) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#303)
Variable MARSRISE._transferToExcluded(address,address,uint256).rTransferAmount (#783) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE._transferBothExcluded(address,address,uint256).rTransferAmount (#803) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE._transferBothExcluded(address,address,uint256).rTransferAmount (#803) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE._transferFromExcluded(address,address,uint256).rTransferAmount (#793) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#835) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE._transferFromExcluded(address,address,uint256).rTransferAmount (#793) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE._getValues(uint256).rTransferAmount (#820) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE._transferToExcluded(address,address,uint256).rTransferAmount (#783) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE._transferToExcluded(address,address,uint256).rTransferAmount (#783) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE._transferBothExcluded(address,address,uint256).rTransferAmount (#803) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE._transferFromExcluded(address,address,uint256).rTransferAmount (#793) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE._getValues(uint256).rTransferAmount (#820) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE._transferToExcluded(address,address,uint256).rTransferAmount (#783) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE._transferToExcluded(address,address,uint256).rTransferAmount (#783) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Variable MARSRISE._transferToExcluded(address,address,uint256).rTransferAmount (#783) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE._getValues(uint256).rTransferAmount (#820) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE._transferBothExcluded(address,address,uint256).rTransferAmount (#803) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE._getValues(uint256).rTransferAmount (#820) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE._transferFromExcluded(address,address,uint256).rTransferAmount (#793) is too similar to MARSRISE._getTValues(uint256).tTransferAmount (#827)
Variable MARSRISE._transferBothExcluded(address,address,uint256).rTransferAmount (#803) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Variable MARSRISE._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#835) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Variable MARSRISE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#835) is too similar to MARSRISE._transferBothExcluded(address,address,uint256).tTransferAmount (#803)
Variable MARSRISE.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Variable MARSRISE._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE._getValues(uint256).rTransferAmount (#820) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE._transferFromExcluded(address,address,uint256).rTransferAmount (#793) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Variable MARSRISE._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#835) is too similar to MARSRISE._transferFromExcluded(address,address,uint256).tTransferAmount (#793)
Variable MARSRISE._transferBothExcluded(address,address,uint256).rTransferAmount (#803) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#835) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE.reflectionFromToken(uint256,bool).rTransferAmount (#603) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE._transferFromExcluded(address,address,uint256).rTransferAmount (#793) is too similar to MARSRISE._transferToExcluded(address,address,uint256).tTransferAmount (#783)
Variable MARSRISE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#835) is too similar to MARSRISE._transferStandard(address,address,uint256).tTransferAmount (#774)
Variable MARSRISE._getValues(uint256).rTransferAmount (#820) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Variable MARSRISE._transferStandard(address,address,uint256).rTransferAmount (#774) is too similar to MARSRISE._getValues(uint256).tTransferAmount (#819)
Prevent variables from having similar names.
Additional information: link
MARSRISE.prepareForPreSale() (#941-946) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#945)
MARSRISE.afterPreSale() (#948-953) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#952)
MARSRISE.slitherConstructorVariables() (#434-962) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#439)
MARSRISE.slitherConstructorVariables() (#434-962) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#450)
MARSRISE.slitherConstructorVariables() (#434-962) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#467)
MARSRISE.slitherConstructorVariables() (#434-962) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#468)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MARSRISE._decimals (#456) should be constant
MARSRISE._name (#454) should be constant
MARSRISE._symbol (#455) should be constant
MARSRISE._tTotal (#450) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#189-192)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#194-198)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#200-202)
getTime() should be declared external:
- Ownable.getTime() (#204-206)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#208-213)
unlock() should be declared external:
- Ownable.unlock() (#215-220)
name() should be declared external:
- MARSRISE.name() (#520-522)
symbol() should be declared external:
- MARSRISE.symbol() (#524-526)
decimals() should be declared external:
- MARSRISE.decimals() (#528-530)
totalSupply() should be declared external:
- MARSRISE.totalSupply() (#532-534)
transfer(address,uint256) should be declared external:
- MARSRISE.transfer(address,uint256) (#541-544)
allowance(address,address) should be declared external:
- MARSRISE.allowance(address,address) (#546-548)
approve(address,uint256) should be declared external:
- MARSRISE.approve(address,uint256) (#550-553)
transferFrom(address,address,uint256) should be declared external:
- MARSRISE.transferFrom(address,address,uint256) (#555-559)
increaseAllowance(address,uint256) should be declared external:
- MARSRISE.increaseAllowance(address,uint256) (#561-564)
decreaseAllowance(address,uint256) should be declared external:
- MARSRISE.decreaseAllowance(address,uint256) (#566-569)
isExcludedFromReward(address) should be declared external:
- MARSRISE.isExcludedFromReward(address) (#571-573)
totalFees() should be declared external:
- MARSRISE.totalFees() (#575-577)
minimumTokensBeforeSwapAmount() should be declared external:
- MARSRISE.minimumTokensBeforeSwapAmount() (#579-581)
buyBackUpperLimitAmount() should be declared external:
- MARSRISE.buyBackUpperLimitAmount() (#583-585)
deliver(uint256) should be declared external:
- MARSRISE.deliver(uint256) (#587-594)
reflectionFromToken(uint256,bool) should be declared external:
- MARSRISE.reflectionFromToken(uint256,bool) (#597-606)
excludeFromReward(address) should be declared external:
- MARSRISE.excludeFromReward(address) (#614-622)
isExcludedFromFee(address) should be declared external:
- MARSRISE.isExcludedFromFee(address) (#891-893)
excludeFromFee(address) should be declared external:
- MARSRISE.excludeFromFee(address) (#895-897)
includeInFee(address) should be declared external:
- MARSRISE.includeInFee(address) (#899-901)
setBuyBackEnabled(bool) should be declared external:
- MARSRISE.setBuyBackEnabled(bool) (#936-939)
Use the external attribute for functions never called from the contract.
Additional information: link
MARSRISE.includeInReward(address) (#624-635) has costly operations inside a loop:
- _excluded.pop() (#631)
Use a local variable to hold the loop computation result.
Additional information: link
Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.
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.
Token is deployed only at one blockchain
Unable to find token contract audit
Token is not listed at Mobula.Finance
Additional information: link
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account