Zelda Inu Token Logo

ZLDA [Zelda Inu] Token

ALERT: dead

About ZLDA

Listings

Not Found
Token 2 years
white paper

A DECENTRALIZED TOKEN FOCUSED ON REVOLUTIONIZING CRYPTO. A FIRST OF ITS KIND, FULLY TRANSPARENT TOKEN WITH ONE CORE VALUE. HELPING DOGS IN NEED.

Social

Laser Scorebeta Last Audit: 28 December 2023

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


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

DividendDistributor.distributeDividend(address) (#291-302) ignores return value by RWRD.transfer(shareholder,amount) (#297)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

ZeldaINU.swapBack() (#584-630) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ZeldaINU._transferFrom(address,address,uint256) (#468-516):
External calls:
- swapBack() (#495)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
External calls sending eth:
- swapBack() (#495)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#498)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#501)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#500)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#541)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#542)
Apply the check-effects-interactions pattern.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.


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.


Contract ownership is not renounced (belongs to a wallet)

ZeldaINU.swapBack().tmpSuccess (#613) is written in both
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
tmpSuccess = false (#617)
ZeldaINU.swapBack().tmpSuccess (#613) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
(tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
Fix or remove the writes.

Additional information: link


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.

ZeldaINU.manage_blacklist(address[],bool).i (#648) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

Pragma version^0.7.4 (#14) 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

ZeldaINU.swapThreshold (#393) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
ZeldaINU._maxTxAmount (#348) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(2).div(100)
ZeldaINU._maxWalletToken (#349) is set pre-construction with a non-constant function or state variable:
- _totalSupply.mul(4).div(100)
ZeldaINU.totalFee (#367) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + ecosystemfee + burnFee
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

DividendDistributor.shouldDistribute(address) (#286-289) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#287-288)
ZeldaINU._transferFrom(address,address,uint256) (#468-516) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#488)
Avoid relying on block.timestamp.

Additional information: link

ZeldaINU.takeFee(address,uint256,bool) (#533-550) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#536)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#538)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.setShare(address,uint256) (#224-238):
External calls:
- distributeDividend(shareholder) (#226)
- RWRD.transfer(shareholder,amount) (#297)
State variables written after the call(s):
- shares[shareholder].amount = amount (#236)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#237)
Reentrancy in DividendDistributor.distributeDividend(address) (#291-302):
External calls:
- RWRD.transfer(shareholder,amount) (#297)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#299)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#300)
Reentrancy in DividendDistributor.process(uint256) (#260-284):
External calls:
- distributeDividend(shareholders[currentIndex]) (#276)
- RWRD.transfer(shareholder,amount) (#297)
State variables written after the call(s):
- currentIndex ++ (#281)
Apply the check-effects-interactions pattern.

Additional information: link

ZeldaINU.swapBack() (#584-630) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
Ensure that all the return values of the function calls are used.

Additional information: link

ZeldaINU.setTargetLiquidity(uint256,uint256) (#689-692) should emit an event for:
- targetLiquidity = _target (#690)
- targetLiquidityDenominator = _denominator (#691)
ZeldaINU.setSwapBackSettings(bool,uint256) (#684-687) should emit an event for:
- swapThreshold = _amount (#686)
ZeldaINU.setTxLimit(uint256) (#463-465) should emit an event for:
- _maxTxAmount = amount (#464)
ZeldaINU.setMaxTxPercent_base1000(uint256) (#459-461) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#460)
ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#666-675) should emit an event for:
- liquidityFee = _liquidityFee (#667)
- reflectionFee = _reflectionFee (#668)
- marketingFee = _marketingFee (#669)
- ecosystemfee = _ecosystemfee (#670)
- burnFee = _burnFee (#671)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_ecosystemfee).add(_burnFee) (#672)
- feeDenominator = _feeDenominator (#673)
DividendDistributor.setDistributionCriteria(uint256,uint256) (#219-222) should emit an event for:
- minPeriod = _minPeriod (#220)
- minDistribution = _minDistribution (#221)
ZeldaINU.set_sell_multiplier(uint256) (#569-571) should emit an event for:
- sellMultiplier = Multiplier (#570)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#101) lacks a zero-check on :
- owner = adr (#102)
ZeldaINU.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#677) lacks a zero-check on :
- ecosystemfeeReceiver = _ecosystemfeeReceiver (#680)
ZeldaINU.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#677) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#679)
ZeldaINU.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#677) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#678)
ZeldaINU.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#677) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#681)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#291-302) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#297)
ZeldaINU.multiTransfer(address,address[],uint256[]) (#718-742) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#734)
ZeldaINU.multiTransfer_fixed(address,address[],uint256) (#744-763) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#755)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.deposit() (#240-258):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#247-252)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#257)
- totalDividends = totalDividends.add(amount) (#256)
Reentrancy in DividendDistributor.setShare(address,uint256) (#224-238):
External calls:
- distributeDividend(shareholder) (#226)
- RWRD.transfer(shareholder,amount) (#297)
State variables written after the call(s):
- addShareholder(shareholder) (#230)
- shareholderIndexes[shareholder] = shareholders.length (#324)
- removeShareholder(shareholder) (#232)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#330)
- addShareholder(shareholder) (#230)
- shareholders.push(shareholder) (#325)
- removeShareholder(shareholder) (#232)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#329)
- shareholders.pop() (#331)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#235)
Reentrancy in DividendDistributor.distributeDividend(address) (#291-302):
External calls:
- RWRD.transfer(shareholder,amount) (#297)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#298)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ZeldaINU.swapBack() (#584-630):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#628)
Reentrancy in ZeldaINU._transferFrom(address,address,uint256) (#468-516):
External calls:
- swapBack() (#495)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
External calls sending eth:
- swapBack() (#495)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#543)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#500)
- Transfer(sender,burnFeeReceiver,burnTokens) (#546)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#500)
Reentrancy in ZeldaINU._transferFrom(address,address,uint256) (#468-516):
External calls:
- swapBack() (#495)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
- distributor.setShare(sender,_balances[sender]) (#505)
- distributor.setShare(recipient,_balances[recipient]) (#509)
- distributor.process(distributorGas) (#512)
External calls sending eth:
- swapBack() (#495)
- distributor.deposit{value: amountBNBReflection}() (#612)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#620-627)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#514)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.process(uint256) (#260-284) has costly operations inside a loop:
- currentIndex ++ (#281)
DividendDistributor.distributeDividend(address) (#291-302) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#296)
DividendDistributor.process(uint256) (#260-284) has costly operations inside a loop:
- currentIndex = 0 (#272)
Use a local variable to hold the loop computation result.

Additional information: link

Low level call in ZeldaINU.swapBack() (#584-630):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#613)
- (tmpSuccess,None) = address(ecosystemfeeReceiver).call{gas: 30000,value: amountBNBDev}() (#614)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter ZeldaINU.setTargetLiquidity(uint256,uint256)._target (#689) is not in mixedCase
Function IDEXRouter.WETH() (#116) is not in mixedCase
Constant ZeldaINU._decimals (#344) is not in UPPER_CASE_WITH_UNDERSCORES
Function ZeldaINU.clearStuckBalance_sender(uint256) (#564-567) is not in mixedCase
Parameter ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#666) is not in mixedCase
Variable ZeldaINU._totalSupply (#346) is not in mixedCase
Parameter ZeldaINU.setFeeReceivers(address,address,address,address)._ecosystemfeeReceiver (#677) is not in mixedCase
Parameter ZeldaINU.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#677) is not in mixedCase
Parameter ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#666) is not in mixedCase
Function ZeldaINU.setMaxTxPercent_base1000(uint256) (#459-461) is not in mixedCase
Parameter ZeldaINU.setTargetLiquidity(uint256,uint256)._denominator (#689) is not in mixedCase
Parameter ZeldaINU.setFeeReceivers(address,address,address,address)._burnFeeReceiver (#677) is not in mixedCase
Constant ZeldaINU._name (#342) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter ZeldaINU.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#459) is not in mixedCase
Parameter ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._ecosystemfee (#666) is not in mixedCase
Parameter ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#666) is not in mixedCase
Function ZeldaINU.multiTransfer_fixed(address,address[],uint256) (#744-763) is not in mixedCase
Parameter ZeldaINU.setSwapBackSettings(bool,uint256)._enabled (#684) is not in mixedCase
Parameter ZeldaINU.setSwapBackSettings(bool,uint256)._amount (#684) is not in mixedCase
Parameter ZeldaINU.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#456) is not in mixedCase
Parameter ZeldaINU.set_sell_multiplier(uint256).Multiplier (#569) is not in mixedCase
Parameter ZeldaINU.setDistributionCriteria(uint256,uint256)._minDistribution (#694) is not in mixedCase
Parameter ZeldaINU.cooldownEnabled(bool,uint8)._status (#579) is not in mixedCase
Variable ZeldaINU._maxTxAmount (#348) is not in mixedCase
Variable ZeldaINU.DEAD (#339) is not in mixedCase
Function ZeldaINU.set_sell_multiplier(uint256) (#569-571) is not in mixedCase
Variable ZeldaINU.ZERO (#340) is not in mixedCase
Function ZeldaINU.manage_blacklist(address[],bool) (#647-651) is not in mixedCase
Variable ZeldaINU._allowances (#352) is not in mixedCase
Variable ZeldaINU.WBNB (#338) is not in mixedCase
Function ZeldaINU.setMaxWalletPercent_base1000(uint256) (#456-458) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#219) is not in mixedCase
Variable ZeldaINU._maxWalletToken (#349) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#219) is not in mixedCase
Parameter ZeldaINU.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#677) is not in mixedCase
Parameter ZeldaINU.enable_blacklist(bool)._status (#643) is not in mixedCase
Parameter ZeldaINU.tradingStatus(bool)._status (#574) is not in mixedCase
Variable DividendDistributor.RWRD (#180) is not in mixedCase
Variable DividendDistributor._token (#172) is not in mixedCase
Parameter ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#666) is not in mixedCase
Variable DividendDistributor.WBNB (#181) is not in mixedCase
Parameter ZeldaINU.setDistributionCriteria(uint256,uint256)._minPeriod (#694) is not in mixedCase
Parameter ZeldaINU.cooldownEnabled(bool,uint8)._interval (#579) is not in mixedCase
Constant ZeldaINU._symbol (#343) is not in UPPER_CASE_WITH_UNDERSCORES
Function ZeldaINU.enable_blacklist(bool) (#643-645) is not in mixedCase
Variable ZeldaINU._balances (#351) is not in mixedCase
Parameter ZeldaINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#666) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

ZeldaINU.slitherConstructorVariables() (#335-767) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#339)
ZeldaINU.slitherConstructorVariables() (#335-767) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#340)
ZeldaINU.slitherConstructorVariables() (#335-767) uses literals with too many digits:
- distributorGas = 500000 (#386)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ZeldaINU.DEAD (#339) should be constant
ZeldaINU._totalSupply (#346) should be constant
ZeldaINU.ZERO (#340) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#194) should be constant
DividendDistributor.WBNB (#181) should be constant
ZeldaINU.WBNB (#338) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#89-91)
tradingStatus(bool) should be declared external:
- ZeldaINU.tradingStatus(bool) (#574-576)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#101-105)
cooldownEnabled(bool,uint8) should be declared external:
- ZeldaINU.cooldownEnabled(bool,uint8) (#579-582)
enable_blacklist(bool) should be declared external:
- ZeldaINU.enable_blacklist(bool) (#643-645)
manage_blacklist(address[],bool) should be declared external:
- ZeldaINU.manage_blacklist(address[],bool) (#647-651)
authorize(address) should be declared external:
- Auth.authorize(address) (#85-87)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Token has no transactions for more than 100 days. It seems dead / abandoned.


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


Unable to find Blog account (Reddit or Medium)


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


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to find token contract audit


Token is not listed at Mobula.Finance

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find code repository for the project


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is marked as risky (blacklisted creator, fake name, dead project, etc.)

Additional information: link

Price for ZLDA