FqSwap Token Logo

FQS [FqSwap] Token

ALERT: honeypot scam

About FQS

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

[CoinMarketCap] alert: The ownership of the smart contract isn't renounced for the following asset, which means the owners are able to modify contract behavior (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise with extra caution if you are investing in this asset.
[CoinGecko] alert: The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.
white paper

FQS is a token for increasing the security of your investment in the world of digital currencies

Social

Laser Scorebeta Last Audit: 1 March 2024

report
Token seems to be a scam (type: honeypot scam).

Reentrancy in FqSwap._transfer(address,address,uint256) (#992-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#948)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1126)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1117)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#864)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1118)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1138)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1128)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#866)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _rTotal = _rTotal.sub(rFee) (#903)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#950)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1136)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#863)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1127)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#865)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


Contract ownership is not renounced (belongs to a wallet)

FqSwap.includeInReward(address) (#849-860) has costly operations inside a loop:
- _excluded.pop() (#856)
Use a local variable to hold the loop computation result.

Additional information: link

FqSwap.addLiquidity(uint256,uint256) (#1079-1092) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
Ensure that all the return values of the function calls are used.

Additional information: link

Variable FqSwap._txFee (#707) is not in mixedCase
Variable FqSwap._maxTxAmount (#719) is not in mixedCase
Variable FqSwap._lpFee (#710) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#508) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#525) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#507) is not in mixedCase
Parameter FqSwap.calculateTaxFee(uint256)._amount (#953) is not in mixedCase
Function IUniswapV2Router01.WETH() (#547) is not in mixedCase
Parameter FqSwap.calculateLiquidityFee(uint256)._amount (#959) is not in mixedCase
Parameter FqSwap.setSwapAndLiquifyEnabled(bool)._enabled (#894) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Address.isContract(address) (#268-277) uses assembly
- INLINE ASM (#275)
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) uses assembly
- INLINE ASM (#374-377)
Do not use evm assembly.

Additional information: link

Address.sendValue(address,uint256) (#295-301) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#346-348) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#229-232) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#356-359) is never used and should be removed
Context._msgData() (#240-243) is never used and should be removed
SafeMath.mod(uint256,uint256) (#213-215) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#361-382) is never used and should be removed
Address.isContract(address) (#268-277) is never used and should be removed
Address.functionCall(address,bytes,string) (#331-333) is never used and should be removed
Address.functionCall(address,bytes) (#321-323) is never used and should be removed
Remove unused functions.

Additional information: link

FqSwap._rTotal (#700) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FqSwap._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _txFee
FqSwap._previousLiquidityFee (#711) is set pre-construction with a non-constant function or state variable:
- _lpFee
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) (#295-301):
- (success) = recipient.call{value: amount}() (#299)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#361-382):
- (success,returndata) = target.call{value: weiValue}(data) (#365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (#241)" inContext (#235-244)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable FqSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#924) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FqSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FqSwap.reflectionFromToken(uint256,bool).rTransferAmount (#828) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#924) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#862) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap.reflectionFromToken(uint256,bool).rTransferAmount (#828) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap.reflectionFromToken(uint256,bool).rTransferAmount (#828) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FqSwap._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap._getValues(uint256).rTransferAmount (#909) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#862) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap._getValues(uint256).rTransferAmount (#909) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable FqSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#924) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable FqSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#924) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#862) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable FqSwap._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap._getValues(uint256).rTransferAmount (#909) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap.reflectionFromToken(uint256,bool).rTransferAmount (#828) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap.reflectionFromToken(uint256,bool).rTransferAmount (#828) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap._getValues(uint256).rTransferAmount (#909) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FqSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#862) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap.reflectionFromToken(uint256,bool).rTransferAmount (#828) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#552) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#553)
Variable FqSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#862) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FqSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#924) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable FqSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable FqSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to FqSwap._transferBothExcluded(address,address,uint256).tTransferAmount (#862)
Variable FqSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Variable FqSwap._transferBothExcluded(address,address,uint256).rTransferAmount (#862) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap._getValues(uint256).rTransferAmount (#909) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap._getValues(uint256).rTransferAmount (#909) is too similar to FqSwap._getValues(uint256).tTransferAmount (#908)
Variable FqSwap._transferToExcluded(address,address,uint256).rTransferAmount (#1125) is too similar to FqSwap._getTValues(uint256).tTransferAmount (#916)
Variable FqSwap._transferFromExcluded(address,address,uint256).rTransferAmount (#1135) is too similar to FqSwap._transferStandard(address,address,uint256).tTransferAmount (#1116)
Variable FqSwap._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#924) is too similar to FqSwap._transferToExcluded(address,address,uint256).tTransferAmount (#1125)
Variable FqSwap._transferStandard(address,address,uint256).rTransferAmount (#1116) is too similar to FqSwap._transferFromExcluded(address,address,uint256).tTransferAmount (#1135)
Prevent variables from having similar names.

Additional information: link

FqSwap.slitherConstructorVariables() (#685-1148) uses literals with too many digits:
- _maxTxAmount = 5000000 * 10 ** 6 * 10 ** 9 (#719)
FqSwap.slitherConstructorVariables() (#685-1148) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 5 * 10 ** 9 (#699)
FqSwap.slitherConstructorVariables() (#685-1148) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (#720)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FqSwap._name (#703) should be constant
FqSwap._decimals (#705) should be constant
FqSwap._tTotal (#699) should be constant
FqSwap.numTokensSellToAddToLiquidity (#720) should be constant
FqSwap._symbol (#704) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

FqSwap._approve(address,address,uint256).owner (#984) shadows:
- Ownable.owner() (#416-418) (function)
FqSwap.allowance(address,address).owner (#780) shadows:
- Ownable.owner() (#416-418) (function)
Rename the local variables that shadow another component.

Additional information: link

FqSwap.setTaxFeePercent(uint256) (#880-882) should emit an event for:
- _txFee = taxFee (#881)
FqSwap.setMaxTxPercent(uint256) (#888-892) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#889-891)
FqSwap.setLiquidityFeePercent(uint256) (#884-886) should emit an event for:
- _lpFee = liquidityFee (#885)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in FqSwap.transferFrom(address,address,uint256) (#789-793):
External calls:
- _transfer(sender,recipient,amount) (#790)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
External calls sending eth:
- _transfer(sender,recipient,amount) (#790)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#791)
- _allowances[owner][spender] = amount (#988)
Reentrancy in FqSwap._transfer(address,address,uint256) (#992-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _lpFee = _previousLiquidityFee (#977)
- _lpFee = 0 (#972)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousLiquidityFee = _lpFee (#969)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _previousTaxFee = _txFee (#968)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _tFeeTotal = _tFeeTotal.add(tFee) (#904)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- _txFee = _previousTaxFee (#976)
- _txFee = 0 (#971)
Reentrancy in FqSwap.swapAndLiquify(uint256) (#1038-1059):
External calls:
- swapTokensForEth(half) (#1050)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
- addLiquidity(otherHalf,newBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1056)
- _allowances[owner][spender] = amount (#988)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FqSwap.swapAndLiquify(uint256) (#1038-1059):
External calls:
- swapTokensForEth(half) (#1050)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
- addLiquidity(otherHalf,newBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1056)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#989)
- addLiquidity(otherHalf,newBalance) (#1056)
- SwapAndLiquify(half,newBalance,otherHalf) (#1058)
Reentrancy in FqSwap._transfer(address,address,uint256) (#992-1036):
External calls:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1121)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1131)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
- Transfer(sender,recipient,tTransferAmount) (#869)
- _tokenTransfer(from,to,amount,takeFee) (#1035)
Reentrancy in FqSwap.transferFrom(address,address,uint256) (#789-793):
External calls:
- _transfer(sender,recipient,amount) (#790)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1070-1076)
External calls sending eth:
- _transfer(sender,recipient,amount) (#790)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1084-1091)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#989)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#791)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#463-468) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#465)
Avoid relying on block.timestamp.

Additional information: link

isExcludedFromFee(address) should be declared external:
- FqSwap.isExcludedFromFee(address) (#980-982)
excludeFromFee(address) should be declared external:
- FqSwap.excludeFromFee(address) (#872-874)
isExcludedFromReward(address) should be declared external:
- FqSwap.isExcludedFromReward(address) (#805-807)
transferFrom(address,address,uint256) should be declared external:
- FqSwap.transferFrom(address,address,uint256) (#789-793)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#435-438)
symbol() should be declared external:
- FqSwap.symbol() (#758-760)
decreaseAllowance(address,uint256) should be declared external:
- FqSwap.decreaseAllowance(address,uint256) (#800-803)
allowance(address,address) should be declared external:
- FqSwap.allowance(address,address) (#780-782)
totalSupply() should be declared external:
- FqSwap.totalSupply() (#766-768)
excludeFromReward(address) should be declared external:
- FqSwap.excludeFromReward(address) (#839-847)
increaseAllowance(address,uint256) should be declared external:
- FqSwap.increaseAllowance(address,uint256) (#795-798)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#444-448)
decimals() should be declared external:
- FqSwap.decimals() (#762-764)
approve(address,uint256) should be declared external:
- FqSwap.approve(address,uint256) (#784-787)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#450-452)
transfer(address,uint256) should be declared external:
- FqSwap.transfer(address,uint256) (#775-778)
includeInFee(address) should be declared external:
- FqSwap.includeInFee(address) (#876-878)
deliver(uint256) should be declared external:
- FqSwap.deliver(uint256) (#813-820)
reflectionFromToken(uint256,bool) should be declared external:
- FqSwap.reflectionFromToken(uint256,bool) (#822-831)
unlock() should be declared external:
- Ownable.unlock() (#463-468)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FqSwap.setSwapAndLiquifyEnabled(bool) (#894-897)
name() should be declared external:
- FqSwap.name() (#754-756)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#455-460)
totalFees() should be declared external:
- FqSwap.totalFees() (#809-811)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


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.


Token is deployed only at one blockchain


Telegram account has less than 100 subscribers


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has a considerable age, but we're still unable to find its website


Token has a considerable age, but social accounts / website are missing or have few users


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has no active CoinGecko listing / rank

Price for FQS