Extremely fast autonomous yield and liquidity generation protocol on bsc
Reentrancy in FastMoon._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#959)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1139)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#877)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _rTotal = _rTotal.sub(rFee) (#914)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#961)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1147)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#874)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1138)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#876)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FastMoon.addLiquidity(uint256,uint256) (#1090-1103) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Ensure that all the return values of the function calls are used.
Additional information: link
FastMoon.allowance(address,address).owner (#791) shadows:
- Ownable.owner() (#427-429) (function)
FastMoon._approve(address,address,uint256).owner (#995) shadows:
- Ownable.owner() (#427-429) (function)
Rename the local variables that shadow another component.
Additional information: link
FastMoon.setTaxFeePercent(uint256) (#891-893) should emit an event for:
- _taxFee = taxFee (#892)
FastMoon.setLiquidityFeePercent(uint256) (#895-897) should emit an event for:
- _liquidityFee = liquidityFee (#896)
FastMoon.setMaxTxPercent(uint256) (#899-903) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#900-902)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in FastMoon._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _liquidityFee = _previousLiquidityFee (#988)
- _liquidityFee = 0 (#983)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _previousLiquidityFee = _liquidityFee (#980)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _previousTaxFee = _taxFee (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _tFeeTotal = _tFeeTotal.add(tFee) (#915)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _taxFee = _previousTaxFee (#987)
- _taxFee = 0 (#982)
Reentrancy in FastMoon.constructor() (#747-763):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#752-753)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#759)
- _isExcludedFromFee[address(this)] = true (#760)
- uniswapV2Router = _uniswapV2Router (#756)
Reentrancy in FastMoon.swapAndLiquify(uint256) (#1049-1070):
External calls:
- swapTokensForEth(half) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1067)
- _allowances[owner][spender] = amount (#999)
Reentrancy in FastMoon.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
- _allowances[owner][spender] = amount (#999)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FastMoon._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- Transfer(sender,recipient,tTransferAmount) (#1152)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- Transfer(sender,recipient,tTransferAmount) (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
Reentrancy in FastMoon.constructor() (#747-763):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#752-753)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#762)
Reentrancy in FastMoon.swapAndLiquify(uint256) (#1049-1070):
External calls:
- swapTokensForEth(half) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- addLiquidity(otherHalf,newBalance) (#1067)
- SwapAndLiquify(half,newBalance,otherHalf) (#1069)
Reentrancy in FastMoon.transferFrom(address,address,uint256) (#800-804):
External calls:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- _transfer(sender,recipient,amount) (#801)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#802)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#474-479) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#476)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#279-288) uses assembly
- INLINE ASM (#286)
Address._functionCallWithValue(address,bytes,uint256,string) (#372-393) uses assembly
- INLINE ASM (#385-388)
Do not use evm assembly.
Additional information: link
FastMoon.includeInReward(address) (#860-871) has costly operations inside a loop:
- _excluded.pop() (#867)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#372-393) is never used and should be removed
Address.functionCall(address,bytes) (#332-334) is never used and should be removed
Address.functionCall(address,bytes,string) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#357-359) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#367-370) is never used and should be removed
Address.isContract(address) (#279-288) is never used and should be removed
Address.sendValue(address,uint256) (#306-312) is never used and should be removed
Context._msgData() (#251-254) is never used and should be removed
SafeMath.mod(uint256,uint256) (#224-226) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#240-243) is never used and should be removed
Remove unused functions.
Additional information: link
FastMoon._rTotal (#711) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FastMoon._previousTaxFee (#719) is set pre-construction with a non-constant function or state variable:
- _taxFee
FastMoon._previousLiquidityFee (#722) 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) (#306-312):
- (success) = recipient.call{value: amount}() (#310)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#372-393):
- (success,returndata) = target.call{value: weiValue}(data) (#376)
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() (#518) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#519) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#536) is not in mixedCase
Function IUniswapV2Router01.WETH() (#558) is not in mixedCase
Parameter FastMoon.setSwapAndLiquifyEnabled(bool)._enabled (#905) is not in mixedCase
Parameter FastMoon.calculateTaxFee(uint256)._amount (#964) is not in mixedCase
Parameter FastMoon.calculateLiquidityFee(uint256)._amount (#970) is not in mixedCase
Variable FastMoon._taxFee (#718) is not in mixedCase
Variable FastMoon._liquidityFee (#721) is not in mixedCase
Variable FastMoon._maxTxAmount (#730) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#252)" inContext (#246-255)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#563) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#564)
Variable FastMoon._getValues(uint256).rTransferAmount (#920) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon._getValues(uint256).rTransferAmount (#920) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon._getValues(uint256).rTransferAmount (#920) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#935) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#935) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon._getValues(uint256).rTransferAmount (#920) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable FastMoon._getValues(uint256).rTransferAmount (#920) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable FastMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to FastMoon._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable FastMoon._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#935) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable FastMoon._getValues(uint256).rTransferAmount (#920) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable FastMoon._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to FastMoon._getTValues(uint256).tTransferAmount (#927)
Variable FastMoon._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable FastMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#935) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon.reflectionFromToken(uint256,bool).rTransferAmount (#839) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable FastMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#935) is too similar to FastMoon._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable FastMoon._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#935) is too similar to FastMoon._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable FastMoon._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to FastMoon._getValues(uint256).tTransferAmount (#919)
Variable FastMoon._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to FastMoon._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Prevent variables from having similar names.
Additional information: link
FastMoon.slitherConstructorVariables() (#696-1159) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#710)
FastMoon.slitherConstructorVariables() (#696-1159) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#730)
FastMoon.slitherConstructorVariables() (#696-1159) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#731)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FastMoon._decimals (#716) should be constant
FastMoon._name (#714) should be constant
FastMoon._symbol (#715) should be constant
FastMoon._tTotal (#710) should be constant
FastMoon.numTokensSellToAddToLiquidity (#731) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#446-449)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#455-459)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#461-463)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#466-471)
unlock() should be declared external:
- Ownable.unlock() (#474-479)
name() should be declared external:
- FastMoon.name() (#765-767)
symbol() should be declared external:
- FastMoon.symbol() (#769-771)
decimals() should be declared external:
- FastMoon.decimals() (#773-775)
totalSupply() should be declared external:
- FastMoon.totalSupply() (#777-779)
transfer(address,uint256) should be declared external:
- FastMoon.transfer(address,uint256) (#786-789)
allowance(address,address) should be declared external:
- FastMoon.allowance(address,address) (#791-793)
approve(address,uint256) should be declared external:
- FastMoon.approve(address,uint256) (#795-798)
transferFrom(address,address,uint256) should be declared external:
- FastMoon.transferFrom(address,address,uint256) (#800-804)
increaseAllowance(address,uint256) should be declared external:
- FastMoon.increaseAllowance(address,uint256) (#806-809)
decreaseAllowance(address,uint256) should be declared external:
- FastMoon.decreaseAllowance(address,uint256) (#811-814)
isExcludedFromReward(address) should be declared external:
- FastMoon.isExcludedFromReward(address) (#816-818)
totalFees() should be declared external:
- FastMoon.totalFees() (#820-822)
deliver(uint256) should be declared external:
- FastMoon.deliver(uint256) (#824-831)
reflectionFromToken(uint256,bool) should be declared external:
- FastMoon.reflectionFromToken(uint256,bool) (#833-842)
excludeFromReward(address) should be declared external:
- FastMoon.excludeFromReward(address) (#850-858)
excludeFromFee(address) should be declared external:
- FastMoon.excludeFromFee(address) (#883-885)
includeInFee(address) should be declared external:
- FastMoon.includeInFee(address) (#887-889)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FastMoon.setSwapAndLiquifyEnabled(bool) (#905-908)
isExcludedFromFee(address) should be declared external:
- FastMoon.isExcludedFromFee(address) (#991-993)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Average 30d PancakeSwap liquidity is low.
Token is deployed only at one blockchain
Contract has 8% buy tax and 7% sell tax.
Taxes are low and contract ownership is renounced.
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
Unable to find whitepaper link 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 token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has relatively low CoinGecko rank
Last post in Twitter was more than 180 days ago
Unable to find Youtube account
Unable to find Discord account