SafeMoon Swap ($SFMS) is backed by Liquidity Generation and Autonomous Yield protocol that helps the token holders earn passive income while also enhancing the liquidity of the pool.
Reentrancy in SafeMoonSwap._transfer(address,address,uint256) (#949-998):
External calls:
- swapAndLiquify(contractTokenBalance) (#985)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#985)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#905)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1079)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1088)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1099)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#818)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1080)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1090)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1100)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#820)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _rTotal = _rTotal.sub(rFee) (#860)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#907)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#817)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1098)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1089)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#819)
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)
Contract name (SafeMoon.swap) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
SafeMoonSwap.includeInReward(address) (#803-814) has costly operations inside a loop:
- _excluded.pop() (#810)
Use a local variable to hold the loop computation result.
Additional information: link
SafeMoonSwap.addLiquidity(uint256,uint256) (#1041-1054) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
Ensure that all the return values of the function calls are used.
Additional information: link
SafeMoonSwap._approve(address,address,uint256).owner (#941) shadows:
- Ownable.owner() (#382-384) (function)
SafeMoonSwap.allowance(address,address).owner (#735) shadows:
- Ownable.owner() (#382-384) (function)
Rename the local variables that shadow another component.
Additional information: link
SafeMoonSwap.setLiquidityFeePercent(uint256) (#838-840) should emit an event for:
- _liquidityFee = liquidityFee (#839)
SafeMoonSwap.setTaxFeePercent(uint256) (#834-836) should emit an event for:
- _taxFee = taxFee (#835)
SafeMoonSwap.setMaxTxPercent(uint256) (#842-846) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#843-845)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in SafeMoonSwap.swapAndLiquify(uint256) (#1000-1021):
External calls:
- swapTokensForEth(half) (#1012)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
- addLiquidity(otherHalf,newBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1018)
- _allowances[owner][spender] = amount (#945)
Reentrancy in SafeMoonSwap._transfer(address,address,uint256) (#949-998):
External calls:
- swapAndLiquify(contractTokenBalance) (#985)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#985)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _liquidityFee = _previousLiquidityFee (#934)
- _liquidityFee = 0 (#929)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _previousLiquidityFee = _liquidityFee (#926)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _previousTaxFee = _taxFee (#925)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _tFeeTotal = _tFeeTotal.add(tFee) (#861)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- _taxFee = _previousTaxFee (#933)
- _taxFee = 0 (#928)
Reentrancy in SafeMoonSwap.transferFrom(address,address,uint256) (#744-748):
External calls:
- _transfer(sender,recipient,amount) (#745)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
External calls sending eth:
- _transfer(sender,recipient,amount) (#745)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#746)
- _allowances[owner][spender] = amount (#945)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SafeMoonSwap.transferFrom(address,address,uint256) (#744-748):
External calls:
- _transfer(sender,recipient,amount) (#745)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
External calls sending eth:
- _transfer(sender,recipient,amount) (#745)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#946)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#746)
Reentrancy in SafeMoonSwap.swapAndLiquify(uint256) (#1000-1021):
External calls:
- swapTokensForEth(half) (#1012)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
- addLiquidity(otherHalf,newBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1018)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#946)
- addLiquidity(otherHalf,newBalance) (#1018)
- SwapAndLiquify(half,newBalance,otherHalf) (#1020)
Reentrancy in SafeMoonSwap._transfer(address,address,uint256) (#949-998):
External calls:
- swapAndLiquify(contractTokenBalance) (#985)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1032-1038)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#985)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1046-1053)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- Transfer(sender,recipient,tTransferAmount) (#1093)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- Transfer(sender,recipient,tTransferAmount) (#1103)
- _tokenTransfer(from,to,amount,takeFee) (#997)
- Transfer(sender,recipient,tTransferAmount) (#823)
- _tokenTransfer(from,to,amount,takeFee) (#997)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#429-434) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#431)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#339-360) uses assembly
- INLINE ASM (#352-355)
Address.isContract(address) (#246-255) uses assembly
- INLINE ASM (#253)
Do not use evm assembly.
Additional information: link
Address.sendValue(address,uint256) (#273-279) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#324-326) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#211-214) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#334-337) is never used and should be removed
Context._msgData() (#222-225) is never used and should be removed
SafeMath.mod(uint256,uint256) (#195-197) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#339-360) is never used and should be removed
Address.isContract(address) (#246-255) is never used and should be removed
Address.functionCall(address,bytes,string) (#309-311) is never used and should be removed
Address.functionCall(address,bytes) (#299-301) is never used and should be removed
Remove unused functions.
Additional information: link
SafeMoonSwap._previousLiquidityFee (#665) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
SafeMoonSwap._previousTaxFee (#662) is set pre-construction with a non-constant function or state variable:
- _taxFee
SafeMoonSwap._rTotal (#654) 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) (#339-360):
- (success,returndata) = target.call{value: weiValue}(data) (#343)
Low level call in Address.sendValue(address,uint256) (#273-279):
- (success) = recipient.call{value: amount}() (#277)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable SafeMoonSwap._liquidityFee (#664) is not in mixedCase
Parameter SafeMoonSwap.calculateLiquidityFee(uint256)._amount (#916) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#469) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#486) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#468) is not in mixedCase
Parameter SafeMoonSwap.calculateTaxFee(uint256)._amount (#910) is not in mixedCase
Variable SafeMoonSwap._taxFee (#661) is not in mixedCase
Function IUniswapV2Router01.WETH() (#506) is not in mixedCase
Variable SafeMoonSwap._maxTxAmount (#674) is not in mixedCase
Parameter SafeMoonSwap.setSwapAndLiquifyEnabled(bool)._enabled (#848) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#223)" inContext (#217-226)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable SafeMoonSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1097) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#881) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap._getValues(uint256).rTransferAmount (#866) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#881) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#881) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Variable SafeMoonSwap.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap._getValues(uint256).rTransferAmount (#866) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#816) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable SafeMoonSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#816) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Variable SafeMoonSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#881) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap._getValues(uint256).rTransferAmount (#866) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable SafeMoonSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#816) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1097) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1097) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Variable SafeMoonSwap._getValues(uint256).rTransferAmount (#866) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Variable SafeMoonSwap._transferStandard(address,address,uint256).rTransferAmount (#1078) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Variable SafeMoonSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#816) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#881) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable SafeMoonSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1097) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#511) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#512)
Variable SafeMoonSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#881) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Variable SafeMoonSwap._transferStandard(address,address,uint256).rTransferAmount (#1078) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable SafeMoonSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#816) is too similar to SafeMoonSwap._transferStandard(address,address,uint256).tTransferAmount (#1078)
Variable SafeMoonSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1097) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable SafeMoonSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._getValues(uint256).rTransferAmount (#866) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._transferStandard(address,address,uint256).rTransferAmount (#1078) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap.reflectionFromToken(uint256,bool).rTransferAmount (#783) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap._getValues(uint256).rTransferAmount (#866) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1097) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1087) is too similar to SafeMoonSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1087)
Variable SafeMoonSwap._transferStandard(address,address,uint256).rTransferAmount (#1078) is too similar to SafeMoonSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1097)
Variable SafeMoonSwap._transferStandard(address,address,uint256).rTransferAmount (#1078) is too similar to SafeMoonSwap._getTValues(uint256).tTransferAmount (#873)
Variable SafeMoonSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#816) is too similar to SafeMoonSwap._getValues(uint256).tTransferAmount (#865)
Variable SafeMoonSwap._transferStandard(address,address,uint256).rTransferAmount (#1078) is too similar to SafeMoonSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#816)
Prevent variables from having similar names.
Additional information: link
SafeMoonSwap.slitherConstructorVariables() (#639-1110) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 9 (#674)
SafeMoonSwap.slitherConstructorVariables() (#639-1110) uses literals with too many digits:
- _tTotal = 1000000000000000 * 10 ** 9 (#653)
SafeMoonSwap.slitherConstructorVariables() (#639-1110) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000000000 * 10 ** 9 (#675)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMoonSwap._symbol (#658) should be constant
SafeMoonSwap._tTotal (#653) should be constant
SafeMoonSwap._decimals (#659) should be constant
SafeMoonSwap._name (#657) should be constant
SafeMoonSwap.numTokensSellToAddToLiquidity (#675) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setSwapAndLiquifyEnabled(bool) should be declared external:
- SafeMoonSwap.setSwapAndLiquifyEnabled(bool) (#848-851)
reflectionFromToken(uint256,bool) should be declared external:
- SafeMoonSwap.reflectionFromToken(uint256,bool) (#777-786)
isExcludedFromFee(address) should be declared external:
- SafeMoonSwap.isExcludedFromFee(address) (#937-939)
isExcludedFromReward(address) should be declared external:
- SafeMoonSwap.isExcludedFromReward(address) (#760-762)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#401-404)
name() should be declared external:
- SafeMoonSwap.name() (#709-711)
decimals() should be declared external:
- SafeMoonSwap.decimals() (#717-719)
deliver(uint256) should be declared external:
- SafeMoonSwap.deliver(uint256) (#768-775)
transfer(address,uint256) should be declared external:
- SafeMoonSwap.transfer(address,uint256) (#730-733)
approve(address,uint256) should be declared external:
- SafeMoonSwap.approve(address,uint256) (#739-742)
decreaseAllowance(address,uint256) should be declared external:
- SafeMoonSwap.decreaseAllowance(address,uint256) (#755-758)
includeInFee(address) should be declared external:
- SafeMoonSwap.includeInFee(address) (#830-832)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#410-414)
totalFees() should be declared external:
- SafeMoonSwap.totalFees() (#764-766)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#416-418)
excludeFromReward(address) should be declared external:
- SafeMoonSwap.excludeFromReward(address) (#794-801)
excludeFromFee(address) should be declared external:
- SafeMoonSwap.excludeFromFee(address) (#826-828)
unlock() should be declared external:
- Ownable.unlock() (#429-434)
transferFrom(address,address,uint256) should be declared external:
- SafeMoonSwap.transferFrom(address,address,uint256) (#744-748)
increaseAllowance(address,uint256) should be declared external:
- SafeMoonSwap.increaseAllowance(address,uint256) (#750-753)
totalSupply() should be declared external:
- SafeMoonSwap.totalSupply() (#721-723)
symbol() should be declared external:
- SafeMoonSwap.symbol() (#713-715)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#421-426)
allowance(address,address) should be declared external:
- SafeMoonSwap.allowance(address,address) (#735-737)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
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
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
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
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
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 code repository for the project
Token has no active CoinMarketCap listing / rank
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
Last post in Twitter was more than 180 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account