WhaleFarm Token Token Logo

WHALE [WhaleFarm] Token

About WHALE

Listings

Token 3 years
[CoinGecko] alert: No trading activity recorded by exchanges integrated on CoinGecko in the past 2 months

The Next Generation Staking & Liquidity Platform running on Binance Smart Chain with Automatic Liquidity Acquisition.

Social

Laser Scorebeta Last Audit: 12 January 2022

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

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams

WhaleToken.addLiquidity(uint256,uint256) (contracts/WhaleToken.sol#1320-1333) sends eth to arbitrary user
Dangerous calls:
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in WhaleToken._transfer(address,address,uint256) (contracts/WhaleToken.sol#1234-1265):
External calls:
- swapAndLiquify() (contracts/WhaleToken.sol#1244)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
- whaleRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WhaleToken.sol#1310-1316)
External calls sending eth:
- swapAndLiquify() (contracts/WhaleToken.sol#1244)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
State variables written after the call(s):
- super._transfer(sender,recipient,amount) (contracts/WhaleToken.sol#1248)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (contracts/WhaleToken.sol#1055)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/WhaleToken.sol#1056)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (contracts/WhaleToken.sol#1260)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (contracts/WhaleToken.sol#1055)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/WhaleToken.sol#1056)
- super._transfer(sender,address(this),liquidityAmount) (contracts/WhaleToken.sol#1261)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (contracts/WhaleToken.sol#1055)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/WhaleToken.sol#1056)
- super._transfer(sender,recipient,sendAmount) (contracts/WhaleToken.sol#1262)
- _balances[sender] = _balances[sender].sub(amount,BEP20: transfer amount exceeds balance) (contracts/WhaleToken.sol#1055)
- _balances[recipient] = _balances[recipient].add(amount) (contracts/WhaleToken.sol#1056)
Apply the check-effects-interactions pattern.

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.

WhaleToken._writeCheckpoint(address,uint32,uint256,uint256) (contracts/WhaleToken.sol#1643-1661) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (contracts/WhaleToken.sol#1653)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

WhaleToken.updateMaxTransferAmountRate(uint16) (contracts/WhaleToken.sol#1376-1380) contains a tautology or contradiction:
- require(bool,string)(_maxTransferAmountRate <= 100000,WHALE::updateMaxTransferAmountRate: Max transfer amount rate must not exceed the maximum rate.) (contracts/WhaleToken.sol#1377)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

WhaleToken._transfer(address,address,uint256) (contracts/WhaleToken.sol#1234-1265) performs a multiplication on the result of a division:
-taxAmount = amount.mul(transferTaxRate).div(10000) (contracts/WhaleToken.sol#1251)
-burnAmount = taxAmount.mul(burnRate).div(100) (contracts/WhaleToken.sol#1252)
Consider ordering multiplication before division.

Additional information: link

WhaleToken.addLiquidity(uint256,uint256) (contracts/WhaleToken.sol#1320-1333) ignores return value by whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
Ensure that all the return values of the function calls are used.

Additional information: link

BEP20.constructor(string,string).name (contracts/WhaleToken.sol#874) shadows:
- BEP20.name() (contracts/WhaleToken.sol#890-892) (function)
- IBEP20.name() (contracts/WhaleToken.sol#654) (function)
BEP20.constructor(string,string).symbol (contracts/WhaleToken.sol#874) shadows:
- BEP20.symbol() (contracts/WhaleToken.sol#904-906) (function)
- IBEP20.symbol() (contracts/WhaleToken.sol#649) (function)
BEP20.allowance(address,address).owner (contracts/WhaleToken.sol#938) shadows:
- Ownable.owner() (contracts/WhaleToken.sol#788-790) (function)
BEP20._approve(address,address,uint256).owner (contracts/WhaleToken.sol#1110) shadows:
- Ownable.owner() (contracts/WhaleToken.sol#788-790) (function)
WhaleToken.swapAndLiquify().maxTransferAmount (contracts/WhaleToken.sol#1270) shadows:
- WhaleToken.maxTransferAmount() (contracts/WhaleToken.sol#1338-1340) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in WhaleToken.swapAndLiquify() (contracts/WhaleToken.sol#1268-1298):
External calls:
- swapTokensForEth(half) (contracts/WhaleToken.sol#1288)
- whaleRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WhaleToken.sol#1310-1316)
- addLiquidity(otherHalf,newBalance) (contracts/WhaleToken.sol#1294)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/WhaleToken.sol#1294)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/WhaleToken.sol#1294)
- _allowances[owner][spender] = amount (contracts/WhaleToken.sol#1117)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WhaleToken._transfer(address,address,uint256) (contracts/WhaleToken.sol#1234-1265):
External calls:
- swapAndLiquify() (contracts/WhaleToken.sol#1244)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
- whaleRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WhaleToken.sol#1310-1316)
External calls sending eth:
- swapAndLiquify() (contracts/WhaleToken.sol#1244)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (contracts/WhaleToken.sol#1057)
- super._transfer(sender,recipient,amount) (contracts/WhaleToken.sol#1248)
- Transfer(sender,recipient,amount) (contracts/WhaleToken.sol#1057)
- super._transfer(sender,BURN_ADDRESS,burnAmount) (contracts/WhaleToken.sol#1260)
- Transfer(sender,recipient,amount) (contracts/WhaleToken.sol#1057)
- super._transfer(sender,address(this),liquidityAmount) (contracts/WhaleToken.sol#1261)
- Transfer(sender,recipient,amount) (contracts/WhaleToken.sol#1057)
- super._transfer(sender,recipient,sendAmount) (contracts/WhaleToken.sol#1262)
Reentrancy in WhaleToken.swapAndLiquify() (contracts/WhaleToken.sol#1268-1298):
External calls:
- swapTokensForEth(half) (contracts/WhaleToken.sol#1288)
- whaleRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/WhaleToken.sol#1310-1316)
- addLiquidity(otherHalf,newBalance) (contracts/WhaleToken.sol#1294)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/WhaleToken.sol#1294)
- whaleRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,operator(),block.timestamp) (contracts/WhaleToken.sol#1325-1332)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/WhaleToken.sol#1118)
- addLiquidity(otherHalf,newBalance) (contracts/WhaleToken.sol#1294)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/WhaleToken.sol#1296)
Apply the check-effects-interactions pattern.

Additional information: link

WhaleToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (contracts/WhaleToken.sol#1509-1550) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,WHALE::delegateBySig: signature expired) (contracts/WhaleToken.sol#1548)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/WhaleToken.sol#251-260) uses assembly
- INLINE ASM (contracts/WhaleToken.sol#258)
Address._verifyCallResult(bool,bytes,string) (contracts/WhaleToken.sol#396-413) uses assembly
- INLINE ASM (contracts/WhaleToken.sol#405-408)
WhaleToken.getChainId() (contracts/WhaleToken.sol#1668-1672) uses assembly
- INLINE ASM (contracts/WhaleToken.sol#1670)
Do not use evm assembly.

Additional information: link

WhaleToken._transfer(address,address,uint256) (contracts/WhaleToken.sol#1234-1265) compares to a boolean constant:
-swapAndLiquifyEnabled == true && _inSwapAndLiquify == false && address(whaleRouter) != address(0) && whalePair != address(0) && sender != whalePair && sender != owner() (contracts/WhaleToken.sol#1237-1242)
WhaleToken.antiWhale(address,address,uint256) (contracts/WhaleToken.sol#1188-1199) compares to a boolean constant:
-_excludedFromAntiWhale[sender] == false && _excludedFromAntiWhale[recipient] == false (contracts/WhaleToken.sol#1191-1192)
WhaleToken.antiWhale(address,address,uint256) (contracts/WhaleToken.sol#1188-1199) compares to a boolean constant:
-require(bool,string)(swapEnabled == true,WHALE::swap: Cannot transfer at the moment) (contracts/WhaleToken.sol#1195)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.4.0', '>=0.5.0', '>=0.6.0<0.8.0', '>=0.6.2', '>=0.6.2<0.8.0']
- >=0.5.0 (contracts/WhaleToken.sol#9)
- >=0.5.0 (contracts/WhaleToken.sol#29)
- >=0.6.2 (contracts/WhaleToken.sol#84)
- >=0.6.2 (contracts/WhaleToken.sol#182)
- >=0.6.2<0.8.0 (contracts/WhaleToken.sol#228)
- >=0.6.0<0.8.0 (contracts/WhaleToken.sol#418)
- >=0.4.0 (contracts/WhaleToken.sol#633)
- >=0.6.0<0.8.0 (contracts/WhaleToken.sol#732)
- >=0.6.0<0.8.0 (contracts/WhaleToken.sol#757)
- >=0.4.0 (contracts/WhaleToken.sol#825)
- 0.6.12 (contracts/WhaleToken.sol#1139)
Use one Solidity version.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (contracts/WhaleToken.sol#396-413) is never used and should be removed
Address.functionCall(address,bytes) (contracts/WhaleToken.sol#304-306) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/WhaleToken.sol#314-316) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/WhaleToken.sol#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/WhaleToken.sol#339-346) is never used and should be removed
Address.functionDelegateCall(address,bytes) (contracts/WhaleToken.sol#378-380) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (contracts/WhaleToken.sol#388-394) is never used and should be removed
Address.functionStaticCall(address,bytes) (contracts/WhaleToken.sol#354-356) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (contracts/WhaleToken.sol#364-370) is never used and should be removed
Address.isContract(address) (contracts/WhaleToken.sol#251-260) is never used and should be removed
Address.sendValue(address,uint256) (contracts/WhaleToken.sol#278-284) is never used and should be removed
BEP20._burn(address,uint256) (contracts/WhaleToken.sol#1088-1094) is never used and should be removed
BEP20._burnFrom(address,uint256) (contracts/WhaleToken.sol#1127-1134) is never used and should be removed
Context._msgData() (contracts/WhaleToken.sol#749-752) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/WhaleToken.sol#605-608) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/WhaleToken.sol#567-570) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/WhaleToken.sol#625-628) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/WhaleToken.sol#439-443) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (contracts/WhaleToken.sol#475-478) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/WhaleToken.sol#485-488) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/WhaleToken.sol#460-468) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/WhaleToken.sol#450-453) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.5.0 (contracts/WhaleToken.sol#9) allows old versions
Pragma version>=0.5.0 (contracts/WhaleToken.sol#29) allows old versions
Pragma version>=0.6.2 (contracts/WhaleToken.sol#84) allows old versions
Pragma version>=0.6.2 (contracts/WhaleToken.sol#182) allows old versions
Pragma version>=0.6.2<0.8.0 (contracts/WhaleToken.sol#228) is too complex
Pragma version>=0.6.0<0.8.0 (contracts/WhaleToken.sol#418) is too complex
Pragma version>=0.4.0 (contracts/WhaleToken.sol#633) allows old versions
Pragma version>=0.6.0<0.8.0 (contracts/WhaleToken.sol#732) is too complex
Pragma version>=0.6.0<0.8.0 (contracts/WhaleToken.sol#757) is too complex
Pragma version>=0.4.0 (contracts/WhaleToken.sol#825) 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) (contracts/WhaleToken.sol#278-284):
- (success) = recipient.call{value: amount}() (contracts/WhaleToken.sol#282)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (contracts/WhaleToken.sol#339-346):
- (success,returndata) = target.call{value: value}(data) (contracts/WhaleToken.sol#344)
Low level call in Address.functionStaticCall(address,bytes,string) (contracts/WhaleToken.sol#364-370):
- (success,returndata) = target.staticcall(data) (contracts/WhaleToken.sol#368)
Low level call in Address.functionDelegateCall(address,bytes,string) (contracts/WhaleToken.sol#388-394):
- (success,returndata) = target.delegatecall(data) (contracts/WhaleToken.sol#392)
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() (contracts/WhaleToken.sol#46) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/WhaleToken.sol#47) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/WhaleToken.sol#64) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/WhaleToken.sol#88) is not in mixedCase
Parameter WhaleToken.mint(address,uint256)._to (contracts/WhaleToken.sol#1228) is not in mixedCase
Parameter WhaleToken.mint(address,uint256)._amount (contracts/WhaleToken.sol#1228) is not in mixedCase
Parameter WhaleToken.isExcludedFromAntiWhale(address)._account (contracts/WhaleToken.sol#1345) is not in mixedCase
Parameter WhaleToken.updateTransferTaxRate(uint16)._transferTaxRate (contracts/WhaleToken.sol#1356) is not in mixedCase
Parameter WhaleToken.updateBurnRate(uint16)._burnRate (contracts/WhaleToken.sol#1366) is not in mixedCase
Parameter WhaleToken.updateMaxTransferAmountRate(uint16)._maxTransferAmountRate (contracts/WhaleToken.sol#1376) is not in mixedCase
Parameter WhaleToken.updateMinAmountToLiquify(uint256)._minAmount (contracts/WhaleToken.sol#1386) is not in mixedCase
Parameter WhaleToken.setExcludedFromAntiWhale(address,bool)._account (contracts/WhaleToken.sol#1395) is not in mixedCase
Parameter WhaleToken.setExcludedFromAntiWhale(address,bool)._excluded (contracts/WhaleToken.sol#1395) is not in mixedCase
Parameter WhaleToken.updateSwapAndLiquifyEnabled(bool)._enabled (contracts/WhaleToken.sol#1403) is not in mixedCase
Function WhaleToken.UpdateSwapEnabled(bool) (contracts/WhaleToken.sol#1411-1414) is not in mixedCase
Parameter WhaleToken.UpdateSwapEnabled(bool)._enabled (contracts/WhaleToken.sol#1411) is not in mixedCase
Parameter WhaleToken.updateWhaleRouter(address)._router (contracts/WhaleToken.sol#1420) is not in mixedCase
Variable WhaleToken._delegates (contracts/WhaleToken.sol#1451) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/WhaleToken.sol#750)" inContext (contracts/WhaleToken.sol#744-753)
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 (contracts/WhaleToken.sol#93) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/WhaleToken.sol#94)
Prevent variables from having similar names.

Additional information: link

WhaleToken.maxTransferAmount() (contracts/WhaleToken.sol#1338-1340) uses literals with too many digits:
- totalSupply().mul(maxTransferAmountRate).div(100000) (contracts/WhaleToken.sol#1339)
WhaleToken.updateMaxTransferAmountRate(uint16) (contracts/WhaleToken.sol#1376-1380) uses literals with too many digits:
- require(bool,string)(_maxTransferAmountRate <= 100000,WHALE::updateMaxTransferAmountRate: Max transfer amount rate must not exceed the maximum rate.) (contracts/WhaleToken.sol#1377)
WhaleToken.slitherConstructorConstantVariables() (contracts/WhaleToken.sol#1142-1673) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (contracts/WhaleToken.sol#1150)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/WhaleToken.sol#807-810)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/WhaleToken.sol#816-820)
decimals() should be declared external:
- BEP20.decimals() (contracts/WhaleToken.sol#897-899)
symbol() should be declared external:
- BEP20.symbol() (contracts/WhaleToken.sol#904-906)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/WhaleToken.sol#930-933)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/WhaleToken.sol#938-940)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/WhaleToken.sol#949-952)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/WhaleToken.sol#966-978)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/WhaleToken.sol#992-995)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/WhaleToken.sol#1011-1018)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (contracts/WhaleToken.sol#1028-1031)
mint(address,uint256) should be declared external:
- WhaleToken.mint(address,uint256) (contracts/WhaleToken.sol#1228-1231)
isExcludedFromAntiWhale(address) should be declared external:
- WhaleToken.isExcludedFromAntiWhale(address) (contracts/WhaleToken.sol#1345-1347)
updateTransferTaxRate(uint16) should be declared external:
- WhaleToken.updateTransferTaxRate(uint16) (contracts/WhaleToken.sol#1356-1360)
updateBurnRate(uint16) should be declared external:
- WhaleToken.updateBurnRate(uint16) (contracts/WhaleToken.sol#1366-1370)
updateMaxTransferAmountRate(uint16) should be declared external:
- WhaleToken.updateMaxTransferAmountRate(uint16) (contracts/WhaleToken.sol#1376-1380)
updateMinAmountToLiquify(uint256) should be declared external:
- WhaleToken.updateMinAmountToLiquify(uint256) (contracts/WhaleToken.sol#1386-1389)
setExcludedFromAntiWhale(address,bool) should be declared external:
- WhaleToken.setExcludedFromAntiWhale(address,bool) (contracts/WhaleToken.sol#1395-1397)
updateSwapAndLiquifyEnabled(bool) should be declared external:
- WhaleToken.updateSwapAndLiquifyEnabled(bool) (contracts/WhaleToken.sol#1403-1406)
UpdateSwapEnabled(bool) should be declared external:
- WhaleToken.UpdateSwapEnabled(bool) (contracts/WhaleToken.sol#1411-1414)
updateWhaleRouter(address) should be declared external:
- WhaleToken.updateWhaleRouter(address) (contracts/WhaleToken.sol#1420-1425)
transferOperator(address) should be declared external:
- WhaleToken.transferOperator(address) (contracts/WhaleToken.sol#1438-1442)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted from CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to verify token contract address on the website


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


Unable to find token on CoinHunt

Additional information: link


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

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


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


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for WHALE