ZRL Token Logo

ZRL Token

ALERT: honeypot scam

About ZRL

Listings

Not Found
Token 2 years

ZRL ($ZRL) Original intention: everyone is happy, everyone is happy Make people happy! We like to brag, but we will realize every niubi we have blown. Today, we take you to do everyone's music, which is to take you to do a cause with conscience, return the industry a pure land, return investors a dignity. Comers will earn! Join the community to conquer the crypto ocean with us!

Social

Laser Scorebeta Last Audit: 4 May 2022

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

Anti-Scam

Links


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

ZRL.addLiquidity(uint256,uint256) (#790-803) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ZRL._transfer(address,address,uint256) (#688-737):
External calls:
- swapAndLiquify(contractTokenBalance) (#711)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#711)
- recipient.transfer(amount) (#636)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#714)
- finalAmount = takeFee(sender,recipient,amount) (#725)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#822)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#731)
- addBot(recipient) (#722)
- _isbclisted[recipient] = true (#677)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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.

ZRL.addLiquidity(uint256,uint256) (#790-803) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
Ensure that all the return values of the function calls are used.

Additional information: link

ZRL.allowance(address,address).owner (#522) shadows:
- Ownable.owner() (#152-154) (function)
ZRL._approve(address,address,uint256).owner (#545) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

ZRL.setBuyTaxes(uint256,uint256,uint256) (#570-576) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#575)
ZRL.setSellTaxes(uint256,uint256,uint256) (#578-584) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#583)
ZRL.setDistributionSettings(uint256,uint256,uint256) (#586-592) should emit an event for:
- _liquidityShare = newLiquidityShare (#587)
- _teamShare = newTeamShare (#589)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#591)
ZRL.setMaxTxAmount(uint256) (#594-596) should emit an event for:
- _maxTxAmount = maxTxAmount (#595)
ZRL.setWalletLimit(uint256) (#606-608) should emit an event for:
- _walletMax = newLimit (#607)
ZRL.setNumTokensBeforeSwap(uint256) (#610-612) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#611)
ZRL.setKillBlock(uint256) (#680-682) should emit an event for:
- killblock = num (#681)
Emit an event for critical parameter changes.

Additional information: link

ZRL.constructor(address).lqa (#473) lacks a zero-check on :
- lqAddress = address(lqa) (#474)
ZRL.setMarketingWalletAddress(address).newAddress (#614) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#615)
ZRL.setTeamWalletAddress(address).newAddress (#618) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#619)
Check that the address is not zero.

Additional information: link

Reentrancy in ZRL.changeRouterVersion(address) (#639-656):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#647-648)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#655)
- isWalletLimitExempt[address(uniswapPair)] = true (#654)
- uniswapPair = newPairAddress (#651)
- uniswapV2Router = _uniswapV2Router (#652)
Reentrancy in ZRL.constructor(address) (#473-500):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#476-477)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#480)
- _balances[_msgSender()] = _totalSupply (#498)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#487)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#485)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#486)
- isExcludedFromFee[owner()] = true (#482)
- isExcludedFromFee[address(this)] = true (#483)
- isMarketPair[address(uniswapPair)] = true (#496)
- isTxLimitExempt[owner()] = true (#493)
- isTxLimitExempt[address(this)] = true (#494)
- isWalletLimitExempt[owner()] = true (#489)
- isWalletLimitExempt[address(uniswapPair)] = true (#490)
- isWalletLimitExempt[address(this)] = true (#491)
- uniswapV2Router = _uniswapV2Router (#479)
Reentrancy in ZRL.swapAndLiquify(uint256) (#746-768):
External calls:
- swapTokensForEth(tokensForSwap) (#751)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#761)
- recipient.transfer(amount) (#636)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#764)
- recipient.transfer(amount) (#636)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- _allowances[owner][spender] = amount (#549)
Reentrancy in ZRL.transferFrom(address,address,uint256) (#666-670):
External calls:
- _transfer(sender,recipient,amount) (#667)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
External calls sending eth:
- _transfer(sender,recipient,amount) (#667)
- recipient.transfer(amount) (#636)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#668)
- _allowances[owner][spender] = amount (#549)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ZRL._transfer(address,address,uint256) (#688-737):
External calls:
- swapAndLiquify(contractTokenBalance) (#711)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#711)
- recipient.transfer(amount) (#636)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#823)
- finalAmount = takeFee(sender,recipient,amount) (#725)
- Transfer(sender,recipient,finalAmount) (#733)
Reentrancy in ZRL.constructor(address) (#473-500):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#476-477)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#499)
Reentrancy in ZRL.swapAndLiquify(uint256) (#746-768):
External calls:
- swapTokensForEth(tokensForSwap) (#751)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#761)
- recipient.transfer(amount) (#636)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#764)
- recipient.transfer(amount) (#636)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#550)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
Reentrancy in ZRL.swapTokensForEth(uint256) (#770-788):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#787)
Reentrancy in ZRL.transferFrom(address,address,uint256) (#666-670):
External calls:
- _transfer(sender,recipient,amount) (#667)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#779-785)
External calls sending eth:
- _transfer(sender,recipient,amount) (#667)
- recipient.transfer(amount) (#636)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#550)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#668)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.

Additional information: link

ZRL._totalSupply (#437) is set pre-construction with a non-constant function or state variable:
- 500000000 * 10 ** _decimals
ZRL._maxTxAmount (#438) is set pre-construction with a non-constant function or state variable:
- 500000000 * 10 ** _decimals
ZRL._walletMax (#439) is set pre-construction with a non-constant function or state variable:
- 500000000 * 10 ** _decimals
ZRL.minimumTokensBeforeSwap (#440) is set pre-construction with a non-constant function or state variable:
- 500000 * 10 ** _decimals
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

solc-0.8.13 is not recommended for deployment
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) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#226) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#227) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#243) is not in mixedCase
Function IUniswapV2Router01.WETH() (#262) is not in mixedCase
Function ZRL.Launch() (#553-556) is not in mixedCase
Parameter ZRL.setSwapAndLiquifyEnabled(bool)._enabled (#622) is not in mixedCase
Variable ZRL._balances (#412) is not in mixedCase
Variable ZRL._buyLiquidityFee (#421) is not in mixedCase
Variable ZRL._buyMarketingFee (#422) is not in mixedCase
Variable ZRL._buyTeamFee (#423) is not in mixedCase
Variable ZRL._sellLiquidityFee (#425) is not in mixedCase
Variable ZRL._sellMarketingFee (#426) is not in mixedCase
Variable ZRL._sellTeamFee (#427) is not in mixedCase
Variable ZRL._liquidityShare (#429) is not in mixedCase
Variable ZRL._marketingShare (#430) is not in mixedCase
Variable ZRL._teamShare (#431) is not in mixedCase
Variable ZRL._totalTaxIfBuying (#433) is not in mixedCase
Variable ZRL._totalTaxIfSelling (#434) is not in mixedCase
Variable ZRL._totalDistributionShares (#435) is not in mixedCase
Variable ZRL._maxTxAmount (#438) is not in mixedCase
Variable ZRL._walletMax (#439) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ZRL._transfer(address,address,uint256) (#688-737):
External calls:
- swapAndLiquify(contractTokenBalance) (#711)
- recipient.transfer(amount) (#636)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#711)
- recipient.transfer(amount) (#636)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#714)
- finalAmount = takeFee(sender,recipient,amount) (#725)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#822)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#731)
- addBot(recipient) (#722)
- _isbclisted[recipient] = true (#677)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#823)
- finalAmount = takeFee(sender,recipient,amount) (#725)
- Transfer(sender,recipient,finalAmount) (#733)
Reentrancy in ZRL.swapAndLiquify(uint256) (#746-768):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#761)
- recipient.transfer(amount) (#636)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#764)
- recipient.transfer(amount) (#636)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#761)
- recipient.transfer(amount) (#636)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#764)
- recipient.transfer(amount) (#636)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
- _allowances[owner][spender] = amount (#549)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#550)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#767)
Reentrancy in ZRL.transferFrom(address,address,uint256) (#666-670):
External calls:
- _transfer(sender,recipient,amount) (#667)
- recipient.transfer(amount) (#636)
External calls sending eth:
- _transfer(sender,recipient,amount) (#667)
- recipient.transfer(amount) (#636)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lqAddress,block.timestamp) (#795-802)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#668)
- _allowances[owner][spender] = amount (#549)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#550)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#668)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#267) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#268)
Prevent variables from having similar names.

Additional information: link

ZRL.slitherConstructorVariables() (#395-830) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#410)
ZRL.slitherConstructorVariables() (#395-830) uses literals with too many digits:
- _totalSupply = 500000000 * 10 ** _decimals (#437)
ZRL.slitherConstructorVariables() (#395-830) uses literals with too many digits:
- _maxTxAmount = 500000000 * 10 ** _decimals (#438)
ZRL.slitherConstructorVariables() (#395-830) uses literals with too many digits:
- _walletMax = 500000000 * 10 ** _decimals (#439)
ZRL.slitherConstructorVariables() (#395-830) uses literals with too many digits:
- minimumTokensBeforeSwap = 500000 * 10 ** _decimals (#440)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ZRL._decimals (#402) should be constant
ZRL._name (#400) should be constant
ZRL._symbol (#401) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#172-174)
getTime() should be declared external:
- Ownable.getTime() (#176-178)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#180-185)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
name() should be declared external:
- ZRL.name() (#502-504)
symbol() should be declared external:
- ZRL.symbol() (#506-508)
decimals() should be declared external:
- ZRL.decimals() (#510-512)
totalSupply() should be declared external:
- ZRL.totalSupply() (#514-516)
allowance(address,address) should be declared external:
- ZRL.allowance(address,address) (#522-524)
increaseAllowance(address,uint256) should be declared external:
- ZRL.increaseAllowance(address,uint256) (#526-529)
decreaseAllowance(address,uint256) should be declared external:
- ZRL.decreaseAllowance(address,uint256) (#531-534)
minimumTokensBeforeSwapAmount() should be declared external:
- ZRL.minimumTokensBeforeSwapAmount() (#536-538)
approve(address,uint256) should be declared external:
- ZRL.approve(address,uint256) (#540-543)
Launch() should be declared external:
- ZRL.Launch() (#553-556)
setMarketPairStatus(address,bool) should be declared external:
- ZRL.setMarketPairStatus(address,bool) (#558-560)
setIsExcludedFromFee(address,bool) should be declared external:
- ZRL.setIsExcludedFromFee(address,bool) (#566-568)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ZRL.setSwapAndLiquifyEnabled(bool) (#622-625)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- ZRL.setSwapAndLiquifyByLimitOnly(bool) (#627-629)
getCirculatingSupply() should be declared external:
- ZRL.getCirculatingSupply() (#631-633)
changeRouterVersion(address) should be declared external:
- ZRL.changeRouterVersion(address) (#639-656)
transfer(address,uint256) should be declared external:
- ZRL.transfer(address,uint256) (#661-664)
transferFrom(address,address,uint256) should be declared external:
- ZRL.transferFrom(address,address,uint256) (#666-670)
isbcList(address) should be declared external:
- ZRL.isbcList(address) (#672-674)
setKillBlock(uint256) should be declared external:
- ZRL.setKillBlock(uint256) (#680-682)
writebcList(address,bool) should be declared external:
- ZRL.writebcList(address,bool) (#684-686)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 99% buy tax and 99% sell tax.
Taxes are extremely high (over 30%)

Additional information: link


Average 30d PancakeSwap liquidity is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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 find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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


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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Token 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


Young tokens have high risks of price dump / death

Price for ZRL

News for ZRL