MARS INU is a decentralized cryptocurrency token built on Binance Smart Chain network. It was created with the community and investor in mind.
Reentrancy in MARSINU._transfer(address,address,uint256) (#641-679):
External calls:
- swapTokens(contractTokenBalance) (#659)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#708-714)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
External calls sending eth:
- swapTokens(contractTokenBalance) (#659)
- recipient.transfer(amount) (#952)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _liquidityFee = _previousLiquidityFee (#884)
- _liquidityFee = 0 (#879)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#855)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#771)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#791)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#801)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rTotal = _rTotal.sub(rFee) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#857)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#800)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#790)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#781)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#802)
- buyBackTokens(balance.div(100)) (#667)
- inSwapAndLiquify = true (#495)
- inSwapAndLiquify = false (#497)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
MARSINU.swapTokens(uint256) (#681-690) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#688)
Consider ordering multiplication before division.
Additional information: link
MARSINU.includeInReward(address) (#620-631) has costly operations inside a loop:
- _excluded.pop() (#627)
Use a local variable to hold the loop computation result.
Additional information: link
MARSINU.addLiquidity(uint256,uint256) (#736-749) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#741-748)
Ensure that all the return values of the function calls are used.
Additional information: link
MARSINU._approve(address,address,uint256).owner (#633) shadows:
- Ownable.owner() (#176-178) (function)
MARSINU.allowance(address,address).owner (#542) shadows:
- Ownable.owner() (#176-178) (function)
Rename the local variables that shadow another component.
Additional information: link
MARSINU.setMaxTxAmount(uint256) (#907-909) should emit an event for:
- _maxTxAmount = maxTxAmount (#908)
MARSINU.setMarketingDivisor(uint256) (#911-913) should emit an event for:
- marketingDivisor = divisor (#912)
MARSINU.setLiquidityFeePercent(uint256) (#903-905) should emit an event for:
- _liquidityFee = liquidityFee (#904)
MARSINU.setTaxFeePercent(uint256) (#899-901) should emit an event for:
- _taxFee = taxFee (#900)
MARSINU.setNumTokensSellToAddToLiquidity(uint256) (#915-917) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#916)
MARSINU.setBuybackUpperLimit(uint256) (#919-921) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#920)
Emit an event for critical parameter changes.
Additional information: link
MARSINU.setMarketingAddress(address)._marketingAddress (#923) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#924)
Check that the address is not zero.
Additional information: link
Reentrancy in MARSINU._transfer(address,address,uint256) (#641-679):
External calls:
- swapTokens(contractTokenBalance) (#659)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#708-714)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
External calls sending eth:
- swapTokens(contractTokenBalance) (#659)
- recipient.transfer(amount) (#952)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousLiquidityFee = _liquidityFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousTaxFee = _taxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tFeeTotal = _tFeeTotal.add(tFee) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _taxFee = _previousTaxFee (#883)
- _taxFee = 0 (#878)
Reentrancy in MARSINU.transferFrom(address,address,uint256) (#551-555):
External calls:
- _transfer(sender,recipient,amount) (#552)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#708-714)
External calls sending eth:
- _transfer(sender,recipient,amount) (#552)
- recipient.transfer(amount) (#952)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
- _allowances[owner][spender] = amount (#637)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MARSINU.swapTokensForEth(uint256) (#699-717):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#708-714)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#716)
Reentrancy in MARSINU._transfer(address,address,uint256) (#641-679):
External calls:
- swapTokens(contractTokenBalance) (#659)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#708-714)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
External calls sending eth:
- swapTokens(contractTokenBalance) (#659)
- recipient.transfer(amount) (#952)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#733)
- buyBackTokens(balance.div(100)) (#667)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#678)
Reentrancy in MARSINU.swapETHForTokens(uint256) (#719-734):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#733)
Reentrancy in MARSINU.transferFrom(address,address,uint256) (#551-555):
External calls:
- _transfer(sender,recipient,amount) (#552)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#708-714)
External calls sending eth:
- _transfer(sender,recipient,amount) (#552)
- recipient.transfer(amount) (#952)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#211-216) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#213)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#143-160) uses assembly
- INLINE ASM (#152-155)
Address.isContract(address) (#106-115) uses assembly
- INLINE ASM (#113)
Do not use evm assembly.
Additional information: link
Address.sendValue(address,uint256) (#117-123) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#134-136) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#98-101) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#138-141) is never used and should be removed
Context._msgData() (#29-32) is never used and should be removed
SafeMath.mod(uint256,uint256) (#94-96) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#143-160) is never used and should be removed
Address.isContract(address) (#106-115) is never used and should be removed
Address.functionCall(address,bytes,string) (#130-132) is never used and should be removed
MARSINU.addLiquidity(uint256,uint256) (#736-749) is never used and should be removed
Address.functionCall(address,bytes) (#126-128) is never used and should be removed
Remove unused functions.
Additional information: link
MARSINU._previousTaxFee (#456) is set pre-construction with a non-constant function or state variable:
- _taxFee
MARSINU._previousLiquidityFee (#459) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
MARSINU._rTotal (#447) 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
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#143-160):
- (success,returndata) = target.call{value: weiValue}(data) (#146)
Low level call in Address.sendValue(address,uint256) (#117-123):
- (success) = recipient.call{value: amount}() (#121)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Parameter MARSINU.setMarketingAddress(address)._marketingAddress (#923) is not in mixedCase
Variable MARSINU._liquidityFee (#458) is not in mixedCase
Variable MARSINU._taxFee (#455) is not in mixedCase
Parameter MARSINU.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#915) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#256) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#272) is not in mixedCase
Parameter MARSINU.calculateTaxFee(uint256)._amount (#860) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#255) is not in mixedCase
Parameter MARSINU.setBuyBackEnabled(bool)._enabled (#932) is not in mixedCase
Variable MARSINU._maxTxAmount (#463) is not in mixedCase
Parameter MARSINU.calculateLiquidityFee(uint256)._amount (#866) is not in mixedCase
Parameter MARSINU.setSwapAndLiquifyEnabled(bool)._enabled (#927) is not in mixedCase
Function IUniswapV2Router01.WETH() (#293) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#30)" inContext (#24-33)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in MARSINU.transferFrom(address,address,uint256) (#551-555):
External calls:
- _transfer(sender,recipient,amount) (#552)
- recipient.transfer(amount) (#952)
External calls sending eth:
- _transfer(sender,recipient,amount) (#552)
- recipient.transfer(amount) (#952)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
- _allowances[owner][spender] = amount (#637)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#638)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#553)
Reentrancy in MARSINU._transfer(address,address,uint256) (#641-679):
External calls:
- swapTokens(contractTokenBalance) (#659)
- recipient.transfer(amount) (#952)
External calls sending eth:
- swapTokens(contractTokenBalance) (#659)
- recipient.transfer(amount) (#952)
- buyBackTokens(balance.div(100)) (#667)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#726-731)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _liquidityFee = _previousLiquidityFee (#884)
- _liquidityFee = 0 (#879)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousLiquidityFee = _liquidityFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _previousTaxFee = _taxFee (#875)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#855)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#771)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#791)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#801)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#772)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#782)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#792)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _rTotal = _rTotal.sub(rFee) (#810)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tFeeTotal = _tFeeTotal.add(tFee) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#857)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#800)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#790)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#781)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- _taxFee = _previousTaxFee (#883)
- _taxFee = 0 (#878)
- buyBackTokens(balance.div(100)) (#667)
- inSwapAndLiquify = true (#495)
- inSwapAndLiquify = false (#497)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#733)
- buyBackTokens(balance.div(100)) (#667)
- Transfer(sender,recipient,tTransferAmount) (#775)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#678)
- Transfer(sender,recipient,tTransferAmount) (#806)
- _tokenTransfer(from,to,amount,takeFee) (#678)
Apply the check-effects-interactions pattern.
Additional information: link
Variable MARSINU._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable MARSINU._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable MARSINU._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable MARSINU._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable MARSINU.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable MARSINU._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU._getValues(uint256).rTransferAmount (#816) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._getValues(uint256).rTransferAmount (#816) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable MARSINU.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._getValues(uint256).rTransferAmount (#816) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable MARSINU._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._getValues(uint256).rTransferAmount (#816) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable MARSINU._getValues(uint256).rTransferAmount (#816) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable MARSINU.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable MARSINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#298) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#299)
Variable MARSINU.reflectionFromToken(uint256,bool).rTransferAmount (#599) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._transferStandard(address,address,uint256).rTransferAmount (#770) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to MARSINU._getTValues(uint256).tTransferAmount (#823)
Variable MARSINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._transferBothExcluded(address,address,uint256).rTransferAmount (#799) is too similar to MARSINU._transferStandard(address,address,uint256).tTransferAmount (#770)
Variable MARSINU._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Variable MARSINU._transferToExcluded(address,address,uint256).rTransferAmount (#779) is too similar to MARSINU._transferToExcluded(address,address,uint256).tTransferAmount (#779)
Variable MARSINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#831) is too similar to MARSINU._getValues(uint256).tTransferAmount (#815)
Variable MARSINU._getValues(uint256).rTransferAmount (#816) is too similar to MARSINU._transferFromExcluded(address,address,uint256).tTransferAmount (#789)
Variable MARSINU._transferFromExcluded(address,address,uint256).rTransferAmount (#789) is too similar to MARSINU._transferBothExcluded(address,address,uint256).tTransferAmount (#799)
Prevent variables from having similar names.
Additional information: link
MARSINU.prepareForPreSale() (#937-942) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#941)
MARSINU.slitherConstructorVariables() (#430-958) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#463)
MARSINU.afterPreSale() (#944-949) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#948)
MARSINU.slitherConstructorVariables() (#430-958) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#464)
MARSINU.slitherConstructorVariables() (#430-958) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#446)
MARSINU.slitherConstructorVariables() (#430-958) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#435)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
MARSINU._symbol (#451) should be constant
MARSINU._name (#450) should be constant
MARSINU._decimals (#452) should be constant
MARSINU._tTotal (#446) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
isExcludedFromFee(address) should be declared external:
- MARSINU.isExcludedFromFee(address) (#887-889)
isExcludedFromReward(address) should be declared external:
- MARSINU.isExcludedFromReward(address) (#567-569)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#185-188)
transferFrom(address,address,uint256) should be declared external:
- MARSINU.transferFrom(address,address,uint256) (#551-555)
buyBackUpperLimitAmount() should be declared external:
- MARSINU.buyBackUpperLimitAmount() (#579-581)
decreaseAllowance(address,uint256) should be declared external:
- MARSINU.decreaseAllowance(address,uint256) (#562-565)
approve(address,uint256) should be declared external:
- MARSINU.approve(address,uint256) (#546-549)
transfer(address,uint256) should be declared external:
- MARSINU.transfer(address,uint256) (#537-540)
deliver(uint256) should be declared external:
- MARSINU.deliver(uint256) (#583-590)
decimals() should be declared external:
- MARSINU.decimals() (#524-526)
reflectionFromToken(uint256,bool) should be declared external:
- MARSINU.reflectionFromToken(uint256,bool) (#593-602)
excludeFromFee(address) should be declared external:
- MARSINU.excludeFromFee(address) (#891-893)
getTime() should be declared external:
- Ownable.getTime() (#200-202)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#190-194)
includeInFee(address) should be declared external:
- MARSINU.includeInFee(address) (#895-897)
excludeFromReward(address) should be declared external:
- MARSINU.excludeFromReward(address) (#610-618)
totalFees() should be declared external:
- MARSINU.totalFees() (#571-573)
symbol() should be declared external:
- MARSINU.symbol() (#520-522)
totalSupply() should be declared external:
- MARSINU.totalSupply() (#528-530)
allowance(address,address) should be declared external:
- MARSINU.allowance(address,address) (#542-544)
unlock() should be declared external:
- Ownable.unlock() (#211-216)
minimumTokensBeforeSwapAmount() should be declared external:
- MARSINU.minimumTokensBeforeSwapAmount() (#575-577)
name() should be declared external:
- MARSINU.name() (#516-518)
increaseAllowance(address,uint256) should be declared external:
- MARSINU.increaseAllowance(address,uint256) (#557-560)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#204-209)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#196-198)
setBuyBackEnabled(bool) should be declared external:
- MARSINU.setBuyBackEnabled(bool) (#932-935)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
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.
Token is deployed only at one blockchain
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account