Fuck Valentines Day Token Logo

FVALENTINE [Fuck Valentines Day] Token

About FVALENTINE

Listings

Not Found
Token 2 years

Website

Not Found

Fuck Valentine's Day, Am I right?

Social

Laser Scorebeta Last Audit: 14 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

FVD.swapBack() (#666-708) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FVD._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#677-683)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#616)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#619)
- amountReceived = takeFee(sender,recipient,amount) (#618)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#653)
- triggerAutoBuyback() (#612)
- inSwap = true (#547)
- inSwap = false (#547)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#442-453) ignores return value by BUSD.transfer(shareholder,amount) (#448)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

DividendDistributor.process(uint256) (#411-435) has costly operations inside a loop:
- currentIndex = 0 (#423)
DividendDistributor.distributeDividend(address) (#442-453) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#447)
DividendDistributor.process(uint256) (#411-435) has costly operations inside a loop:
- currentIndex ++ (#432)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#63-84) is never used and should be removed
Address.functionCall(address,bytes) (#46-48) is never used and should be removed
Address.functionCall(address,bytes,string) (#50-52) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#54-56) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#58-61) is never used and should be removed
Address.isContract(address) (#27-36) is never used and should be removed
Address.sendValue(address,uint256) (#38-44) is never used and should be removed
Context._msgData() (#92-95) is never used and should be removed
Remove unused functions.

Additional information: link

FVD._maxTxAmount (#501) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 500
FVD._maxWalletSize (#502) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 10) / 500
FVD.swapThreshold (#545) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000
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

Pragma version^0.7.2 (#23) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#38-44):
- (success) = recipient.call{value: amount}() (#42)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#63-84):
- (success,returndata) = target.call{value: weiValue}(data) (#67)
Low level call in FVD.swapBack() (#666-708):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#442-453):
External calls:
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#450)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#451)
Reentrancy in DividendDistributor.process(uint256) (#411-435):
External calls:
- distributeDividend(shareholders[currentIndex]) (#427)
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- currentIndex ++ (#432)
Reentrancy in DividendDistributor.setShare(address,uint256) (#374-388):
External calls:
- distributeDividend(shareholder) (#376)
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- shares[shareholder].amount = amount (#386)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#387)
Apply the check-effects-interactions pattern.

Additional information: link

FVD.swapBack() (#666-708) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#369-372) should emit an event for:
- minPeriod = _minPeriod (#370)
- minDistribution = _minDistribution (#371)
FVD.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#750-757) should emit an event for:
- autoBuybackCap = _cap (#752)
- autoBuybackAmount = _amount.div(100) (#754)
FVD.setTxLimit(uint256) (#774-777) should emit an event for:
- _maxTxAmount = amount.div(100) (#776)
FVD.setFees(uint256,uint256,uint256,uint256,uint256) (#804-812) should emit an event for:
- liquidityFee = _liquidityFee (#805)
- reflectionFee = _reflectionFee (#807)
- marketingFee = _marketingFee (#808)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#809)
- feeDenominator = _feeDenominator (#810)
FVD.setSwapBackSettings(bool,uint256) (#819-822) should emit an event for:
- swapThreshold = _amount.div(100) (#821)
FVD.setTargetLiquidity(uint256,uint256) (#824-827) should emit an event for:
- targetLiquidity = _target (#825)
- targetLiquidityDenominator = _denominator (#826)
Emit an event for critical parameter changes.

Additional information: link

FVD.setFeeReceivers(address,address)._autoLiquidityReceiver (#814) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#815)
FVD.setFeeReceivers(address,address)._marketingFeeReceiver (#814) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#816)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#442-453) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#448)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in FVD._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#677-683)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
State variables written after the call(s):
- launch() (#614)
- launchedAt = block.number (#771)
Reentrancy in FVD.constructor() (#549-568):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#551)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#552)
- _balances[msg.sender] = _totalSupply (#566)
- autoLiquidityReceiver = address(0xE7cA29ea29235411dcDF58b8b69552CAf2F5F258) (#563)
- distributor = new DividendDistributor(address(router)) (#554)
- isDividendExempt[pair] = true (#559)
- isDividendExempt[address(this)] = true (#560)
- isDividendExempt[DEAD] = true (#561)
- isDividendExempt[ZERO] = true (#562)
- isFeeExempt[msg.sender] = true (#556)
- isTxLimitExempt[msg.sender] = true (#557)
- isTxLimitExempt[address(router)] = true (#558)
- marketingFeeReceiver = address(0xE7cA29ea29235411dcDF58b8b69552CAf2F5F258) (#564)
Reentrancy in DividendDistributor.deposit() (#391-409):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#398-403)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#408)
- totalDividends = totalDividends.add(amount) (#407)
Reentrancy in DividendDistributor.distributeDividend(address) (#442-453):
External calls:
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#449)
Reentrancy in DividendDistributor.setShare(address,uint256) (#374-388):
External calls:
- distributeDividend(shareholder) (#376)
- BUSD.transfer(shareholder,amount) (#448)
State variables written after the call(s):
- addShareholder(shareholder) (#380)
- shareholderIndexes[shareholder] = shareholders.length (#475)
- removeShareholder(shareholder) (#382)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#481)
- addShareholder(shareholder) (#380)
- shareholders.push(shareholder) (#476)
- removeShareholder(shareholder) (#382)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#480)
- shareholders.pop() (#482)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#385)
Reentrancy in FVD.triggerAutoBuyback() (#730-735):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#731)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#733)
- autoBuybackBlockLast = block.number (#732)
- autoBuybackEnabled = false (#734)
Reentrancy in FVD.triggerManualBuyback(uint256,bool) (#718-724):
External calls:
- buyTokens(amount,DEAD) (#719)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#721)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FVD._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#677-683)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
- distributor.setShare(sender,_balances[sender]) (#621)
- distributor.setShare(recipient,_balances[recipient]) (#622)
- distributor.process(distributorGas) (#624)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#626)
Reentrancy in FVD._transferFrom(address,address,uint256) (#602-628):
External calls:
- swapBack() (#611)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#677-683)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
External calls sending eth:
- swapBack() (#611)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
- triggerAutoBuyback() (#612)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#654)
- amountReceived = takeFee(sender,recipient,amount) (#618)
Reentrancy in FVD.constructor() (#549-568):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#551)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#567)
Reentrancy in FVD.swapBack() (#666-708):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#677-683)
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#693)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#694)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#698-705)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#706)
Reentrancy in FVD.triggerManualBuyback(uint256,bool) (#718-724):
External calls:
- buyTokens(amount,DEAD) (#719)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#742-747)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#722)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#437-440) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#438-439)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#27-36) uses assembly
- INLINE ASM (#34)
Address._functionCallWithValue(address,bytes,uint256,string) (#63-84) uses assembly
- INLINE ASM (#76-79)
Do not use evm assembly.

Additional information: link

Function IDEXRouter.WETH() (#265) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#369) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#369) is not in mixedCase
Variable DividendDistributor._token (#321) is not in mixedCase
Variable DividendDistributor.BUSD (#330) is not in mixedCase
Variable DividendDistributor.WBNB (#331) is not in mixedCase
Parameter FVD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#750) is not in mixedCase
Parameter FVD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#750) is not in mixedCase
Parameter FVD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#750) is not in mixedCase
Parameter FVD.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#750) is not in mixedCase
Parameter FVD.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#804) is not in mixedCase
Parameter FVD.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#804) is not in mixedCase
Parameter FVD.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#804) is not in mixedCase
Parameter FVD.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#804) is not in mixedCase
Parameter FVD.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#804) is not in mixedCase
Parameter FVD.setFeeReceivers(address,address)._autoLiquidityReceiver (#814) is not in mixedCase
Parameter FVD.setFeeReceivers(address,address)._marketingFeeReceiver (#814) is not in mixedCase
Parameter FVD.setSwapBackSettings(bool,uint256)._enabled (#819) is not in mixedCase
Parameter FVD.setSwapBackSettings(bool,uint256)._amount (#819) is not in mixedCase
Parameter FVD.setTargetLiquidity(uint256,uint256)._target (#824) is not in mixedCase
Parameter FVD.setTargetLiquidity(uint256,uint256)._denominator (#824) is not in mixedCase
Parameter FVD.setDistributionCriteria(uint256,uint256)._minPeriod (#829) is not in mixedCase
Parameter FVD.setDistributionCriteria(uint256,uint256)._minDistribution (#829) is not in mixedCase
Variable FVD.BUSD (#491) is not in mixedCase
Variable FVD.WBNB (#492) is not in mixedCase
Variable FVD.DEAD (#493) is not in mixedCase
Variable FVD.ZERO (#494) is not in mixedCase
Constant FVD._name (#496) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FVD._symbol (#497) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FVD._decimals (#498) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FVD._totalSupply (#500) is not in mixedCase
Variable FVD._maxTxAmount (#501) is not in mixedCase
Variable FVD._maxWalletSize (#502) is not in mixedCase
Variable FVD._balances (#504) is not in mixedCase
Variable FVD._allowances (#505) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#93)" inContext (#87-96)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#270) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#271)
Prevent variables from having similar names.

Additional information: link

FVD.slitherConstructorVariables() (#487-853) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#493)
FVD.slitherConstructorVariables() (#487-853) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#494)
FVD.slitherConstructorVariables() (#487-853) uses literals with too many digits:
- distributorGas = 500000 (#542)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FVD.BUSD (#491) is never used in FVD (#487-853)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#331) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#344) should be constant
FVD.BUSD (#491) should be constant
FVD.DEAD (#493) should be constant
FVD.WBNB (#492) should be constant
FVD.ZERO (#494) should be constant
FVD._totalSupply (#500) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#243-246)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#252-256)
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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.

Contract has 13% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Twitter account


Telegram account has less than 100 subscribers


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


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for FVALENTINE