Mirror Token Logo

NUL [Mirror] Token

About NUL

Listings

Token 2 years

Zero Hour is an event that will occur randomly once every day. There won’t be any prior notice and you will never know what will happen or what to expect

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...)

Mirror.swapBack() (Mirror.sol#300-369) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Mirror._transferFrom(address,address,uint256) (Mirror.sol#215-264):
External calls:
- swapBack() (Mirror.sol#246)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (Mirror.sol#322-328)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (Mirror.sol#360-367)
External calls sending eth:
- swapBack() (Mirror.sol#246)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (Mirror.sol#360-367)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (Mirror.sol#249)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (Mirror.sol#254-256)
- gonAmountReceived = takeFee(sender,gonAmount,isSell) (Mirror.sol#251-253)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (Mirror.sol#292-294)
Apply the check-effects-interactions pattern.

Additional information: link

Mirror.swapBack().success (Mirror.sol#344) is written in both
(success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
(success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
Mirror.swapBack().success (Mirror.sol#344) is written in both
(success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
(success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
Mirror.swapBack().success (Mirror.sol#344) is written in both
(success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
success = false (Mirror.sol#357)
Fix or remove the writes.

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.

Mirror.swapBack() (Mirror.sol#300-369) performs a multiplication on the result of a division:
-contractTokenBalance = _gonBalances[address(this)].div(_gonsPerFragment) (Mirror.sol#307-309)
-amountToLiquify = contractTokenBalance.mul(dynamicLiquidityFee).div(totalFee).div(2) (Mirror.sol#310-313)
Mirror.setMaxWalletToken(uint256,uint256) (Mirror.sol#444-449) performs a multiplication on the result of a division:
-gonMaxWallet = TOTAL_GONS.div(_denom).mul(_num) (Mirror.sol#448)
Mirror.setSwapBackSettings(bool,uint256,uint256) (Mirror.sol#467-474) performs a multiplication on the result of a division:
-gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (Mirror.sol#473)
Mirror.getLiquidityBacking(uint256) (Mirror.sol#558-566) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (Mirror.sol#563)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (Mirror.sol#564-565)
Mirror.slitherConstructorVariables() (Mirror.sol#13-578) performs a multiplication on the result of a division:
-gonMaxWallet = TOTAL_GONS.div(100).mul(2) (Mirror.sol#50)
Consider ordering multiplication before division.

Additional information: link

Mirror.swapBack() (Mirror.sol#300-369) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (Mirror.sol#360-367)
Ensure that all the return values of the function calls are used.

Additional information: link

Mirror.setMaster(address) (Mirror.sol#163-165) should emit an event for:
- master = _master (Mirror.sol#164)
Emit an event for critical parameter changes.

Additional information: link

Mirror.changeAntiDumpPercentage(uint256) (Mirror.sol#145-148) should emit an event for:
- antiDumpPercentage = percentage (Mirror.sol#147)
Mirror.changeAntiSniperPercentage(uint256) (Mirror.sol#150-153) should emit an event for:
- antiSniperPercentage = percentage (Mirror.sol#152)
Mirror.setMaxWalletToken(uint256,uint256) (Mirror.sol#444-449) should emit an event for:
- gonMaxWallet = TOTAL_GONS.div(_denom).mul(_num) (Mirror.sol#448)
Mirror.setSwapBackSettings(bool,uint256,uint256) (Mirror.sol#467-474) should emit an event for:
- gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (Mirror.sol#473)
Mirror.setTargetLiquidity(uint256,uint256) (Mirror.sol#476-479) should emit an event for:
- targetLiquidity = target (Mirror.sol#477)
- targetLiquidityDenominator = accuracy (Mirror.sol#478)
Mirror.setFees(uint256,uint256,uint256,uint256,uint256) (Mirror.sol#493-507) should emit an event for:
- ecosystemFee = _ecosystemFee (Mirror.sol#500)
- liquidityFee = _liquidityFee (Mirror.sol#501)
- buyBackFee = _buyBackFee (Mirror.sol#502)
- marketingFee = _marketingFee (Mirror.sol#503)
- totalFee = ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee) (Mirror.sol#504)
- feeDenominator = _feeDenominator (Mirror.sol#505)
Emit an event for critical parameter changes.

Additional information: link

Mirror.setMaster(address)._master (Mirror.sol#163) lacks a zero-check on :
- master = _master (Mirror.sol#164)
Mirror.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (Mirror.sol#510) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (Mirror.sol#515)
Mirror.setFeeReceivers(address,address,address,address)._ecosystemFeeReceiver (Mirror.sol#511) lacks a zero-check on :
- ecosystemFeeReceiver = _ecosystemFeeReceiver (Mirror.sol#516)
Mirror.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (Mirror.sol#512) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (Mirror.sol#517)
Mirror.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (Mirror.sol#513) lacks a zero-check on :
- buyBackFeeReceiver = _buyBackFeeReceiver (Mirror.sol#518)
Mirror.clearStuckBalance(uint256,address).adr (Mirror.sol#529) lacks a zero-check on :
- address(adr).transfer((amountETH * amountPercentage) / 100) (Mirror.sol#531-533)
Check that the address is not zero.

Additional information: link

Mirror.swapBack() (Mirror.sol#300-369) has external calls inside a loop: path[1] = router.WETH() (Mirror.sol#318)
Mirror.swapBack() (Mirror.sol#300-369) has external calls inside a loop: router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (Mirror.sol#322-328)
Mirror.swapBack() (Mirror.sol#300-369) has external calls inside a loop: (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
Mirror.swapBack() (Mirror.sol#300-369) has external calls inside a loop: (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
Mirror.swapBack() (Mirror.sol#300-369) has external calls inside a loop: (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
Mirror.swapBack() (Mirror.sol#300-369) has external calls inside a loop: router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (Mirror.sol#360-367)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in Mirror.constructor() (Mirror.sol#107-137):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (Mirror.sol#110-113)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (Mirror.sol#114)
- _gonBalances[msg.sender] = TOTAL_GONS (Mirror.sol#118)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (Mirror.sol#119)
- _isFeeExempt[msg.sender] = true (Mirror.sol#122)
- _isFeeExempt[address(this)] = true (Mirror.sol#123)
- _isMaxWalletExempt[pair] = true (Mirror.sol#125)
- _isMaxWalletExempt[DEAD] = true (Mirror.sol#126)
- _isMaxWalletExempt[address(this)] = true (Mirror.sol#127)
- _isMaxWalletExempt[msg.sender] = true (Mirror.sol#128)
- _isMaxWalletExempt[owner()] = true (Mirror.sol#129)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (Mirror.sol#117)
- autoLiquidityReceiver = 0x000000000000000000000000000000000000dEaD (Mirror.sol#131)
- buyBackFeeReceiver = 0xf430305a14e6EA556721c07030570a54D5d83c15 (Mirror.sol#134)
- ecosystemFeeReceiver = 0xC2F14a535C3Bb5340A3dFd54A1C0938f3E6615B2 (Mirror.sol#133)
- initialDistributionFinished = false (Mirror.sol#121)
- marketingFeeReceiver = 0x1E5158434aA5bECA1b06F298113224e29B1193Aa (Mirror.sol#132)
- pairContract = InterfaceLP(pair) (Mirror.sol#115)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Mirror._transferFrom(address,address,uint256) (Mirror.sol#215-264):
External calls:
- swapBack() (Mirror.sol#246)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (Mirror.sol#322-328)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (Mirror.sol#360-367)
External calls sending eth:
- swapBack() (Mirror.sol#246)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (Mirror.sol#360-367)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (Mirror.sol#295)
- gonAmountReceived = takeFee(sender,gonAmount,isSell) (Mirror.sol#251-253)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (Mirror.sol#258-262)
Reentrancy in Mirror.constructor() (Mirror.sol#107-137):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (Mirror.sol#110-113)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (Mirror.sol#136)
Apply the check-effects-interactions pattern.

Additional information: link

Mirror._transferFrom(address,address,uint256) (Mirror.sol#215-264) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (Mirror.sol#222)
Mirror.takeFee(address,uint256,bool) (Mirror.sol#279-298) uses timestamp for comparisons
Dangerous comparisons:
- isSell && antiDump && block.timestamp < LaunchTimestamp + SellTaxDuration (Mirror.sol#285)
- antiSniper && block.timestamp < LaunchTimestamp + BuyTaxDuration (Mirror.sol#288)
Avoid relying on block.timestamp.

Additional information: link

Mirror.swapping() (Mirror.sol#77-81) has costly operations inside a loop:
- inSwap = true (Mirror.sol#78)
Mirror.swapping() (Mirror.sol#77-81) has costly operations inside a loop:
- inSwap = false (Mirror.sol#80)
Use a local variable to hold the loop computation result.

Additional information: link

Mirror.transferToAddressETH(address,uint256) (Mirror.sol#536-540) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#53-56) is never used and should be removed
SafeMathInt.abs(int256) (SafeMathInt.sol#34-37) is never used and should be removed
SafeMathInt.add(int256,int256) (SafeMathInt.sol#28-32) is never used and should be removed
SafeMathInt.div(int256,int256) (SafeMathInt.sol#16-20) is never used and should be removed
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#8-14) is never used and should be removed
SafeMathInt.sub(int256,int256) (SafeMathInt.sol#22-26) is never used and should be removed
Remove unused functions.

Additional information: link

Mirror.totalFee (Mirror.sol#56-57) is set pre-construction with a non-constant function or state variable:
- ecosystemFee.add(liquidityFee).add(marketingFee).add(buyBackFee)
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.4 (ERC20Detailed.sol#2) allows old versions
Pragma version^0.7.4 (IDEXFactory.sol#2) allows old versions
Pragma version^0.7.4 (IDEXRouter.sol#2) allows old versions
Pragma version^0.7.4 (IERC20.sol#2) allows old versions
Pragma version^0.7.4 (InterfaceLP.sol#2) allows old versions
Pragma version^0.7.4 (Mirror.sol#2) allows old versions
Pragma version^0.7.4 (Ownable.sol#2) allows old versions
Pragma version^0.7.4 (SafeMath.sol#2) allows old versions
Pragma version^0.7.4 (SafeMathInt.sol#2) allows old versions
solc-0.7.4 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 Mirror.swapBack() (Mirror.sol#300-369):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountETHMarketing}() (Mirror.sol#344-347)
- (success,None) = address(buyBackFeeReceiver).call{gas: 30000,value: amountETHBuyBack}() (Mirror.sol#348-351)
- (success,None) = address(ecosystemFeeReceiver).call{gas: 30000,value: amountETHEco}() (Mirror.sol#352-355)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (IDEXRouter.sol#7) is not in mixedCase
Parameter Mirror.cooldownEnabled(bool,uint8)._status (Mirror.sol#139) is not in mixedCase
Parameter Mirror.cooldownEnabled(bool,uint8)._interval (Mirror.sol#139) is not in mixedCase
Parameter Mirror.setMaster(address)._master (Mirror.sol#163) is not in mixedCase
Parameter Mirror.setLP(address)._address (Mirror.sol#167) is not in mixedCase
Parameter Mirror.enableTransfer(address)._addr (Mirror.sol#424) is not in mixedCase
Parameter Mirror.setFeeExempt(address)._addr (Mirror.sol#428) is not in mixedCase
Parameter Mirror.checkFeeExempt(address)._addr (Mirror.sol#432) is not in mixedCase
Parameter Mirror.setMaxWalletExempt(address)._addr (Mirror.sol#436) is not in mixedCase
Parameter Mirror.checkMaxWalletExempt(address)._addr (Mirror.sol#440) is not in mixedCase
Parameter Mirror.setMaxWalletToken(uint256,uint256)._num (Mirror.sol#444) is not in mixedCase
Parameter Mirror.setMaxWalletToken(uint256,uint256)._denom (Mirror.sol#444) is not in mixedCase
Parameter Mirror.setSwapBackSettings(bool,uint256,uint256)._enabled (Mirror.sol#468) is not in mixedCase
Parameter Mirror.setSwapBackSettings(bool,uint256,uint256)._num (Mirror.sol#469) is not in mixedCase
Parameter Mirror.setSwapBackSettings(bool,uint256,uint256)._denom (Mirror.sol#470) is not in mixedCase
Parameter Mirror.setFees(uint256,uint256,uint256,uint256,uint256)._ecosystemFee (Mirror.sol#494) is not in mixedCase
Parameter Mirror.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (Mirror.sol#495) is not in mixedCase
Parameter Mirror.setFees(uint256,uint256,uint256,uint256,uint256)._buyBackFee (Mirror.sol#496) is not in mixedCase
Parameter Mirror.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (Mirror.sol#497) is not in mixedCase
Parameter Mirror.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (Mirror.sol#498) is not in mixedCase
Parameter Mirror.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (Mirror.sol#510) is not in mixedCase
Parameter Mirror.setFeeReceivers(address,address,address,address)._ecosystemFeeReceiver (Mirror.sol#511) is not in mixedCase
Parameter Mirror.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (Mirror.sol#512) is not in mixedCase
Parameter Mirror.setFeeReceivers(address,address,address,address)._buyBackFeeReceiver (Mirror.sol#513) is not in mixedCase
Variable Mirror._isFeeExempt (Mirror.sol#29) is not in mixedCase
Variable Mirror._isMaxWalletExempt (Mirror.sol#30) is not in mixedCase
Variable Mirror.DEAD (Mirror.sol#60) is not in mixedCase
Variable Mirror.ZERO (Mirror.sol#61) is not in mixedCase
Variable Mirror.BuyTaxDuration (Mirror.sol#88) is not in mixedCase
Variable Mirror.SellTaxDuration (Mirror.sol#89) is not in mixedCase
Variable Mirror.LaunchTimestamp (Mirror.sol#277) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Mirror.constructor() (Mirror.sol#107-137) uses literals with too many digits:
- autoLiquidityReceiver = 0x000000000000000000000000000000000000dEaD (Mirror.sol#131)
Mirror.slitherConstructorVariables() (Mirror.sol#13-578) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (Mirror.sol#60)
Mirror.slitherConstructorVariables() (Mirror.sol#13-578) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (Mirror.sol#61)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Mirror.MAX_SUPPLY (Mirror.sol#99) is never used in Mirror (Mirror.sol#13-578)
SafeMathInt.MAX_INT256 (SafeMathInt.sol#6) is never used in SafeMathInt (SafeMathInt.sol#4-39)
Remove unused state variables.

Additional information: link

Mirror.BuyTaxDuration (Mirror.sol#88) should be constant
Mirror.DEAD (Mirror.sol#60) should be constant
Mirror.SellTaxDuration (Mirror.sol#89) should be constant
Mirror.ZERO (Mirror.sol#61) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20Detailed.name() (ERC20Detailed.sol#22-24)
symbol() should be declared external:
- ERC20Detailed.symbol() (ERC20Detailed.sol#26-28)
decimals() should be declared external:
- ERC20Detailed.decimals() (ERC20Detailed.sol#30-32)
cooldownEnabled(bool,uint8) should be declared external:
- Mirror.cooldownEnabled(bool,uint8) (Mirror.sol#139-143)
changeAntiDumpPercentage(uint256) should be declared external:
- Mirror.changeAntiDumpPercentage(uint256) (Mirror.sol#145-148)
changeAntiSniperPercentage(uint256) should be declared external:
- Mirror.changeAntiSniperPercentage(uint256) (Mirror.sol#150-153)
rescueToken(address,uint256) should be declared external:
- Mirror.rescueToken(address,uint256) (Mirror.sol#521-527)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#31-34)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#36-38)
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 has relatively few followers


Last post in Twitter was more than 30 days ago


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


Token was delisted (assigned to inactive / untracked listing) from 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 token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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 NUL

News for NUL